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/
110 lines
2.8 KiB
JavaScript
110 lines
2.8 KiB
JavaScript
/* global axios */
|
|
|
|
import Cookies from 'js-cookie';
|
|
import endPoints from './endPoints';
|
|
import {
|
|
clearCookiesOnLogout,
|
|
deleteIndexedDBOnLogout,
|
|
} from '../store/utils/api';
|
|
|
|
export default {
|
|
validityCheck() {
|
|
const urlData = endPoints('validityCheck');
|
|
return axios.get(urlData.url);
|
|
},
|
|
logout() {
|
|
const urlData = endPoints('logout');
|
|
const fetchPromise = new Promise((resolve, reject) => {
|
|
axios
|
|
.delete(urlData.url)
|
|
.then(response => {
|
|
deleteIndexedDBOnLogout();
|
|
clearCookiesOnLogout();
|
|
resolve(response);
|
|
})
|
|
.catch(error => {
|
|
reject(error);
|
|
});
|
|
});
|
|
return fetchPromise;
|
|
},
|
|
hasAuthCookie() {
|
|
return !!Cookies.get('cw_d_session_info');
|
|
},
|
|
getAuthData() {
|
|
if (this.hasAuthCookie()) {
|
|
const savedAuthInfo = Cookies.get('cw_d_session_info');
|
|
return JSON.parse(savedAuthInfo || '{}');
|
|
}
|
|
return false;
|
|
},
|
|
profileUpdate({ displayName, avatar, ...profileAttributes }) {
|
|
const formData = new FormData();
|
|
Object.keys(profileAttributes).forEach(key => {
|
|
const hasValue = profileAttributes[key] === undefined;
|
|
if (!hasValue) {
|
|
formData.append(`profile[${key}]`, profileAttributes[key]);
|
|
}
|
|
});
|
|
formData.append('profile[display_name]', displayName || '');
|
|
if (avatar) {
|
|
formData.append('profile[avatar]', avatar);
|
|
}
|
|
return axios.put(endPoints('profileUpdate').url, formData);
|
|
},
|
|
|
|
profilePasswordUpdate({ currentPassword, password, passwordConfirmation }) {
|
|
return axios.put(endPoints('profileUpdate').url, {
|
|
profile: {
|
|
current_password: currentPassword,
|
|
password,
|
|
password_confirmation: passwordConfirmation,
|
|
},
|
|
});
|
|
},
|
|
|
|
updateUISettings({ uiSettings }) {
|
|
return axios.put(endPoints('profileUpdate').url, {
|
|
profile: { ui_settings: uiSettings },
|
|
});
|
|
},
|
|
|
|
updateAvailability(availabilityData) {
|
|
return axios.post(endPoints('availabilityUpdate').url, {
|
|
profile: { ...availabilityData },
|
|
});
|
|
},
|
|
|
|
updateAutoOffline(accountId, autoOffline = false) {
|
|
return axios.post(endPoints('autoOffline').url, {
|
|
profile: { account_id: accountId, auto_offline: autoOffline },
|
|
});
|
|
},
|
|
|
|
deleteAvatar() {
|
|
return axios.delete(endPoints('deleteAvatar').url);
|
|
},
|
|
|
|
resetPassword({ email }) {
|
|
const urlData = endPoints('resetPassword');
|
|
return axios.post(urlData.url, { email });
|
|
},
|
|
|
|
setActiveAccount({ accountId }) {
|
|
const urlData = endPoints('setActiveAccount');
|
|
return axios.put(urlData.url, {
|
|
profile: {
|
|
account_id: accountId,
|
|
},
|
|
});
|
|
},
|
|
resendConfirmation() {
|
|
const urlData = endPoints('resendConfirmation');
|
|
return axios.post(urlData.url);
|
|
},
|
|
resetAccessToken() {
|
|
const urlData = endPoints('resetAccessToken');
|
|
return axios.post(urlData.url);
|
|
},
|
|
};
|