# Pull Request Template ## Description Increases description for Captain. Why? We are planning to include business context in description and 255 char limit on the column and 200 char limit on the UI are very limiting to get proper context. ## Type of change Improvement to accommodate business context ## How Has This Been Tested? Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration. locally ## Checklist: - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented on my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules
186 lines
5.1 KiB
Vue
186 lines
5.1 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 Button from 'dashboard/components-next/button/Button.vue';
|
|
import Editor from 'dashboard/components-next/Editor/Editor.vue';
|
|
|
|
const props = defineProps({
|
|
mode: {
|
|
type: String,
|
|
required: true,
|
|
validator: value => ['edit', 'create'].includes(value),
|
|
},
|
|
assistant: {
|
|
type: Object,
|
|
default: () => ({}),
|
|
},
|
|
});
|
|
|
|
const emit = defineEmits(['submit', 'cancel']);
|
|
|
|
const { t } = useI18n();
|
|
|
|
const formState = {
|
|
uiFlags: useMapGetter('captainAssistants/getUIFlags'),
|
|
};
|
|
|
|
const initialState = {
|
|
name: '',
|
|
description: '',
|
|
productName: '',
|
|
featureFaq: false,
|
|
featureMemory: false,
|
|
featureCitation: false,
|
|
};
|
|
|
|
const state = reactive({ ...initialState });
|
|
|
|
const validationRules = {
|
|
name: { required, minLength: minLength(1) },
|
|
description: { required, minLength: minLength(1) },
|
|
productName: { required, minLength: minLength(1) },
|
|
};
|
|
|
|
const v$ = useVuelidate(validationRules, state);
|
|
|
|
const isLoading = computed(() => formState.uiFlags.value.creatingItem);
|
|
|
|
const getErrorMessage = (field, errorKey) => {
|
|
return v$.value[field].$error
|
|
? t(`CAPTAIN.ASSISTANTS.FORM.${errorKey}.ERROR`)
|
|
: '';
|
|
};
|
|
|
|
const formErrors = computed(() => ({
|
|
name: getErrorMessage('name', 'NAME'),
|
|
description: getErrorMessage('description', 'DESCRIPTION'),
|
|
productName: getErrorMessage('productName', 'PRODUCT_NAME'),
|
|
}));
|
|
|
|
const handleCancel = () => emit('cancel');
|
|
|
|
const prepareAssistantDetails = () => ({
|
|
name: state.name,
|
|
description: state.description,
|
|
config: {
|
|
product_name: state.productName,
|
|
feature_faq: state.featureFaq,
|
|
feature_memory: state.featureMemory,
|
|
feature_citation: state.featureCitation,
|
|
},
|
|
});
|
|
|
|
const handleSubmit = async () => {
|
|
const isFormValid = await v$.value.$validate();
|
|
if (!isFormValid) {
|
|
return;
|
|
}
|
|
|
|
emit('submit', prepareAssistantDetails());
|
|
};
|
|
|
|
const updateStateFromAssistant = assistant => {
|
|
if (!assistant) return;
|
|
|
|
const { name, description, config } = assistant;
|
|
|
|
Object.assign(state, {
|
|
name,
|
|
description,
|
|
productName: config.product_name,
|
|
featureFaq: config.feature_faq || false,
|
|
featureMemory: config.feature_memory || false,
|
|
featureCitation: config.feature_citation || false,
|
|
});
|
|
};
|
|
|
|
watch(
|
|
() => props.assistant,
|
|
newAssistant => {
|
|
if (props.mode === 'edit' && newAssistant) {
|
|
updateStateFromAssistant(newAssistant);
|
|
}
|
|
},
|
|
{ immediate: true }
|
|
);
|
|
</script>
|
|
|
|
<template>
|
|
<form class="flex flex-col gap-4" @submit.prevent="handleSubmit">
|
|
<Input
|
|
v-model="state.name"
|
|
:label="t('CAPTAIN.ASSISTANTS.FORM.NAME.LABEL')"
|
|
:placeholder="t('CAPTAIN.ASSISTANTS.FORM.NAME.PLACEHOLDER')"
|
|
:message="formErrors.name"
|
|
:message-type="formErrors.name ? 'error' : 'info'"
|
|
/>
|
|
|
|
<Editor
|
|
v-model="state.description"
|
|
:max-length="500"
|
|
:label="t('CAPTAIN.ASSISTANTS.FORM.DESCRIPTION.LABEL')"
|
|
:placeholder="t('CAPTAIN.ASSISTANTS.FORM.DESCRIPTION.PLACEHOLDER')"
|
|
:message="formErrors.description"
|
|
:message-type="formErrors.description ? 'error' : 'info'"
|
|
/>
|
|
|
|
<Input
|
|
v-model="state.productName"
|
|
:label="t('CAPTAIN.ASSISTANTS.FORM.PRODUCT_NAME.LABEL')"
|
|
:placeholder="t('CAPTAIN.ASSISTANTS.FORM.PRODUCT_NAME.PLACEHOLDER')"
|
|
:message="formErrors.productName"
|
|
:message-type="formErrors.productName ? 'error' : 'info'"
|
|
/>
|
|
|
|
<fieldset class="flex flex-col gap-2.5">
|
|
<legend class="mb-3 text-sm font-medium text-n-slate-12">
|
|
{{ t('CAPTAIN.ASSISTANTS.FORM.FEATURES.TITLE') }}
|
|
</legend>
|
|
|
|
<label class="flex items-center gap-2">
|
|
<input v-model="state.featureFaq" type="checkbox" />
|
|
<span class="text-sm font-medium text-n-slate-12">
|
|
{{ t('CAPTAIN.ASSISTANTS.FORM.FEATURES.ALLOW_CONVERSATION_FAQS') }}
|
|
</span>
|
|
</label>
|
|
|
|
<label class="flex items-center gap-2">
|
|
<input v-model="state.featureMemory" type="checkbox" />
|
|
<span class="text-sm font-medium text-n-slate-12">
|
|
{{ t('CAPTAIN.ASSISTANTS.FORM.FEATURES.ALLOW_MEMORIES') }}
|
|
</span>
|
|
</label>
|
|
|
|
<label class="flex items-center gap-2">
|
|
<input v-model="state.featureCitation" type="checkbox" />
|
|
<span class="text-sm font-medium text-n-slate-12">
|
|
{{ t('CAPTAIN.ASSISTANTS.FORM.FEATURES.ALLOW_CITATIONS') }}
|
|
</span>
|
|
</label>
|
|
</fieldset>
|
|
|
|
<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-11 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>
|