feat: NewLabel script setup (#2414)
Co-authored-by: Dominik Pschenitschni <mail@celement.de> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/2414 Reviewed-by: konrad <k@knt.li> Co-authored-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de> Co-committed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
This commit is contained in:
parent
ecd0df21c1
commit
7f581cbe27
1 changed files with 35 additions and 44 deletions
|
@ -34,52 +34,43 @@
|
||||||
</create-edit>
|
</create-edit>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script setup lang="ts">
|
||||||
import {defineComponent} from 'vue'
|
import {computed, ref} from 'vue'
|
||||||
import {mapState} from 'pinia'
|
import {useI18n} from 'vue-i18n'
|
||||||
|
import {useRouter} from 'vue-router'
|
||||||
|
|
||||||
import LabelModel from '../../models/label'
|
|
||||||
import CreateEdit from '@/components/misc/create-edit.vue'
|
import CreateEdit from '@/components/misc/create-edit.vue'
|
||||||
import ColorPicker from '../../components/input/colorPicker.vue'
|
import ColorPicker from '@/components/input/colorPicker.vue'
|
||||||
import { setTitle } from '@/helpers/setTitle'
|
|
||||||
import { useLabelStore } from '@/stores/labels'
|
|
||||||
|
|
||||||
export default defineComponent({
|
import LabelModel from '@/models/label'
|
||||||
name: 'NewLabel',
|
import {useLabelStore} from '@/stores/labels'
|
||||||
data() {
|
import {useTitle} from '@/composables/useTitle'
|
||||||
return {
|
import {success} from '@/message'
|
||||||
label: new LabelModel(),
|
|
||||||
showError: false,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
components: {
|
|
||||||
CreateEdit,
|
|
||||||
ColorPicker,
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
setTitle(this.$t('label.create.title'))
|
|
||||||
},
|
|
||||||
computed: {
|
|
||||||
...mapState(useLabelStore, {
|
|
||||||
loading: state => state.isLoading,
|
|
||||||
}),
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
async newLabel() {
|
|
||||||
if (this.label.title === '') {
|
|
||||||
this.showError = true
|
|
||||||
return
|
|
||||||
}
|
|
||||||
this.showError = false
|
|
||||||
|
|
||||||
const labelStore = useLabelStore()
|
const router = useRouter()
|
||||||
const label = labelStore.createLabel(this.label)
|
|
||||||
this.$router.push({
|
const {t} = useI18n({useScope: 'global'})
|
||||||
name: 'labels.index',
|
useTitle(() => t('label.create.title'))
|
||||||
params: {id: label.id},
|
|
||||||
})
|
const labelStore = useLabelStore()
|
||||||
this.$message.success({message: this.$t('label.create.success')})
|
const label = ref(new LabelModel())
|
||||||
},
|
|
||||||
},
|
const showError = ref(false)
|
||||||
})
|
const loading = computed(() => labelStore.isLoading)
|
||||||
|
|
||||||
|
async function newLabel() {
|
||||||
|
if (label.value.title === '') {
|
||||||
|
showError.value = true
|
||||||
|
return
|
||||||
|
}
|
||||||
|
showError.value = false
|
||||||
|
|
||||||
|
const labelStore = useLabelStore()
|
||||||
|
const newLabel = labelStore.createLabel(label.value)
|
||||||
|
router.push({
|
||||||
|
name: 'labels.index',
|
||||||
|
params: {id: newLabel.id},
|
||||||
|
})
|
||||||
|
success({message: t('label.create.success')})
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue