6b1ebbabb7
Fix saving Cleanup Fix single value prepare Add prepare percent done stub Fix populating filters with saved values when editing for single values Fix populating filters with saved values when editing Add edit filter view page Hide adding new tasks to pseudolists Make sure all filter values are passed as strings as per requirement from the api Add redirect to list after creating it Add creating saved filter Add filter by percent done Add end date filter Add start date filter Add extra checkbox to enable/disable priority filter Add changing priority Add more filter stubs Fix dates for filters Add saved filter create form Add include nulls and concat to filter options Add new saved filter component Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/239 Co-Authored-By: konrad <konrad@kola-entertainments.de> Co-Committed-By: konrad <konrad@kola-entertainments.de>
53 lines
No EOL
1 KiB
JavaScript
53 lines
No EOL
1 KiB
JavaScript
import AbstractModel from './abstractModel'
|
|
import TaskModel from './task'
|
|
import UserModel from './user'
|
|
import {getSavedFilterIdFromListId} from '@/helpers/savedFilter'
|
|
|
|
export default class ListModel extends AbstractModel {
|
|
|
|
constructor(data) {
|
|
super(data)
|
|
|
|
if (this.hexColor !== '' && this.hexColor.substring(0, 1) !== '#') {
|
|
this.hexColor = '#' + this.hexColor
|
|
}
|
|
|
|
// Make all tasks to task models
|
|
this.tasks = this.tasks.map(t => {
|
|
return new TaskModel(t)
|
|
})
|
|
|
|
this.owner = new UserModel(this.owner)
|
|
|
|
this.created = new Date(this.created)
|
|
this.updated = new Date(this.updated)
|
|
}
|
|
|
|
// Default attributes that define the "empty" state.
|
|
defaults() {
|
|
return {
|
|
id: 0,
|
|
title: '',
|
|
description: '',
|
|
owner: UserModel,
|
|
tasks: [],
|
|
namespaceId: 0,
|
|
isArchived: false,
|
|
hexColor: '',
|
|
identifier: '',
|
|
backgroundInformation: null,
|
|
isFavorite: false,
|
|
|
|
created: null,
|
|
updated: null,
|
|
}
|
|
}
|
|
|
|
isSavedFilter() {
|
|
return this.getSavedFilterId() > 0
|
|
}
|
|
|
|
getSavedFilterId() {
|
|
return getSavedFilterIdFromListId(this.id)
|
|
}
|
|
} |