Copy the Chatwoot (v4.14.0) frontend runnable subset into frontend/ for customization: - app/javascript/ (Vue SPA: dashboard, widget, sdk, portal, superadmin) - app/views/ (ERB templates for vite-plugin-ruby entrypoint resolution) - app/helpers/, app/assets/ (Rails view helpers, static assets) - enterprise/ (Enterprise edition frontend overlay) - config/vite.json, vite.config.ts, bin/vite (Vite-Rails toolchain) - package.json, pnpm-lock.yaml, tailwind/postcss/eslint configs - Gemfile, Gemfile.lock (vite_rails gem for bin/vite binstub) Excluded Rails backend: controllers, models, services, jobs, mailers, policies, db, lib, spec, public, node_modules. Update references to the new frontend location: - .gitignore: exclude frontend build artifacts (node_modules, tmp, packs), keep frontend/bin/ and frontend/vendor/ via negation - backend/scripts/parity_frontend_smoke.sh: CHATWOOT_DIR default reference/chatwoot -> ../frontend - backend/scripts/parity_frontend_browser_smoke.mjs: same default update - AGENTS.md: add frontend section with Rails/Vite coupling notes - README: architecture tree includes frontend/
94 lines
2.2 KiB
Vue
94 lines
2.2 KiB
Vue
<script setup>
|
|
import { computed, ref } from 'vue';
|
|
import { useIntervalFn } from '@vueuse/core';
|
|
import { useI18n } from 'vue-i18n';
|
|
import { MESSAGE_STATUS } from './constants';
|
|
|
|
import Icon from 'next/icon/Icon.vue';
|
|
|
|
const { status } = defineProps({
|
|
status: {
|
|
type: String,
|
|
required: true,
|
|
validator: value => Object.values(MESSAGE_STATUS).includes(value),
|
|
},
|
|
});
|
|
|
|
const { t } = useI18n();
|
|
|
|
const progresIconSequence = [
|
|
'i-lucide-clock-1',
|
|
'i-lucide-clock-2',
|
|
'i-lucide-clock-3',
|
|
'i-lucide-clock-4',
|
|
'i-lucide-clock-5',
|
|
'i-lucide-clock-6',
|
|
'i-lucide-clock-7',
|
|
'i-lucide-clock-8',
|
|
'i-lucide-clock-9',
|
|
'i-lucide-clock-10',
|
|
'i-lucide-clock-11',
|
|
'i-lucide-clock-12',
|
|
];
|
|
|
|
const progessIcon = ref(progresIconSequence[0]);
|
|
|
|
const rotateIcon = () => {
|
|
const currentIndex = progresIconSequence.indexOf(progessIcon.value);
|
|
const nextIndex = (currentIndex + 1) % progresIconSequence.length;
|
|
progessIcon.value = progresIconSequence[nextIndex];
|
|
};
|
|
|
|
useIntervalFn(rotateIcon, 500, {
|
|
immediate: status === MESSAGE_STATUS.PROGRESS,
|
|
immediateCallback: false,
|
|
});
|
|
|
|
const statusIcon = computed(() => {
|
|
const statusIconMap = {
|
|
[MESSAGE_STATUS.SENT]: 'i-lucide-check',
|
|
[MESSAGE_STATUS.DELIVERED]: 'i-lucide-check-check',
|
|
[MESSAGE_STATUS.READ]: 'i-lucide-check-check',
|
|
};
|
|
|
|
return statusIconMap[status];
|
|
});
|
|
|
|
const statusColor = computed(() => {
|
|
const statusIconMap = {
|
|
[MESSAGE_STATUS.SENT]: 'text-n-slate-10',
|
|
[MESSAGE_STATUS.DELIVERED]: 'text-n-slate-10',
|
|
[MESSAGE_STATUS.READ]: 'text-[#7EB6FF]',
|
|
};
|
|
|
|
return statusIconMap[status];
|
|
});
|
|
|
|
const tooltipText = computed(() => {
|
|
const statusTextMap = {
|
|
[MESSAGE_STATUS.SENT]: t('CHAT_LIST.SENT'),
|
|
[MESSAGE_STATUS.DELIVERED]: t('CHAT_LIST.DELIVERED'),
|
|
[MESSAGE_STATUS.READ]: t('CHAT_LIST.MESSAGE_READ'),
|
|
[MESSAGE_STATUS.PROGRESS]: t('CHAT_LIST.SENDING'),
|
|
};
|
|
|
|
return statusTextMap[status];
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<Icon
|
|
v-if="status === MESSAGE_STATUS.PROGRESS"
|
|
v-tooltip.top-start="tooltipText"
|
|
:icon="progessIcon"
|
|
class="text-n-slate-10"
|
|
/>
|
|
<Icon
|
|
v-else
|
|
v-tooltip.top-start="tooltipText"
|
|
:icon="statusIcon"
|
|
:class="statusColor"
|
|
class="size-[14px]"
|
|
/>
|
|
</template>
|