You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

112 lines
2.3 KiB

<template>
<base-card
title="Create Label"
agree-text="Create"
cancel-text="Cancel"
:disabled="!valid"
@agree="create"
@cancel="cancel"
>
<template #content>
<v-form
ref="form"
v-model="valid"
>
<v-alert
v-show="showError"
v-model="showError"
type="error"
dismissible
>
The label could not be created.
You cannot use same label name or shortcut key.
</v-alert>
<v-text-field
v-model="labelName"
:rules="labelNameRules"
label="Label name"
prepend-icon="label"
/>
<v-select
v-model="suffixKey"
:items="keys"
label="Key"
prepend-icon="mdi-keyboard"
/>
<v-color-picker
v-model="color"
:rules="colorRules"
show-swatches
hide-mode-switch
width="800"
mode="hexa"
class="ma-2"
/>
</v-form>
</template>
</base-card>
</template>
<script>
import BaseCard from '@/components/molecules/BaseCard'
import { colorRules, labelNameRules } from '@/rules/index'
export default {
components: {
BaseCard
},
props: {
createLabel: {
type: Function,
default: () => {},
required: true
},
keys: {
type: Array,
default: () => 'abcdefghijklmnopqrstuvwxyz'.split('')
}
},
data() {
return {
valid: false,
labelName: '',
suffixKey: '',
color: '',
labelNameRules,
colorRules,
showError: false
}
},
methods: {
cancel() {
this.$emit('close')
},
validate() {
return this.$refs.form.validate()
},
reset() {
this.$refs.form.reset()
},
create() {
if (this.validate()) {
this.createLabel({
projectId: this.$route.params.id,
text: this.labelName,
prefix_key: null,
suffix_key: this.suffixKey,
background_color: this.color.slice(0, -2),
text_color: '#ffffff'
})
.then(() => {
this.reset()
this.cancel()
})
.catch(() => {
this.showError = true
})
}
}
}
}
</script>