2019-03-02 11:25:10 +01:00
|
|
|
import AbstractModel from './abstractModel'
|
|
|
|
import TaskModel from './task'
|
|
|
|
import UserModel from './user'
|
|
|
|
|
|
|
|
export default class ListModel extends AbstractModel {
|
|
|
|
|
|
|
|
constructor(data) {
|
|
|
|
super(data)
|
|
|
|
|
|
|
|
// Make all tasks to task models
|
|
|
|
this.tasks = this.tasks.map(t => {
|
|
|
|
return new TaskModel(t)
|
|
|
|
})
|
|
|
|
|
|
|
|
this.owner = new UserModel(this.owner)
|
2020-02-08 14:16:06 +01:00
|
|
|
|
|
|
|
this.created = new Date(this.created)
|
|
|
|
this.updated = new Date(this.updated)
|
2019-03-02 11:25:10 +01:00
|
|
|
}
|
2020-02-08 14:16:06 +01:00
|
|
|
|
2019-03-02 11:25:10 +01:00
|
|
|
// Default attributes that define the "empty" state.
|
|
|
|
defaults() {
|
|
|
|
return {
|
|
|
|
id: 0,
|
|
|
|
title: '',
|
|
|
|
description: '',
|
|
|
|
owner: UserModel,
|
|
|
|
tasks: [],
|
|
|
|
namespaceID: 0,
|
2020-03-22 21:40:13 +01:00
|
|
|
is_archived: false,
|
2020-02-08 14:16:06 +01:00
|
|
|
|
|
|
|
created: null,
|
|
|
|
updated: null,
|
2019-03-02 11:25:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|