mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 11:37:58 +00:00
# Pull Request Template ## Description Fixes https://linear.app/chatwoot/issue/CW-5573/feat-createedit-agent-capacity-policy-page ## Type of change - [x] New feature (non-breaking change which adds functionality) ## How Has This Been Tested? ### Loom video https://www.loom.com/share/8de9e3c5d8824cd998d242636540dd18?sid=1314536f-c8d6-41fd-8139-cae9bf94f942 ### Screenshots **Light mode** <img width="1666" height="1225" alt="image" src="https://github.com/user-attachments/assets/7e6d83a4-ce02-47a7-91f6-87745f8f5549" /> <img width="1666" height="1225" alt="image" src="https://github.com/user-attachments/assets/7dd1f840-2e25-4365-aa1d-ed9dac13385a" /> **Dark mode** <img width="1666" height="1225" alt="image" src="https://github.com/user-attachments/assets/0c787095-7146-4fb3-a61a-e2232973bcba" /> <img width="1666" height="1225" alt="image" src="https://github.com/user-attachments/assets/481c21fd-03b5-4c1f-b59e-7f8c8017f9ce" /> ## Checklist: - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my code - [x] I have commented on my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [x] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules --------- Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
128 lines
2.8 KiB
Vue
128 lines
2.8 KiB
Vue
<script setup>
|
|
import { computed, watch } from 'vue';
|
|
import { useVuelidate } from '@vuelidate/core';
|
|
import { required, minLength } from '@vuelidate/validators';
|
|
|
|
import WithLabel from 'v3/components/Form/WithLabel.vue';
|
|
import Input from 'dashboard/components-next/input/Input.vue';
|
|
import Switch from 'dashboard/components-next/switch/Switch.vue';
|
|
|
|
defineProps({
|
|
nameLabel: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
namePlaceholder: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
descriptionLabel: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
descriptionPlaceholder: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
statusLabel: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
statusPlaceholder: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
});
|
|
|
|
const emit = defineEmits(['validationChange']);
|
|
|
|
const policyName = defineModel('policyName', {
|
|
type: String,
|
|
default: '',
|
|
});
|
|
|
|
const description = defineModel('description', {
|
|
type: String,
|
|
default: '',
|
|
});
|
|
|
|
const enabled = defineModel('enabled', {
|
|
type: Boolean,
|
|
default: true,
|
|
});
|
|
|
|
const validationRules = {
|
|
policyName: { required, minLength: minLength(1) },
|
|
description: { required, minLength: minLength(1) },
|
|
};
|
|
|
|
const v$ = useVuelidate(validationRules, { policyName, description });
|
|
|
|
const isValid = computed(() => !v$.value.$invalid);
|
|
|
|
watch(
|
|
isValid,
|
|
() => {
|
|
emit('validationChange', {
|
|
isValid: isValid.value,
|
|
section: 'baseInfo',
|
|
});
|
|
},
|
|
{ immediate: true }
|
|
);
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex flex-col gap-4 pb-4">
|
|
<!-- Policy Name Field -->
|
|
<div class="flex items-center gap-6">
|
|
<WithLabel
|
|
:label="nameLabel"
|
|
name="policyName"
|
|
class="flex items-center w-full [&>label]:min-w-[120px]"
|
|
>
|
|
<div class="flex-1">
|
|
<Input
|
|
v-model="policyName"
|
|
type="text"
|
|
:placeholder="namePlaceholder"
|
|
/>
|
|
</div>
|
|
</WithLabel>
|
|
</div>
|
|
|
|
<!-- Description Field -->
|
|
<div class="flex items-center gap-6">
|
|
<WithLabel
|
|
:label="descriptionLabel"
|
|
name="description"
|
|
class="flex items-center w-full [&>label]:min-w-[120px]"
|
|
>
|
|
<div class="flex-1">
|
|
<Input
|
|
v-model="description"
|
|
type="text"
|
|
:placeholder="descriptionPlaceholder"
|
|
/>
|
|
</div>
|
|
</WithLabel>
|
|
</div>
|
|
|
|
<!-- Status Field -->
|
|
<div v-if="statusLabel" class="flex items-center gap-6">
|
|
<WithLabel
|
|
:label="statusLabel"
|
|
name="enabled"
|
|
class="flex items-center w-full [&>label]:min-w-[120px]"
|
|
>
|
|
<div class="flex items-center gap-2">
|
|
<Switch v-model="enabled" />
|
|
<span class="text-sm text-n-slate-11">
|
|
{{ statusPlaceholder }}
|
|
</span>
|
|
</div>
|
|
</WithLabel>
|
|
</div>
|
|
</div>
|
|
</template>
|