After entering their account details, new admins land on an **Inbox setup** screen that shows what we've already set up for them and lets them connect their conversation channels without leaving onboarding. It surfaces the auto-created live chat widget (and Help Center on Enterprise), highlights channels detected from their website, and offers a **View all** dialog to connect any supported channel inline. ### Channel status | Channel | How it connects | Status | PR | |---|---|---|---| | Live chat (Website) | Auto-created during setup | ✅ Done | https://github.com/chatwoot/chatwoot/pull/14314 | | WhatsApp | Meta embedded signup | ✅ Done | https://github.com/chatwoot/chatwoot/pull/14619 | | Facebook | Login + page picker | ✅ Done | https://github.com/chatwoot/chatwoot/pull/14619 | | Instagram | OAuth redirect | ✅ Done | https://github.com/chatwoot/chatwoot/pull/14568 | | TikTok | OAuth redirect | ✅ Done | https://github.com/chatwoot/chatwoot/pull/14569 | | LINE | Inline credential form | ✅ Done | — | | Telegram | Inline credential form | ✅ Done | — | | Gmail / Outlook | OAuth (email) | ⚠️ Disabled — coming in a follow-up | https://github.com/chatwoot/chatwoot/pull/14567 | | SMS / API / Voice / Other email | — | ⛔ Unavailable | — | --------- Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
81 lines
2.5 KiB
JavaScript
81 lines
2.5 KiB
JavaScript
import { createRouter, createWebHistory } from 'vue-router';
|
|
|
|
import { frontendURL } from '../helper/URLHelper';
|
|
import dashboard from './dashboard/dashboard.routes';
|
|
import store from 'dashboard/store';
|
|
import { validateLoggedInRoutes } from '../helper/routeHelpers';
|
|
import { isOnOnboardingView } from 'v3/helpers/RouteHelper';
|
|
import AnalyticsHelper from '../helper/AnalyticsHelper';
|
|
|
|
const ONBOARDING_STEPS = ['account_details', 'enrichment', 'inbox_setup'];
|
|
const routes = [...dashboard.routes];
|
|
|
|
const onboardingPath = step =>
|
|
step === 'inbox_setup' ? 'onboarding/inbox-setup' : 'onboarding';
|
|
|
|
export const router = createRouter({ history: createWebHistory(), routes });
|
|
|
|
export const validateAuthenticateRoutePermission = async (to, next) => {
|
|
const { isLoggedIn, getCurrentUser: user } = store.getters;
|
|
|
|
if (!isLoggedIn) {
|
|
window.location.assign('/app/login');
|
|
return '';
|
|
}
|
|
|
|
const { accounts = [], account_id: accountId } = user;
|
|
|
|
if (!accounts.length) {
|
|
if (to.name === 'no_accounts') {
|
|
return next();
|
|
}
|
|
return next(frontendURL('no-accounts'));
|
|
}
|
|
|
|
const routeAccountId = Number(to.params?.accountId || accountId);
|
|
const userAccount = accounts.find(a => a.id === routeAccountId);
|
|
const isAdmin = userAccount?.role === 'administrator';
|
|
const isActive = userAccount?.status === 'active';
|
|
const needsOnboarding =
|
|
ONBOARDING_STEPS.includes(userAccount?.onboarding_step) &&
|
|
isAdmin &&
|
|
isActive;
|
|
|
|
if (to.name === 'no_accounts' || !to.name) {
|
|
const target = needsOnboarding
|
|
? onboardingPath(userAccount?.onboarding_step)
|
|
: 'dashboard';
|
|
return next(frontendURL(`accounts/${routeAccountId}/${target}`));
|
|
}
|
|
|
|
if (needsOnboarding && !isOnOnboardingView(to)) {
|
|
return next(
|
|
frontendURL(
|
|
`accounts/${routeAccountId}/${onboardingPath(userAccount?.onboarding_step)}`
|
|
)
|
|
);
|
|
}
|
|
if (!needsOnboarding && isOnOnboardingView(to)) {
|
|
return next(frontendURL(`accounts/${routeAccountId}/dashboard`));
|
|
}
|
|
|
|
const nextRoute = validateLoggedInRoutes(to, store.getters.getCurrentUser);
|
|
return nextRoute ? next(frontendURL(nextRoute)) : next();
|
|
};
|
|
|
|
export const initalizeRouter = () => {
|
|
const userAuthentication = store.dispatch('setUser');
|
|
|
|
router.beforeEach(async (to, _from, next) => {
|
|
AnalyticsHelper.page(to.name || '', {
|
|
path: to.path,
|
|
name: to.name,
|
|
});
|
|
|
|
await userAuthentication;
|
|
await validateAuthenticateRoutePermission(to, next, store);
|
|
});
|
|
};
|
|
|
|
export default router;
|