This adds a draft status for Help Center locales so teams can prepare localized content in the dashboard without exposing those locales in the public portal switcher until they are ready to publish. Fixes: https://github.com/chatwoot/chatwoot/issues/10412 Closes: https://github.com/chatwoot/chatwoot/issues/10412 ## Why Teams need a way to work on locale-specific Help Center content ahead of launch. The public portal should only show ready locales, while the admin dashboard should continue to expose every allowed locale for ongoing article and category work. ## What this change does - Adds `draft_locales` to portal config as a subset of `allowed_locales` - Hides drafted locales from the public portal language switchers while keeping direct locale URLs working - Keeps drafted locales fully visible in the admin dashboard for article and category management - Adds locale actions to move an existing locale to draft, publish a drafted locale, and keep the default locale protected from drafting - Adds a status dropdown when creating a locale so new locales can be created as `Published` or `Draft` - Returns each admin locale with a `draft` flag so the locale UI can reflect the public visibility state ## Validation - Seed a portal with multiple locales, draft one locale, and confirm the public portal switcher hides it while `/hc/:slug/:locale` still loads directly - In the admin dashboard, confirm drafted locales still appear in the locale list and remain selectable for articles and categories - Create a new locale with `Draft` status and confirm it stays out of the public switcher until published - Move an existing locale back and forth between `Published` and `Draft` and confirm the public switcher updates accordingly ## Demo https://github.com/user-attachments/assets/ba22dc26-c2e7-463a-b1f5-adf1fda1f9be --------- Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
150 lines
4.1 KiB
Vue
150 lines
4.1 KiB
Vue
<script setup>
|
|
import { ref, computed, watch } from 'vue';
|
|
import { useI18n } from 'vue-i18n';
|
|
import { useStore } from 'dashboard/composables/store';
|
|
import { useAlert, useTrack } from 'dashboard/composables';
|
|
import { useRoute } from 'vue-router';
|
|
import { PORTALS_EVENTS } from 'dashboard/helper/AnalyticsHelper/events';
|
|
import allLocales from 'shared/constants/locales.js';
|
|
import Dialog from 'dashboard/components-next/dialog/Dialog.vue';
|
|
import ComboBox from 'dashboard/components-next/combobox/ComboBox.vue';
|
|
|
|
const props = defineProps({
|
|
portal: {
|
|
type: Object,
|
|
default: () => ({}),
|
|
},
|
|
});
|
|
|
|
const { t } = useI18n();
|
|
const store = useStore();
|
|
const route = useRoute();
|
|
|
|
const dialogRef = ref(null);
|
|
const isUpdating = ref(false);
|
|
|
|
const selectedLocale = ref('');
|
|
const localeStatus = ref('published');
|
|
|
|
const addedLocales = computed(() => {
|
|
const { allowed_locales: allowedLocales = [] } = props.portal?.config || {};
|
|
return allowedLocales.map(locale => locale.code);
|
|
});
|
|
|
|
const draftedLocales = computed(() => {
|
|
const { allowed_locales: allowedLocales = [] } = props.portal?.config || {};
|
|
return allowedLocales
|
|
.filter(locale => locale.draft)
|
|
.map(locale => locale.code);
|
|
});
|
|
|
|
const locales = computed(() => {
|
|
return Object.keys(allLocales)
|
|
.map(key => {
|
|
return {
|
|
value: key,
|
|
label: `${allLocales[key]} (${key})`,
|
|
};
|
|
})
|
|
.filter(locale => !addedLocales.value.includes(locale.value));
|
|
});
|
|
|
|
const statusOptions = computed(() => [
|
|
{
|
|
value: 'published',
|
|
label: t('HELP_CENTER.LOCALES_PAGE.ADD_LOCALE_DIALOG.STATUS.OPTIONS.LIVE'),
|
|
},
|
|
{
|
|
value: 'draft',
|
|
label: t('HELP_CENTER.LOCALES_PAGE.ADD_LOCALE_DIALOG.STATUS.OPTIONS.DRAFT'),
|
|
},
|
|
]);
|
|
|
|
const resetForm = () => {
|
|
selectedLocale.value = '';
|
|
localeStatus.value = 'published';
|
|
};
|
|
|
|
watch(localeStatus, value => {
|
|
if (!value) {
|
|
localeStatus.value = 'published';
|
|
}
|
|
});
|
|
|
|
const onCreate = async () => {
|
|
if (!selectedLocale.value) return;
|
|
|
|
isUpdating.value = true;
|
|
const updatedLocales = [...addedLocales.value, selectedLocale.value];
|
|
const updatedDraftLocales =
|
|
localeStatus.value === 'draft'
|
|
? [...new Set([...draftedLocales.value, selectedLocale.value])]
|
|
: draftedLocales.value;
|
|
|
|
try {
|
|
await store.dispatch('portals/update', {
|
|
portalSlug: props.portal?.slug,
|
|
config: {
|
|
allowed_locales: updatedLocales,
|
|
draft_locales: updatedDraftLocales,
|
|
default_locale: props.portal?.meta?.default_locale,
|
|
},
|
|
});
|
|
|
|
useTrack(PORTALS_EVENTS.CREATE_LOCALE, {
|
|
localeAdded: selectedLocale.value,
|
|
totalLocales: updatedLocales.length,
|
|
from: route.name,
|
|
});
|
|
|
|
resetForm();
|
|
dialogRef.value?.close();
|
|
useAlert(
|
|
t('HELP_CENTER.LOCALES_PAGE.ADD_LOCALE_DIALOG.API.SUCCESS_MESSAGE')
|
|
);
|
|
} catch (error) {
|
|
useAlert(
|
|
error?.message ||
|
|
t('HELP_CENTER.LOCALES_PAGE.ADD_LOCALE_DIALOG.API.ERROR_MESSAGE')
|
|
);
|
|
} finally {
|
|
isUpdating.value = false;
|
|
}
|
|
};
|
|
|
|
// Expose the dialogRef to the parent component
|
|
defineExpose({ dialogRef });
|
|
</script>
|
|
|
|
<template>
|
|
<Dialog
|
|
ref="dialogRef"
|
|
type="edit"
|
|
:title="t('HELP_CENTER.LOCALES_PAGE.ADD_LOCALE_DIALOG.TITLE')"
|
|
:description="t('HELP_CENTER.LOCALES_PAGE.ADD_LOCALE_DIALOG.DESCRIPTION')"
|
|
@close="resetForm"
|
|
@confirm="onCreate"
|
|
>
|
|
<div class="flex flex-col gap-6">
|
|
<ComboBox
|
|
v-model="selectedLocale"
|
|
:options="locales"
|
|
:placeholder="
|
|
t('HELP_CENTER.LOCALES_PAGE.ADD_LOCALE_DIALOG.COMBOBOX.PLACEHOLDER')
|
|
"
|
|
class="[&>div>button:not(.focused)]:!outline-n-slate-5 [&>div>button:not(.focused)]:dark:!outline-n-slate-5"
|
|
/>
|
|
<div class="flex flex-col gap-2">
|
|
<span class="text-sm font-medium text-n-slate-12">
|
|
{{ t('HELP_CENTER.LOCALES_PAGE.ADD_LOCALE_DIALOG.STATUS.LABEL') }}
|
|
</span>
|
|
<ComboBox
|
|
v-model="localeStatus"
|
|
:options="statusOptions"
|
|
class="[&>div>button:not(.focused)]:!outline-n-slate-5 [&>div>button:not(.focused)]:dark:!outline-n-slate-5"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</Dialog>
|
|
</template>
|