mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-06 14:08:10 +00:00
162 lines
4.3 KiB
Vue
162 lines
4.3 KiB
Vue
<script setup>
|
|
import { reactive, computed, watch } from 'vue';
|
|
import { useI18n } from 'vue-i18n';
|
|
import { useVuelidate } from '@vuelidate/core';
|
|
import { required, minLength } from '@vuelidate/validators';
|
|
import { useMapGetter } from 'dashboard/composables/store';
|
|
|
|
import Input from 'dashboard/components-next/input/Input.vue';
|
|
import Editor from 'dashboard/components-next/Editor/Editor.vue';
|
|
import Button from 'dashboard/components-next/button/Button.vue';
|
|
import ComboBox from 'dashboard/components-next/combobox/ComboBox.vue';
|
|
|
|
const props = defineProps({
|
|
mode: {
|
|
type: String,
|
|
required: true,
|
|
validator: value => ['edit', 'create'].includes(value),
|
|
},
|
|
response: {
|
|
type: Object,
|
|
default: () => ({}),
|
|
},
|
|
});
|
|
const emit = defineEmits(['submit', 'cancel']);
|
|
const { t } = useI18n();
|
|
|
|
const formState = {
|
|
uiFlags: useMapGetter('captainResponses/getUIFlags'),
|
|
assistants: useMapGetter('captainAssistants/getRecords'),
|
|
};
|
|
|
|
const initialState = {
|
|
question: '',
|
|
answer: '',
|
|
assistantId: null,
|
|
};
|
|
|
|
const state = reactive({ ...initialState });
|
|
|
|
const validationRules = {
|
|
question: { required, minLength: minLength(1) },
|
|
answer: { required, minLength: minLength(1) },
|
|
assistantId: { required },
|
|
};
|
|
|
|
const assistantList = computed(() =>
|
|
formState.assistants.value.map(assistant => ({
|
|
value: assistant.id,
|
|
label: assistant.name,
|
|
}))
|
|
);
|
|
|
|
const v$ = useVuelidate(validationRules, state);
|
|
|
|
const isLoading = computed(() => formState.uiFlags.value.creatingItem);
|
|
|
|
const getErrorMessage = (field, errorKey) => {
|
|
return v$.value[field].$error
|
|
? t(`CAPTAIN.RESPONSES.FORM.${errorKey}.ERROR`)
|
|
: '';
|
|
};
|
|
|
|
const formErrors = computed(() => ({
|
|
question: getErrorMessage('question', 'QUESTION'),
|
|
answer: getErrorMessage('answer', 'ANSWER'),
|
|
assistantId: getErrorMessage('assistantId', 'ASSISTANT'),
|
|
}));
|
|
|
|
const handleCancel = () => emit('cancel');
|
|
|
|
const prepareDocumentDetails = () => ({
|
|
question: state.question,
|
|
answer: state.answer,
|
|
assistant_id: state.assistantId,
|
|
});
|
|
|
|
const handleSubmit = async () => {
|
|
const isFormValid = await v$.value.$validate();
|
|
if (!isFormValid) {
|
|
return;
|
|
}
|
|
|
|
emit('submit', prepareDocumentDetails());
|
|
};
|
|
|
|
const updateStateFromResponse = response => {
|
|
if (!response) return;
|
|
|
|
const { question, answer, assistant } = response;
|
|
|
|
Object.assign(state, {
|
|
question,
|
|
answer,
|
|
assistantId: assistant.id,
|
|
});
|
|
};
|
|
|
|
watch(
|
|
() => props.response,
|
|
newResponse => {
|
|
if (props.mode === 'edit' && newResponse) {
|
|
updateStateFromResponse(newResponse);
|
|
}
|
|
},
|
|
{ immediate: true }
|
|
);
|
|
</script>
|
|
|
|
<template>
|
|
<form class="flex flex-col gap-4" @submit.prevent="handleSubmit">
|
|
<Input
|
|
v-model="state.question"
|
|
:label="t('CAPTAIN.RESPONSES.FORM.QUESTION.LABEL')"
|
|
:placeholder="t('CAPTAIN.RESPONSES.FORM.QUESTION.PLACEHOLDER')"
|
|
:message="formErrors.question"
|
|
:message-type="formErrors.question ? 'error' : 'info'"
|
|
/>
|
|
|
|
<Editor
|
|
v-model="state.answer"
|
|
:label="t('CAPTAIN.RESPONSES.FORM.ANSWER.LABEL')"
|
|
:placeholder="t('CAPTAIN.RESPONSES.FORM.ANSWER.PLACEHOLDER')"
|
|
:message="formErrors.answer"
|
|
:max-length="10000"
|
|
:message-type="formErrors.answer ? 'error' : 'info'"
|
|
/>
|
|
|
|
<div class="flex flex-col gap-1">
|
|
<label for="assistant" class="mb-0.5 text-sm font-medium text-n-slate-12">
|
|
{{ t('CAPTAIN.RESPONSES.FORM.ASSISTANT.LABEL') }}
|
|
</label>
|
|
<ComboBox
|
|
id="assistant"
|
|
v-model="state.assistantId"
|
|
:options="assistantList"
|
|
:has-error="!!formErrors.assistantId"
|
|
:placeholder="t('CAPTAIN.RESPONSES.FORM.ASSISTANT.PLACEHOLDER')"
|
|
class="[&>div>button]:bg-n-alpha-black2 [&>div>button:not(.focused)]:dark:outline-n-weak [&>div>button:not(.focused)]:hover:!outline-n-slate-6"
|
|
:message="formErrors.assistantId"
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex items-center justify-between w-full gap-3">
|
|
<Button
|
|
type="button"
|
|
variant="faded"
|
|
color="slate"
|
|
:label="t('CAPTAIN.FORM.CANCEL')"
|
|
class="w-full bg-n-alpha-2 text-n-blue-text hover:bg-n-alpha-3"
|
|
@click="handleCancel"
|
|
/>
|
|
<Button
|
|
type="submit"
|
|
:label="t(`CAPTAIN.FORM.${mode.toUpperCase()}`)"
|
|
class="w-full"
|
|
:is-loading="isLoading"
|
|
:disabled="isLoading"
|
|
/>
|
|
</div>
|
|
</form>
|
|
</template>
|