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/
154 lines
4.4 KiB
Vue
154 lines
4.4 KiB
Vue
<script setup>
|
|
import { computed } from 'vue';
|
|
import { useI18n } from 'vue-i18n';
|
|
import { dynamicTime } from 'shared/helpers/timeHelper';
|
|
import Icon from 'dashboard/components-next/icon/Icon.vue';
|
|
import Button from 'dashboard/components-next/button/Button.vue';
|
|
import Spinner from 'dashboard/components-next/spinner/Spinner.vue';
|
|
|
|
const props = defineProps({
|
|
status: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
lastSyncedAt: {
|
|
type: Number,
|
|
default: null,
|
|
},
|
|
errorCode: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
syncInProgress: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
staleAfterHours: {
|
|
type: Number,
|
|
default: null,
|
|
},
|
|
showRetry: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
});
|
|
|
|
const emit = defineEmits(['retry']);
|
|
const { t } = useI18n();
|
|
|
|
const SECONDS_PER_HOUR = 3600;
|
|
|
|
const SYNCING = 'syncing';
|
|
const FAILED = 'failed';
|
|
|
|
const ERROR_CODE_LABELS = {
|
|
not_found: 'CAPTAIN.DOCUMENTS.SYNC_ERRORS.NOT_FOUND',
|
|
access_denied: 'CAPTAIN.DOCUMENTS.SYNC_ERRORS.ACCESS_DENIED',
|
|
timeout: 'CAPTAIN.DOCUMENTS.SYNC_ERRORS.TIMEOUT',
|
|
content_empty: 'CAPTAIN.DOCUMENTS.SYNC_ERRORS.CONTENT_EMPTY',
|
|
fetch_failed: 'CAPTAIN.DOCUMENTS.SYNC_ERRORS.FETCH_FAILED',
|
|
sync_error: 'CAPTAIN.DOCUMENTS.SYNC_ERRORS.SYNC_ERROR',
|
|
};
|
|
const DEFAULT_ERROR_LABEL = 'CAPTAIN.DOCUMENTS.SYNC_ERRORS.DEFAULT';
|
|
|
|
const hasSyncingStatus = computed(() => props.status === SYNCING);
|
|
const isSyncing = computed(
|
|
() => hasSyncingStatus.value && props.syncInProgress
|
|
);
|
|
const isStaleSync = computed(
|
|
() => hasSyncingStatus.value && !props.syncInProgress
|
|
);
|
|
const isFailed = computed(() => props.status === FAILED);
|
|
const canRetry = computed(() => isFailed.value || isStaleSync.value);
|
|
const hasBeenSynced = computed(() => Boolean(props.lastSyncedAt));
|
|
|
|
const ageInHours = computed(() => {
|
|
if (!props.lastSyncedAt) return null;
|
|
const nowSeconds = Date.now() / 1000;
|
|
return (nowSeconds - props.lastSyncedAt) / SECONDS_PER_HOUR;
|
|
});
|
|
|
|
const staleAfterHours = computed(() => Number(props.staleAfterHours));
|
|
const hasStaleThreshold = computed(
|
|
() => Number.isFinite(staleAfterHours.value) && staleAfterHours.value > 0
|
|
);
|
|
const isStale = computed(
|
|
() =>
|
|
hasStaleThreshold.value &&
|
|
ageInHours.value !== null &&
|
|
ageInHours.value >= staleAfterHours.value
|
|
);
|
|
|
|
const errorLabel = computed(() =>
|
|
t(ERROR_CODE_LABELS[props.errorCode] || DEFAULT_ERROR_LABEL)
|
|
);
|
|
|
|
const label = computed(() => {
|
|
if (isSyncing.value) return t('CAPTAIN.DOCUMENTS.SYNC_STATUS.SYNCING');
|
|
if (isStaleSync.value) return t('CAPTAIN.DOCUMENTS.SYNC_STATUS.STALE_SYNC');
|
|
if (isFailed.value) return t('CAPTAIN.DOCUMENTS.SYNC_STATUS.FAILED');
|
|
if (hasBeenSynced.value)
|
|
return t('CAPTAIN.DOCUMENTS.SYNC_STATUS.SYNCED', {
|
|
time: dynamicTime(props.lastSyncedAt),
|
|
});
|
|
return t('CAPTAIN.DOCUMENTS.SYNC_STATUS.NEVER_SYNCED');
|
|
});
|
|
|
|
const fullLabel = computed(() => {
|
|
if (isSyncing.value) return t('CAPTAIN.DOCUMENTS.SYNC_STATUS.SYNCING');
|
|
if (isStaleSync.value) return t('CAPTAIN.DOCUMENTS.SYNC_STATUS.STALE_SYNC');
|
|
if (isFailed.value)
|
|
return t('CAPTAIN.DOCUMENTS.SYNC_STATUS.FAILED', {
|
|
error: errorLabel.value,
|
|
});
|
|
if (hasBeenSynced.value)
|
|
return t('CAPTAIN.DOCUMENTS.SYNC_STATUS.SYNCED', {
|
|
time: dynamicTime(props.lastSyncedAt),
|
|
});
|
|
return t('CAPTAIN.DOCUMENTS.SYNC_STATUS.NEVER_SYNCED');
|
|
});
|
|
|
|
const tone = computed(() => {
|
|
if (isSyncing.value) return 'amber';
|
|
if (isStaleSync.value) return 'amber';
|
|
if (isFailed.value) return 'ruby';
|
|
if (isStale.value) return 'amber';
|
|
return 'slate';
|
|
});
|
|
|
|
const textClass = computed(() => {
|
|
if (tone.value === 'amber') return 'text-n-amber-11';
|
|
if (tone.value === 'ruby') return 'text-n-ruby-11';
|
|
return 'text-n-slate-11';
|
|
});
|
|
|
|
const statusIcon = computed(() => {
|
|
if (isFailed.value || isStale.value || isStaleSync.value) {
|
|
return 'i-lucide-circle-alert';
|
|
}
|
|
return 'i-lucide-refresh-cw';
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<span
|
|
class="flex gap-1.5 items-center text-sm truncate shrink-0 tabular-nums"
|
|
:class="textClass"
|
|
:title="fullLabel"
|
|
>
|
|
<Spinner v-if="isSyncing" class="text-n-amber-11 size-3" />
|
|
<Icon v-else :icon="statusIcon" class="shrink-0 size-3.5" />
|
|
<span class="truncate">{{ label }}</span>
|
|
<Button
|
|
v-if="showRetry && canRetry"
|
|
:label="t('CAPTAIN.DOCUMENTS.OPTIONS.RETRY_SYNC')"
|
|
xs
|
|
link
|
|
ruby
|
|
icon="i-lucide-refresh-cw"
|
|
class="hover:!no-underline !gap-1 ms-1"
|
|
@click.stop="emit('retry')"
|
|
/>
|
|
</span>
|
|
</template>
|