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/
156 lines
4.8 KiB
JavaScript
156 lines
4.8 KiB
JavaScript
import {
|
|
SET_BUBBLE_VISIBILITY,
|
|
SET_COLOR_SCHEME,
|
|
SET_REFERRER_HOST,
|
|
SET_WIDGET_APP_CONFIG,
|
|
SET_WIDGET_COLOR,
|
|
TOGGLE_WIDGET_OPEN,
|
|
SET_ROUTE_UPDATE_STATE,
|
|
} from '../types';
|
|
|
|
const state = {
|
|
hideMessageBubble: false,
|
|
isCampaignViewClicked: false,
|
|
showUnreadMessagesDialog: true,
|
|
isWebWidgetTriggered: false,
|
|
isWidgetOpen: false,
|
|
position: 'right',
|
|
referrerHost: '',
|
|
showPopoutButton: false,
|
|
widgetColor: '',
|
|
widgetStyle: 'standard',
|
|
darkMode: 'light',
|
|
isUpdatingRoute: false,
|
|
welcomeTitle: '',
|
|
welcomeDescription: '',
|
|
availableMessage: '',
|
|
unavailableMessage: '',
|
|
enableFileUpload: undefined,
|
|
enableEmojiPicker: true,
|
|
enableEndConversation: true,
|
|
};
|
|
|
|
export const getters = {
|
|
getAppConfig: $state => $state,
|
|
isRightAligned: $state => $state.position === 'right',
|
|
getHideMessageBubble: $state => $state.hideMessageBubble,
|
|
getIsWidgetOpen: $state => $state.isWidgetOpen,
|
|
getWidgetColor: $state => $state.widgetColor,
|
|
getReferrerHost: $state => $state.referrerHost,
|
|
isWidgetStyleFlat: $state => $state.widgetStyle === 'flat',
|
|
darkMode: $state => $state.darkMode,
|
|
getShowUnreadMessagesDialog: $state => $state.showUnreadMessagesDialog,
|
|
getIsUpdatingRoute: _state => _state.isUpdatingRoute,
|
|
getWelcomeHeading: $state => $state.welcomeTitle,
|
|
getWelcomeTagline: $state => $state.welcomeDescription,
|
|
getAvailableMessage: $state => $state.availableMessage,
|
|
getUnavailableMessage: $state => $state.unavailableMessage,
|
|
getShouldShowFilePicker: $state => $state.enableFileUpload,
|
|
getShouldShowEmojiPicker: $state => $state.enableEmojiPicker,
|
|
getCanUserEndConversation: $state => $state.enableEndConversation,
|
|
};
|
|
|
|
export const actions = {
|
|
setAppConfig(
|
|
{ commit },
|
|
{
|
|
showPopoutButton,
|
|
position,
|
|
hideMessageBubble,
|
|
showUnreadMessagesDialog,
|
|
widgetStyle = 'rounded',
|
|
darkMode = 'light',
|
|
welcomeTitle = '',
|
|
welcomeDescription = '',
|
|
availableMessage = '',
|
|
unavailableMessage = '',
|
|
enableFileUpload = undefined,
|
|
enableEmojiPicker = true,
|
|
enableEndConversation = true,
|
|
}
|
|
) {
|
|
commit(SET_WIDGET_APP_CONFIG, {
|
|
hideMessageBubble: !!hideMessageBubble,
|
|
position: position || 'right',
|
|
showPopoutButton: !!showPopoutButton,
|
|
showUnreadMessagesDialog: !!showUnreadMessagesDialog,
|
|
widgetStyle,
|
|
darkMode,
|
|
welcomeTitle,
|
|
welcomeDescription,
|
|
availableMessage,
|
|
unavailableMessage,
|
|
enableFileUpload,
|
|
enableEmojiPicker,
|
|
enableEndConversation,
|
|
});
|
|
},
|
|
toggleWidgetOpen({ commit }, isWidgetOpen) {
|
|
commit(TOGGLE_WIDGET_OPEN, isWidgetOpen);
|
|
},
|
|
setWidgetColor({ commit }, widgetColor) {
|
|
commit(SET_WIDGET_COLOR, widgetColor);
|
|
},
|
|
setColorScheme({ commit }, darkMode) {
|
|
commit(SET_COLOR_SCHEME, darkMode);
|
|
},
|
|
setReferrerHost({ commit }, referrerHost) {
|
|
commit(SET_REFERRER_HOST, referrerHost);
|
|
},
|
|
setBubbleVisibility({ commit }, hideMessageBubble) {
|
|
commit(SET_BUBBLE_VISIBILITY, hideMessageBubble);
|
|
},
|
|
setRouteTransitionState: async ({ commit }, status) => {
|
|
// Handles the routing state during navigation to different screen
|
|
// Called before the navigation starts and after navigation completes
|
|
// Handling this state in app/javascript/widget/router.js
|
|
// See issue: https://github.com/chatwoot/chatwoot/issues/10736
|
|
commit(SET_ROUTE_UPDATE_STATE, status);
|
|
},
|
|
};
|
|
|
|
export const mutations = {
|
|
[SET_WIDGET_APP_CONFIG]($state, data) {
|
|
$state.showPopoutButton = data.showPopoutButton;
|
|
$state.position = data.position;
|
|
$state.hideMessageBubble = data.hideMessageBubble;
|
|
$state.widgetStyle = data.widgetStyle;
|
|
$state.darkMode = data.darkMode;
|
|
$state.locale = data.locale || $state.locale;
|
|
$state.showUnreadMessagesDialog = data.showUnreadMessagesDialog;
|
|
$state.welcomeTitle = data.welcomeTitle;
|
|
$state.welcomeDescription = data.welcomeDescription;
|
|
$state.availableMessage = data.availableMessage;
|
|
$state.unavailableMessage = data.unavailableMessage;
|
|
$state.enableFileUpload = data.enableFileUpload;
|
|
$state.enableEmojiPicker = data.enableEmojiPicker;
|
|
$state.enableEndConversation = data.enableEndConversation;
|
|
},
|
|
[TOGGLE_WIDGET_OPEN]($state, isWidgetOpen) {
|
|
$state.isWidgetOpen = isWidgetOpen;
|
|
},
|
|
[SET_WIDGET_COLOR]($state, widgetColor) {
|
|
$state.widgetColor = widgetColor;
|
|
},
|
|
[SET_REFERRER_HOST]($state, referrerHost) {
|
|
$state.referrerHost = referrerHost;
|
|
},
|
|
[SET_BUBBLE_VISIBILITY]($state, hideMessageBubble) {
|
|
$state.hideMessageBubble = hideMessageBubble;
|
|
},
|
|
[SET_COLOR_SCHEME]($state, darkMode) {
|
|
$state.darkMode = darkMode;
|
|
},
|
|
[SET_ROUTE_UPDATE_STATE]($state, status) {
|
|
$state.isUpdatingRoute = status;
|
|
},
|
|
};
|
|
|
|
export default {
|
|
namespaced: true,
|
|
state,
|
|
getters,
|
|
actions,
|
|
mutations,
|
|
};
|