2019-03-07 20:48:40 +01:00
|
|
|
import AbstractModel from './abstractModel'
|
2020-06-17 00:20:37 +02:00
|
|
|
import UserModel from './user'
|
2021-01-17 11:51:07 +01:00
|
|
|
import {colorIsDark} from '@/helpers/color/colorIsDark'
|
2019-03-07 20:48:40 +01:00
|
|
|
|
2021-09-08 23:44:56 +02:00
|
|
|
const DEFAULT_LABEL_BACKGROUND_COLOR = 'e8e8e8'
|
2019-03-07 20:48:40 +01:00
|
|
|
export default class LabelModel extends AbstractModel {
|
2022-06-23 03:22:21 +02:00
|
|
|
id: number
|
|
|
|
title: string
|
|
|
|
hexColor: string
|
|
|
|
description: string
|
|
|
|
createdBy: UserModel
|
|
|
|
listId: number
|
|
|
|
textColor: string
|
|
|
|
|
|
|
|
created: Date
|
|
|
|
updated: Date
|
|
|
|
|
2019-03-07 20:48:40 +01:00
|
|
|
constructor(data) {
|
|
|
|
super(data)
|
2021-09-08 23:44:56 +02:00
|
|
|
// 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 20:48:40 +01:00
|
|
|
// Set the default color
|
2020-04-12 23:54:46 +02:00
|
|
|
if (this.hexColor === '') {
|
2021-09-08 23:44:56 +02:00
|
|
|
this.hexColor = DEFAULT_LABEL_BACKGROUND_COLOR
|
2019-03-07 20:48:40 +01:00
|
|
|
}
|
2020-04-12 23:54:46 +02:00
|
|
|
if (this.hexColor.substring(0, 1) !== '#') {
|
|
|
|
this.hexColor = '#' + this.hexColor
|
2019-03-07 20:48:40 +01:00
|
|
|
}
|
2022-05-21 00:09:41 +02:00
|
|
|
this.textColor = colorIsDark(this.hexColor) ? '#4a4a4a' : '#fff'
|
2020-04-12 23:54:46 +02:00
|
|
|
this.createdBy = new UserModel(this.createdBy)
|
2020-02-08 14:16:06 +01:00
|
|
|
|
|
|
|
this.created = new Date(this.created)
|
|
|
|
this.updated = new Date(this.updated)
|
2019-03-07 20:48:40 +01:00
|
|
|
}
|
2020-06-17 00:20:37 +02:00
|
|
|
|
2019-03-07 20:48:40 +01:00
|
|
|
defaults() {
|
|
|
|
return {
|
|
|
|
id: 0,
|
|
|
|
title: '',
|
2020-04-12 23:54:46 +02:00
|
|
|
hexColor: '',
|
2019-03-07 20:48:40 +01:00
|
|
|
description: '',
|
2020-04-12 23:54:46 +02:00
|
|
|
createdBy: UserModel,
|
|
|
|
listId: 0,
|
2019-03-07 20:48:40 +01:00
|
|
|
textColor: '',
|
2020-06-17 00:20:37 +02:00
|
|
|
|
2020-02-08 14:16:06 +01:00
|
|
|
created: null,
|
|
|
|
updated: null,
|
2019-03-07 20:48:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|