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

46 lines
1.2 KiB
TypeScript
Raw Permalink Normal View History

2022-08-04 18:57:43 +00:00
import AbstractModel from './abstractModel'
import UserModel from './user'
2019-03-07 19:48:40 +00:00
2022-08-04 18:57:43 +00:00
import type {ILabel} from '@/modelTypes/ILabel'
import type {IUser} from '@/modelTypes/IUser'
2022-07-20 22:42:36 +00:00
2022-08-04 18:57:43 +00:00
import {colorIsDark} from '@/helpers/color/colorIsDark'
2022-07-20 22:42:36 +00:00
2022-09-06 09:36:01 +00:00
export default class LabelModel extends AbstractModel<ILabel> implements ILabel {
id = 0
title = ''
// 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.
hexColor = ''
description = ''
createdBy: IUser
projectId = 0
textColor = ''
2022-07-20 22:42:36 +00:00
created: Date = null
updated: Date = null
constructor(data: Partial<ILabel> = {}) {
super()
this.assignData(data)
2022-06-23 01:22:21 +00:00
if (this.hexColor !== '' && !this.hexColor.startsWith('#') && !this.hexColor.startsWith('var(')) {
this.hexColor = '#' + this.hexColor
2019-03-07 19:48:40 +00:00
}
if (this.hexColor === '') {
this.hexColor = 'var(--grey-200)'
this.textColor = 'var(--grey-800)'
} else {
this.textColor = colorIsDark(this.hexColor)
// Fixed colors to avoid flipping in dark mode
? 'hsl(215, 27.9%, 16.9%)' // grey-800
: 'hsl(220, 13%, 91%)' // grey-200
}
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
}
}