| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296 |
- <template>
- <q-dialog ref="dialogRef" @hide="onDialogHide">
- <div style="width: 100%; max-width: 1100px">
- <q-card style="height: 500px; display: flex; flex-direction: column; overflow: hidden">
- <DefaultDialogHeader
- :title="ticket ? 'Editar Ticket' : 'Novo Ticket'"
- @close="onDialogCancel"
- />
- <q-form
- ref="formRef"
- style="
- flex: 1;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- "
- @submit="onOKClick"
- >
- <q-card-section class="q-pt-sm" style="flex: 1; overflow-y: auto; min-height: 0">
- <CustomTabComponent
- v-if="ticket?.id"
- v-model:active-tab="currentTab"
- :tabs="tabs"
- class="q-mb-md"
- />
- <!-- Tab: Ticket -->
- <div v-show="currentTab === 'ticket'">
- <div class="row q-col-gutter-sm">
- <DefaultInput
- v-model="form.title"
- label="Título da Tarefa"
- class="col-12"
- />
- <DefaultSelect
- v-model="form.severity"
- label="Prioridade"
- :options="priorityOptions"
- emit-value
- map-options
- class="col-6"
- />
- <DefaultInput
- :model-value="user?.name"
- label="Responsável"
- disable
- class="col-6"
- />
- <DefaultSelect
- v-model="form.scope"
- label="Destino"
- :options="unitTargetOptions"
- emit-value
- map-options
- class="col-6"
- />
- <DefaultInput
- v-model="form.sector"
- label="Setor"
- class="col-6"
- />
- <DefaultInput
- v-model="form.description"
- label="Descrição"
- type="textarea"
- class="col-12"
- />
- </div>
- </div>
- <!-- Tab: Comentários -->
- <div v-show="currentTab === 'comentarios'">
- <div
- v-if="canAdd && ticket?.status === 'in_progress'"
- class="flex justify-end q-mb-sm"
- >
- <q-btn
- color="primary"
- icon="mdi-plus"
- unelevated
- style="width: 40px; height: 40px"
- @click="onAddComment"
- />
- </div>
- <div
- style="
- height: 100%;
- max-height: 340px;
- overflow-y: auto;
- display: flex;
- flex-direction: column;
- gap: 8px;
- "
- >
- <template v-if="replies.length">
- <TicketCommentCard
- v-for="reply in replies"
- :key="reply.id"
- :reply="reply.reply"
- :created-at="reply.created_at"
- :user-name="reply.user_name"
- @edit="onEditComment(reply)"
- @delete="onDeleteComment(reply)"
- />
- </template>
- <div
- v-else
- class="flex flex-center full-height text-grey-5 text-body2"
- >
- Nenhum comentário registrado.
- </div>
- </div>
- </div>
- </q-card-section>
- <q-card-actions align="right" class="q-px-md q-pb-md" style="flex-shrink: 0">
- <q-btn
- outline
- color="primary"
- label="Cancelar"
- @click="onDialogCancel"
- />
- <q-btn
- v-if="canEdit && canManage && ticket?.id && ticket?.status === 'in_progress'"
- outline
- color="negative"
- label="Encerrar"
- @click="onCloseTicket"
- />
- <q-btn
- v-if="canSave && canManage && (!ticket?.id || ticket?.status === 'in_progress')"
- color="primary"
- label="Salvar"
- type="submit"
- :loading="loading"
- />
- </q-card-actions>
- </q-form>
- </q-card>
- </div>
- </q-dialog>
- </template>
- <script setup>
- import { ref, computed, onMounted } from "vue";
- import { useDialogPluginComponent } from "quasar";
- import CustomTabComponent from "src/components/shared/CustomTabComponent.vue";
- import DefaultDialogHeader from "src/components/defaults/DefaultDialogHeader.vue";
- import DefaultInput from "src/components/defaults/DefaultInput.vue";
- import DefaultSelect from "src/components/defaults/DefaultSelect.vue";
- import TicketCommentCard from "./TicketCommentCard.vue";
- import { userStore } from "src/stores/user";
- import { useQuasar } from "quasar";
- import {
- createSupportTicket,
- updateSupportTicket,
- } from "src/api/support_ticket";
- import CloseTicketDialog from "./CloseTicketDialog.vue";
- import AddEditReplyDialog from "./AddEditReplyDialog.vue";
- import { getSupportReplies, deleteSupportReply } from "src/api/support_reply";
- import { permissionStore } from "src/stores/permission";
- defineEmits([...useDialogPluginComponent.emits]);
- const { ticket } = defineProps({
- ticket: {
- type: Object,
- default: null,
- },
- });
- const { dialogRef, onDialogHide, onDialogOK, onDialogCancel } =
- useDialogPluginComponent();
- const $q = useQuasar();
- const { user } = userStore();
- const permissions = permissionStore();
- const canAdd = computed(() => permissions.getAccess("franchisee_support", "add"));
- const canEdit = computed(() => permissions.getAccess("franchisee_support", "edit"));
- const canSave = computed(() => ticket?.id ? canEdit.value : canAdd.value);
- const formRef = ref(null);
- const loading = ref(false);
- const currentTab = ref("ticket");
- // Novo ticket (sem id) → pode salvar. Ticket existente → só se for interno próprio.
- const canManage = computed(() =>
- !ticket?.id || (ticket?.origin === "unit" && ticket?.scope === "internal")
- );
- const tabs = computed(() => {
- const base = [{ name: "ticket", label: "Ticket" }];
- if (ticket?.id) base.push({ name: "comentarios", label: "Comentários" });
- return base;
- });
- const replies = ref([]);
- const loadReplies = async () => {
- if (!ticket?.id) return;
- replies.value = await getSupportReplies(ticket.id);
- };
- const priorityOptions = [
- { label: "Alta", value: "alta" },
- { label: "Normal", value: "normal" },
- { label: "Baixa", value: "baixa" },
- ];
- const unitTargetOptions = [
- { label: "Suporte à Matriz", value: "specific" },
- { label: "Suporte Interno", value: "internal" },
- ];
- const form = ref({
- title: ticket?.title ?? null,
- severity: ticket?.severity ?? null,
- scope: ticket?.scope ?? null,
- sector: ticket?.sector ?? null,
- description: ticket?.description ?? null,
- });
- const buildPayload = () => ({
- title: form.value.title,
- severity: form.value.severity,
- scope: form.value.scope,
- sector: form.value.sector || null,
- description: form.value.description || null,
- target_unit_id: null, // Backend resolve baseado em scope + user.unit_id
- });
- const onAddComment = () => {
- $q.dialog({
- component: AddEditReplyDialog,
- componentProps: { ticketId: ticket.id },
- }).onOk(() => {
- loadReplies();
- });
- };
- const onEditComment = (reply) => {
- $q.dialog({
- component: AddEditReplyDialog,
- componentProps: { ticketId: ticket.id, replyItem: reply },
- }).onOk(() => {
- loadReplies();
- });
- };
- const onDeleteComment = (reply) => {
- $q.dialog({
- title: "Excluir Comentário",
- message: "Tem certeza que deseja excluir este comentário?",
- cancel: { outline: true, color: "primary", label: "Cancelar" },
- ok: { color: "negative", label: "Excluir" },
- }).onOk(async () => {
- await deleteSupportReply(ticket.id, reply.id);
- loadReplies();
- });
- };
- onMounted(() => {
- loadReplies();
- });
- const onCloseTicket = () => {
- $q.dialog({
- component: CloseTicketDialog,
- componentProps: { ticket },
- }).onOk(() => {
- onDialogOK(true);
- });
- };
- const onOKClick = async () => {
- loading.value = true;
- try {
- const payload = buildPayload();
- if (ticket?.id) {
- await updateSupportTicket(ticket.id, payload);
- } else {
- await createSupportTicket(payload);
- }
- onDialogOK(true);
- } finally {
- loading.value = false;
- }
- };
- </script>
|