2022-04-20 06:38:47 +00:00
|
|
|
import { NounEnum, Verb } from 'fyo/telemetry/types';
|
|
|
|
import Dashboard from 'src/pages/Dashboard/Dashboard.vue';
|
2022-04-25 10:37:25 +00:00
|
|
|
import GetStarted from 'src/pages/GetStarted.vue';
|
2022-04-21 13:08:36 +00:00
|
|
|
// import ChartOfAccounts from 'src/pages/ChartOfAccounts.vue';
|
|
|
|
// import DataImport from 'src/pages/DataImport.vue';
|
|
|
|
// import InvoiceForm from 'src/pages/InvoiceForm.vue';
|
|
|
|
// import JournalEntryForm from 'src/pages/JournalEntryForm.vue';
|
|
|
|
// import ListView from 'src/pages/ListView/ListView.vue';
|
|
|
|
// import PrintView from 'src/pages/PrintView/PrintView.vue';
|
|
|
|
// import QuickEditForm from 'src/pages/QuickEditForm.vue';
|
|
|
|
// import Report from 'src/pages/Report.vue';
|
2022-04-26 10:12:33 +00:00
|
|
|
import Settings from 'src/pages/Settings/Settings.vue';
|
2022-04-20 10:41:27 +00:00
|
|
|
import { createRouter, createWebHistory, RouteRecordRaw } from 'vue-router';
|
2022-04-20 06:38:47 +00:00
|
|
|
import { fyo } from './initFyo';
|
2018-06-27 14:36:42 +00:00
|
|
|
|
2022-04-20 10:41:27 +00:00
|
|
|
const routes: RouteRecordRaw[] = [
|
2019-07-25 09:50:48 +00:00
|
|
|
{
|
|
|
|
path: '/',
|
2021-11-24 09:08:13 +00:00
|
|
|
component: Dashboard,
|
2019-07-25 09:50:48 +00:00
|
|
|
},
|
2019-12-21 14:46:50 +00:00
|
|
|
{
|
|
|
|
path: '/get-started',
|
2021-11-24 09:08:13 +00:00
|
|
|
component: GetStarted,
|
2019-12-21 14:46:50 +00:00
|
|
|
},
|
2022-04-25 10:37:25 +00:00
|
|
|
/*
|
2019-11-19 19:10:01 +00:00
|
|
|
{
|
|
|
|
path: '/edit/JournalEntry/:name',
|
|
|
|
name: 'JournalEntryForm',
|
|
|
|
components: {
|
|
|
|
default: JournalEntryForm,
|
2021-11-24 09:08:13 +00:00
|
|
|
edit: QuickEditForm,
|
2019-11-19 19:10:01 +00:00
|
|
|
},
|
|
|
|
props: {
|
2021-11-24 09:08:13 +00:00
|
|
|
default: (route) => {
|
2019-12-21 14:46:50 +00:00
|
|
|
// for sidebar item active state
|
|
|
|
route.params.doctype = 'JournalEntry';
|
|
|
|
return {
|
|
|
|
doctype: 'JournalEntry',
|
2021-11-24 09:08:13 +00:00
|
|
|
name: route.params.name,
|
2019-12-21 14:46:50 +00:00
|
|
|
};
|
|
|
|
},
|
2021-11-24 09:08:13 +00:00
|
|
|
edit: (route) => route.query,
|
|
|
|
},
|
2019-11-19 19:10:01 +00:00
|
|
|
},
|
2018-06-27 14:36:42 +00:00
|
|
|
{
|
2019-10-13 21:56:20 +00:00
|
|
|
path: '/edit/:doctype/:name',
|
2019-10-11 09:55:50 +00:00
|
|
|
name: 'InvoiceForm',
|
|
|
|
components: {
|
|
|
|
default: InvoiceForm,
|
2021-11-24 09:08:13 +00:00
|
|
|
edit: QuickEditForm,
|
2019-10-11 09:55:50 +00:00
|
|
|
},
|
|
|
|
props: {
|
|
|
|
default: true,
|
2021-11-24 09:08:13 +00:00
|
|
|
edit: (route) => route.query,
|
|
|
|
},
|
2019-10-11 09:55:50 +00:00
|
|
|
},
|
|
|
|
{
|
2022-03-10 06:36:37 +00:00
|
|
|
path: '/list/:doctype/:fieldname?/:value?',
|
2018-10-10 18:51:03 +00:00
|
|
|
name: 'ListView',
|
2019-10-11 09:55:50 +00:00
|
|
|
components: {
|
|
|
|
default: ListView,
|
2021-11-24 09:08:13 +00:00
|
|
|
edit: QuickEditForm,
|
2019-10-04 20:18:10 +00:00
|
|
|
},
|
2019-10-11 09:55:50 +00:00
|
|
|
props: {
|
2021-11-24 09:08:13 +00:00
|
|
|
default: (route) => {
|
2022-04-20 10:41:27 +00:00
|
|
|
const { doctype, fieldname, value } = route.params;
|
|
|
|
let { filters } = route.params;
|
|
|
|
|
2022-03-10 06:36:37 +00:00
|
|
|
if (filters === undefined && fieldname && value) {
|
2022-04-20 10:41:27 +00:00
|
|
|
// @ts-ignore
|
|
|
|
filters = { [fieldname as string]: value };
|
2022-03-10 06:36:37 +00:00
|
|
|
}
|
|
|
|
|
2019-10-11 09:55:50 +00:00
|
|
|
return {
|
|
|
|
doctype,
|
2021-11-24 09:08:13 +00:00
|
|
|
filters,
|
2019-10-11 09:55:50 +00:00
|
|
|
};
|
|
|
|
},
|
2021-11-24 09:08:13 +00:00
|
|
|
edit: (route) => route.query,
|
|
|
|
},
|
2018-06-27 14:36:42 +00:00
|
|
|
},
|
2018-10-15 12:05:01 +00:00
|
|
|
{
|
|
|
|
path: '/print/:doctype/:name',
|
|
|
|
name: 'PrintView',
|
|
|
|
component: PrintView,
|
2021-11-24 09:08:13 +00:00
|
|
|
props: true,
|
2018-10-22 18:10:22 +00:00
|
|
|
},
|
2018-06-27 14:36:42 +00:00
|
|
|
{
|
|
|
|
path: '/report/:reportName',
|
|
|
|
name: 'Report',
|
|
|
|
component: Report,
|
2021-11-24 09:08:13 +00:00
|
|
|
props: true,
|
2018-10-10 10:32:56 +00:00
|
|
|
},
|
2019-02-18 05:42:04 +00:00
|
|
|
{
|
2019-12-23 08:26:41 +00:00
|
|
|
path: '/chart-of-accounts',
|
2019-02-18 05:42:04 +00:00
|
|
|
name: 'Chart Of Accounts',
|
2019-10-13 21:18:18 +00:00
|
|
|
components: {
|
|
|
|
default: ChartOfAccounts,
|
2021-11-24 09:08:13 +00:00
|
|
|
edit: QuickEditForm,
|
2019-10-13 21:18:18 +00:00
|
|
|
},
|
|
|
|
props: {
|
|
|
|
default: true,
|
2021-11-24 09:08:13 +00:00
|
|
|
edit: (route) => route.query,
|
|
|
|
},
|
|
|
|
},
|
2022-02-21 10:56:57 +00:00
|
|
|
{
|
|
|
|
path: '/data_import',
|
|
|
|
name: 'Data Import',
|
|
|
|
component: DataImport,
|
|
|
|
},
|
2022-04-26 10:12:33 +00:00
|
|
|
*/
|
2021-11-24 09:08:13 +00:00
|
|
|
{
|
|
|
|
path: '/settings',
|
|
|
|
name: 'Settings',
|
|
|
|
component: Settings,
|
|
|
|
props: true,
|
|
|
|
},
|
2018-10-10 18:51:03 +00:00
|
|
|
];
|
2018-06-27 14:36:42 +00:00
|
|
|
|
2022-04-20 06:38:47 +00:00
|
|
|
const router = createRouter({ routes, history: createWebHistory() });
|
2019-10-03 13:46:12 +00:00
|
|
|
|
2022-04-20 10:41:27 +00:00
|
|
|
function removeDetails(path: string) {
|
2022-03-11 06:14:38 +00:00
|
|
|
if (!path) {
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
const match = path.match(/edit=1/);
|
|
|
|
if (!match) {
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2022-04-20 10:41:27 +00:00
|
|
|
return path.slice(0, match.index! + 4);
|
2022-03-11 06:14:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
router.afterEach((to, from) => {
|
|
|
|
const more = {
|
|
|
|
from: removeDetails(from.fullPath),
|
|
|
|
to: removeDetails(to.fullPath),
|
|
|
|
};
|
|
|
|
|
2022-04-20 06:38:47 +00:00
|
|
|
fyo.telemetry.log(Verb.Navigated, NounEnum.Route, more);
|
2022-03-09 10:48:26 +00:00
|
|
|
});
|
|
|
|
|
2019-10-03 13:46:12 +00:00
|
|
|
export default router;
|