chore: define default label background color once
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Dominik Pschenitschni 2021-09-07 14:24:43 +02:00
parent 4f305b28fd
commit a2b775e58f
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
1 changed files with 4 additions and 1 deletions

View File

@ -2,12 +2,15 @@ import AbstractModel from './abstractModel'
import UserModel from './user'
import {colorIsDark} from '@/helpers/color/colorIsDark'
const DEFAULT_LABEL_BACKGROUND_COLOR = 'e8e8e8'
export default class LabelModel extends AbstractModel {
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.
// Set the default color
if (this.hexColor === '') {
this.hexColor = 'e8e8e8'
this.hexColor = DEFAULT_LABEL_BACKGROUND_COLOR
}
if (this.hexColor.substring(0, 1) !== '#') {
this.hexColor = '#' + this.hexColor