96f5f00c07
We used declare which is the wrong use-case for this. See: https://www.typescriptlang.org/docs/handbook/2/classes.html#--strictpropertyinitialization
100 lines
No EOL
2.2 KiB
TypeScript
100 lines
No EOL
2.2 KiB
TypeScript
import AbstractModel from '@/models/abstractModel'
|
|
import TaskModel, { type ITask } from '@/models/task'
|
|
import UserModel, { type IUser } from '@/models/user'
|
|
import SubscriptionModel, { type ISubscription } from '@/models/subscription'
|
|
import type { INamespace } from '@/models/namespace'
|
|
|
|
import {getSavedFilterIdFromListId} from '@/helpers/savedFilter'
|
|
|
|
export interface IList extends AbstractModel {
|
|
id: number
|
|
title: string
|
|
description: string
|
|
owner: IUser
|
|
tasks: ITask[]
|
|
namespaceId: INamespace['id']
|
|
isArchived: boolean
|
|
hexColor: string
|
|
identifier: string
|
|
backgroundInformation: any
|
|
isFavorite: boolean
|
|
subscription: ISubscription
|
|
position: number
|
|
backgroundBlurHash: string
|
|
|
|
created: Date
|
|
updated: Date
|
|
}
|
|
|
|
export default class ListModel extends AbstractModel implements IList {
|
|
id!: number
|
|
title!: string
|
|
description!: string
|
|
owner: IUser
|
|
tasks: ITask[]
|
|
namespaceId!: INamespace['id']
|
|
isArchived!: boolean
|
|
hexColor!: string
|
|
identifier!: string
|
|
backgroundInformation!: any
|
|
isFavorite!: boolean
|
|
subscription!: ISubscription
|
|
position!: number
|
|
backgroundBlurHash!: string
|
|
|
|
created: Date
|
|
updated: Date
|
|
|
|
constructor(data) {
|
|
super(data)
|
|
|
|
this.owner = new UserModel(this.owner)
|
|
|
|
// Make all tasks to task models
|
|
this.tasks = this.tasks.map(t => {
|
|
return new TaskModel(t)
|
|
})
|
|
|
|
if (this.hexColor !== '' && this.hexColor.substring(0, 1) !== '#') {
|
|
this.hexColor = '#' + this.hexColor
|
|
}
|
|
|
|
if (typeof this.subscription !== 'undefined' && this.subscription !== null) {
|
|
this.subscription = new SubscriptionModel(this.subscription)
|
|
}
|
|
|
|
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,
|
|
subscription: null,
|
|
position: 0,
|
|
backgroundBlurHash: '',
|
|
|
|
created: null,
|
|
updated: null,
|
|
}
|
|
}
|
|
|
|
isSavedFilter() {
|
|
return this.getSavedFilterId() > 0
|
|
}
|
|
|
|
getSavedFilterId() {
|
|
return getSavedFilterIdFromListId(this.id)
|
|
}
|
|
} |