forked from potsda.mn/mobilizon
2d541f2e32
And disable eslint when building in prod mode Signed-off-by: Thomas Citharel <tcit@tcit.fr>
260 lines
8.3 KiB
TypeScript
260 lines
8.3 KiB
TypeScript
import { Route, RouteConfig } from "vue-router";
|
|
import { EsModuleComponent } from "vue/types/options";
|
|
|
|
export enum SettingsRouteName {
|
|
SETTINGS = "SETTINGS",
|
|
ACCOUNT_SETTINGS = "ACCOUNT_SETTINGS",
|
|
ACCOUNT_SETTINGS_GENERAL = "ACCOUNT_SETTINGS_GENERAL",
|
|
PREFERENCES = "PREFERENCES",
|
|
NOTIFICATIONS = "NOTIFICATIONS",
|
|
ADMIN = "ADMIN",
|
|
ADMIN_DASHBOARD = "ADMIN_DASHBOARD",
|
|
ADMIN_SETTINGS = "ADMIN_SETTINGS",
|
|
RELAYS = "Relays",
|
|
RELAY_FOLLOWINGS = "Followings",
|
|
RELAY_FOLLOWERS = "Followers",
|
|
USERS = "USERS",
|
|
PROFILES = "PROFILES",
|
|
ADMIN_PROFILE = "ADMIN_PROFILE",
|
|
ADMIN_USER_PROFILE = "ADMIN_USER_PROFILE",
|
|
ADMIN_GROUPS = "ADMIN_GROUPS",
|
|
ADMIN_GROUP_PROFILE = "ADMIN_GROUP_PROFILE",
|
|
MODERATION = "MODERATION",
|
|
REPORTS = "Reports",
|
|
REPORT = "Report",
|
|
REPORT_LOGS = "Logs",
|
|
CREATE_IDENTITY = "CreateIdentity",
|
|
UPDATE_IDENTITY = "UpdateIdentity",
|
|
IDENTITIES = "IDENTITIES",
|
|
}
|
|
|
|
export const settingsRoutes: RouteConfig[] = [
|
|
{
|
|
path: "/settings",
|
|
component: (): Promise<EsModuleComponent> =>
|
|
import(/* webpackChunkName: "Settings" */ "@/views/Settings.vue"),
|
|
props: true,
|
|
meta: { requiredAuth: true },
|
|
redirect: { name: SettingsRouteName.ACCOUNT_SETTINGS },
|
|
name: SettingsRouteName.SETTINGS,
|
|
children: [
|
|
{
|
|
path: "account",
|
|
name: SettingsRouteName.ACCOUNT_SETTINGS,
|
|
redirect: { name: SettingsRouteName.ACCOUNT_SETTINGS_GENERAL },
|
|
meta: { requiredAuth: true },
|
|
},
|
|
{
|
|
path: "account/general",
|
|
name: SettingsRouteName.ACCOUNT_SETTINGS_GENERAL,
|
|
component: (): Promise<EsModuleComponent> =>
|
|
import(
|
|
/* webpackChunkName: "AccountSettings" */ "@/views/Settings/AccountSettings.vue"
|
|
),
|
|
props: true,
|
|
meta: { requiredAuth: true },
|
|
},
|
|
{
|
|
path: "preferences",
|
|
name: SettingsRouteName.PREFERENCES,
|
|
component: (): Promise<EsModuleComponent> =>
|
|
import(
|
|
/* webpackChunkName: "Preferences" */ "@/views/Settings/Preferences.vue"
|
|
),
|
|
props: true,
|
|
meta: { requiredAuth: true },
|
|
},
|
|
{
|
|
path: "notifications",
|
|
name: SettingsRouteName.NOTIFICATIONS,
|
|
component: (): Promise<EsModuleComponent> =>
|
|
import(
|
|
/* webpackChunkName: "Notifications" */ "@/views/Settings/Notifications.vue"
|
|
),
|
|
props: true,
|
|
meta: { requiredAuth: true },
|
|
},
|
|
{
|
|
path: "admin",
|
|
name: SettingsRouteName.ADMIN,
|
|
redirect: { name: SettingsRouteName.ADMIN_DASHBOARD },
|
|
meta: { requiredAuth: true },
|
|
},
|
|
{
|
|
path: "admin/dashboard",
|
|
name: SettingsRouteName.ADMIN_DASHBOARD,
|
|
component: (): Promise<EsModuleComponent> =>
|
|
import(
|
|
/* webpackChunkName: "Dashboard" */ "@/views/Admin/Dashboard.vue"
|
|
),
|
|
meta: { requiredAuth: true },
|
|
},
|
|
{
|
|
path: "admin/settings",
|
|
name: SettingsRouteName.ADMIN_SETTINGS,
|
|
component: (): Promise<EsModuleComponent> =>
|
|
import(
|
|
/* webpackChunkName: "AdminSettings" */ "@/views/Admin/Settings.vue"
|
|
),
|
|
props: true,
|
|
meta: { requiredAuth: true },
|
|
},
|
|
{
|
|
path: "admin/users",
|
|
name: SettingsRouteName.USERS,
|
|
component: (): Promise<EsModuleComponent> =>
|
|
import(/* webpackChunkName: "Users" */ "@/views/Admin/Users.vue"),
|
|
props: true,
|
|
meta: { requiredAuth: true },
|
|
},
|
|
{
|
|
path: "admin/users/:id",
|
|
name: SettingsRouteName.ADMIN_USER_PROFILE,
|
|
component: (): Promise<EsModuleComponent> =>
|
|
import(
|
|
/* webpackChunkName: "AdminUserProfile" */ "@/views/Admin/AdminUserProfile.vue"
|
|
),
|
|
props: true,
|
|
meta: { requiredAuth: true },
|
|
},
|
|
{
|
|
path: "admin/profiles",
|
|
name: SettingsRouteName.PROFILES,
|
|
component: (): Promise<EsModuleComponent> =>
|
|
import(
|
|
/* webpackChunkName: "AdminProfiles" */ "@/views/Admin/Profiles.vue"
|
|
),
|
|
props: true,
|
|
meta: { requiredAuth: true },
|
|
},
|
|
{
|
|
path: "admin/profiles/:id",
|
|
name: SettingsRouteName.ADMIN_PROFILE,
|
|
component: (): Promise<EsModuleComponent> =>
|
|
import(
|
|
/* webpackChunkName: "AdminProfile" */ "@/views/Admin/AdminProfile.vue"
|
|
),
|
|
props: true,
|
|
meta: { requiredAuth: true },
|
|
},
|
|
{
|
|
path: "admin/groups",
|
|
name: SettingsRouteName.ADMIN_GROUPS,
|
|
component: (): Promise<EsModuleComponent> =>
|
|
import(
|
|
/* webpackChunkName: "GroupProfiles" */ "@/views/Admin/GroupProfiles.vue"
|
|
),
|
|
props: true,
|
|
meta: { requiredAuth: true },
|
|
},
|
|
{
|
|
path: "admin/groups/:id",
|
|
name: SettingsRouteName.ADMIN_GROUP_PROFILE,
|
|
component: (): Promise<EsModuleComponent> =>
|
|
import(
|
|
/* webpackChunkName: "AdminGroupProfile" */ "@/views/Admin/AdminGroupProfile.vue"
|
|
),
|
|
props: true,
|
|
meta: { requiredAuth: true },
|
|
},
|
|
{
|
|
path: "admin/relays",
|
|
name: SettingsRouteName.RELAYS,
|
|
redirect: { name: SettingsRouteName.RELAY_FOLLOWINGS },
|
|
component: (): Promise<EsModuleComponent> =>
|
|
import(/* webpackChunkName: "Follows" */ "@/views/Admin/Follows.vue"),
|
|
meta: { requiredAuth: true },
|
|
children: [
|
|
{
|
|
path: "followings",
|
|
name: SettingsRouteName.RELAY_FOLLOWINGS,
|
|
component: (): Promise<EsModuleComponent> =>
|
|
import(
|
|
/* webpackChunkName: "Followings" */ "@/components/Admin/Followings.vue"
|
|
),
|
|
meta: { requiredAuth: true },
|
|
},
|
|
{
|
|
path: "followers",
|
|
name: SettingsRouteName.RELAY_FOLLOWERS,
|
|
component: (): Promise<EsModuleComponent> =>
|
|
import(
|
|
/* webpackChunkName: "Followers" */ "@/components/Admin/Followers.vue"
|
|
),
|
|
meta: { requiredAuth: true },
|
|
},
|
|
],
|
|
props: true,
|
|
},
|
|
{
|
|
path: "/moderation",
|
|
name: SettingsRouteName.MODERATION,
|
|
redirect: { name: SettingsRouteName.REPORTS },
|
|
meta: { requiredAuth: true },
|
|
},
|
|
{
|
|
path: "/moderation/reports/:filter?",
|
|
name: SettingsRouteName.REPORTS,
|
|
component: (): Promise<EsModuleComponent> =>
|
|
import(
|
|
/* webpackChunkName: "ReportList" */ "@/views/Moderation/ReportList.vue"
|
|
),
|
|
props: true,
|
|
meta: { requiredAuth: true },
|
|
},
|
|
{
|
|
path: "/moderation/report/:reportId",
|
|
name: SettingsRouteName.REPORT,
|
|
component: (): Promise<EsModuleComponent> =>
|
|
import(
|
|
/* webpackChunkName: "Report" */ "@/views/Moderation/Report.vue"
|
|
),
|
|
props: true,
|
|
meta: { requiredAuth: true },
|
|
},
|
|
{
|
|
path: "/moderation/logs",
|
|
name: SettingsRouteName.REPORT_LOGS,
|
|
component: (): Promise<EsModuleComponent> =>
|
|
import(
|
|
/* webpackChunkName: "ModerationLogs" */ "@/views/Moderation/Logs.vue"
|
|
),
|
|
props: true,
|
|
meta: { requiredAuth: true },
|
|
},
|
|
{
|
|
path: "/identity",
|
|
name: SettingsRouteName.IDENTITIES,
|
|
redirect: { name: SettingsRouteName.UPDATE_IDENTITY },
|
|
meta: { requiredAuth: true },
|
|
},
|
|
{
|
|
path: "/identity/create",
|
|
name: SettingsRouteName.CREATE_IDENTITY,
|
|
component: (): Promise<EsModuleComponent> =>
|
|
import(
|
|
/* webpackChunkName: "EditIdentity" */ "@/views/Account/children/EditIdentity.vue"
|
|
),
|
|
props: (route: Route): Record<string, unknown> => ({
|
|
identityName: route.params.identityName,
|
|
isUpdate: false,
|
|
}),
|
|
meta: { requiredAuth: true },
|
|
},
|
|
{
|
|
path: "/identity/update/:identityName?",
|
|
name: SettingsRouteName.UPDATE_IDENTITY,
|
|
component: (): Promise<EsModuleComponent> =>
|
|
import(
|
|
/* webpackChunkName: "EditIdentity" */ "@/views/Account/children/EditIdentity.vue"
|
|
),
|
|
props: (route: Route): Record<string, unknown> => ({
|
|
identityName: route.params.identityName,
|
|
isUpdate: true,
|
|
}),
|
|
meta: { requiredAuth: true },
|
|
},
|
|
],
|
|
},
|
|
];
|