This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/models/label.ts

64 lines
1.4 KiB
TypeScript
Raw Normal View History

import AbstractModel, { type IAbstract } from './abstractModel'
2022-07-20 22:42:36 +00:00
import UserModel, { type IUser } from './user'
import {colorIsDark} from '@/helpers/color/colorIsDark'
2019-03-07 19:48:40 +00:00
const DEFAULT_LABEL_BACKGROUND_COLOR = 'e8e8e8'
2022-07-20 22:42:36 +00:00
export interface ILabel extends IAbstract {
2022-06-23 01:22:21 +00:00
id: number
title: string
hexColor: string
description: string
2022-07-20 22:42:36 +00:00
createdBy: IUser
2022-06-23 01:22:21 +00:00
listId: number
textColor: string
created: Date
updated: Date
2022-07-20 22:42:36 +00:00
}
export default class LabelModel extends AbstractModel implements ILabel {
id!: number
title!: string
hexColor!: string
description!: string
createdBy!: IUser
listId!: number
textColor!: string
2022-07-20 22:42:36 +00:00
created: Date
updated: Date
2022-06-23 01:22:21 +00:00
2019-03-07 19:48:40 +00:00
constructor(data) {
super(data)
// FIXME: this should be empty and be definied in the client.
// that way it get's never send to the server db and is easier to change in future versions.
2019-03-07 19:48:40 +00:00
// Set the default color
if (this.hexColor === '') {
this.hexColor = DEFAULT_LABEL_BACKGROUND_COLOR
2019-03-07 19:48:40 +00:00
}
if (this.hexColor.substring(0, 1) !== '#') {
this.hexColor = '#' + this.hexColor
2019-03-07 19:48:40 +00:00
}
this.textColor = colorIsDark(this.hexColor) ? '#4a4a4a' : '#fff'
this.createdBy = new UserModel(this.createdBy)
this.created = new Date(this.created)
this.updated = new Date(this.updated)
2019-03-07 19:48:40 +00:00
}
2019-03-07 19:48:40 +00:00
defaults() {
return {
id: 0,
title: '',
hexColor: '',
2019-03-07 19:48:40 +00:00
description: '',
createdBy: UserModel,
listId: 0,
2019-03-07 19:48:40 +00:00
textColor: '',
created: null,
updated: null,
2019-03-07 19:48:40 +00:00
}
}
}