@opengis/bi 1.2.30 → 1.2.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. package/README.md +92 -92
  2. package/dist/bi.js +1 -1
  3. package/dist/bi.umd.cjs +88 -86
  4. package/dist/{import-file-B4o9p2_2.js → import-file-D-ISqB7l.js} +1772 -1593
  5. package/dist/style.css +1 -1
  6. package/dist/{vs-funnel-bar-BOWwPnjW.js → vs-funnel-bar-aoZzvriV.js} +3 -3
  7. package/dist/{vs-list-D8jGusRT.js → vs-list-CBkyJSBj.js} +53 -32
  8. package/dist/{vs-map-BGplOwpB.js → vs-map-C3C11qmT.js} +102 -91
  9. package/dist/{vs-map-cluster-CHQJV2As.js → vs-map-cluster-BsPmHIMx.js} +91 -81
  10. package/dist/{vs-number-jPqxFQ6d.js → vs-number-d58ftpH5.js} +3 -3
  11. package/dist/{vs-table-BDgIvJbY.js → vs-table-BHa5Velm.js} +6 -6
  12. package/dist/{vs-text-DcHOffy9.js → vs-text-Bq87gMTx.js} +4 -4
  13. package/package.json +77 -75
  14. package/plugin.js +21 -22
  15. package/server/helpers/mdToHTML.js +17 -17
  16. package/server/migrations/bi.dataset.sql +46 -46
  17. package/server/migrations/bi.sql +115 -112
  18. package/server/plugins/docs.js +48 -48
  19. package/server/plugins/hook.js +89 -89
  20. package/server/plugins/vite.js +81 -81
  21. package/server/routes/dashboard/controllers/dashboard.import.js +103 -103
  22. package/server/routes/dashboard/controllers/dashboard.js +158 -157
  23. package/server/routes/dashboard/controllers/dashboard.list.js +60 -60
  24. package/server/routes/dashboard/controllers/utils/yaml.js +11 -11
  25. package/server/routes/dashboard/index.mjs +26 -26
  26. package/server/routes/data/controllers/data.js +230 -229
  27. package/server/routes/data/controllers/util/chartSQL.js +49 -49
  28. package/server/routes/data/controllers/util/normalizeData.js +65 -65
  29. package/server/routes/data/index.mjs +38 -38
  30. package/server/routes/dataset/controllers/bi.dataset.list.js +29 -29
  31. package/server/routes/dataset/controllers/bi.db.list.js +19 -19
  32. package/server/routes/dataset/controllers/comment.js +55 -55
  33. package/server/routes/dataset/controllers/createDatasetPost.js +134 -134
  34. package/server/routes/dataset/controllers/data.js +149 -149
  35. package/server/routes/dataset/controllers/dbTablePreview.js +58 -58
  36. package/server/routes/dataset/controllers/dbTables.js +34 -34
  37. package/server/routes/dataset/controllers/delete.js +40 -40
  38. package/server/routes/dataset/controllers/deleteDataset.js +52 -52
  39. package/server/routes/dataset/controllers/editDataset.js +90 -90
  40. package/server/routes/dataset/controllers/export.js +214 -214
  41. package/server/routes/dataset/controllers/form.js +99 -99
  42. package/server/routes/dataset/controllers/format.js +46 -46
  43. package/server/routes/dataset/controllers/insert.js +47 -47
  44. package/server/routes/dataset/controllers/table.js +68 -68
  45. package/server/routes/dataset/controllers/update.js +43 -43
  46. package/server/routes/dataset/index.mjs +132 -132
  47. package/server/routes/dataset/utils/convertJSONToCSV.js +17 -17
  48. package/server/routes/dataset/utils/convertJSONToXls.js +47 -47
  49. package/server/routes/dataset/utils/createTableQuery.js +59 -59
  50. package/server/routes/dataset/utils/datasetForms.js +1 -1
  51. package/server/routes/dataset/utils/descriptionList.js +45 -45
  52. package/server/routes/dataset/utils/downloadRemoteFile.js +58 -58
  53. package/server/routes/dataset/utils/executeQuery.js +46 -46
  54. package/server/routes/dataset/utils/getLayersData.js +106 -106
  55. package/server/routes/dataset/utils/getTableData.js +46 -46
  56. package/server/routes/dataset/utils/insertDataQuery.js +12 -12
  57. package/server/routes/dataset/utils/metaFormat.js +24 -24
  58. package/server/routes/edit/controllers/dashboard.add.js +36 -36
  59. package/server/routes/edit/controllers/dashboard.delete.js +39 -39
  60. package/server/routes/edit/controllers/dashboard.edit.js +61 -61
  61. package/server/routes/edit/controllers/widget.add.js +78 -78
  62. package/server/routes/edit/controllers/widget.del.js +58 -58
  63. package/server/routes/edit/controllers/widget.edit.js +115 -115
  64. package/server/routes/edit/index.mjs +33 -33
  65. package/server/routes/map/controllers/cluster.js +125 -125
  66. package/server/routes/map/controllers/clusterVtile.js +166 -166
  67. package/server/routes/map/controllers/geojson.js +127 -127
  68. package/server/routes/map/controllers/heatmap.js +118 -118
  69. package/server/routes/map/controllers/map.js +69 -69
  70. package/server/routes/map/controllers/utils/downloadClusterData.js +44 -44
  71. package/server/routes/map/controllers/vtile.js +183 -183
  72. package/server/routes/map/index.mjs +32 -32
  73. package/server/templates/page/login.html +58 -58
  74. package/server/utils/getWidget.js +118 -117
  75. package/utils.js +12 -12
@@ -1,157 +1,158 @@
1
- import yaml from 'js-yaml';
2
- import {
3
- pgClients,
4
- getTemplatePath,
5
- getTemplate,
6
- getPGAsync,
7
- getMeta,
8
- } from '@opengis/fastify-table/utils.js';
9
-
10
- export default async function dashboard({
11
- pg: pg1 = pgClients.client, params = {},
12
- }) {
13
- const time = Date.now();
14
- const { id } = params;
15
-
16
- if (!id) {
17
- return { message: 'not enough params: dashboard required', status: 400 };
18
- }
19
- const dashboards = getTemplatePath('dashboard');
20
-
21
- const fileDashboard = dashboards.find((el) => el[0] === id);
22
- if (!fileDashboard) {
23
- const sql = `select title, description, table_name, panels, grid, widgets, filters, style, words, db, public
24
- from bi.dashboard where $1 in (dashboard_id, name)`;
25
-
26
- const data = await pg1.query(sql, [id]).then(el => el.rows?.[0] || {});
27
-
28
- let pg = pg1;
29
- try {
30
- pg = data.pg || (data.db ? await getPGAsync(data.db) : null) || pg1;
31
- } catch (err) {
32
- data.error = err.toString();
33
- }
34
-
35
- data.type = 'bd';
36
- const { table_name: table } = data;
37
-
38
- if (!table) {
39
- return { message: 'not enough params: table required', status: 400 };
40
- }
41
-
42
- const loadTemplate = pg.pk?.['admin.doc_template'] ? await pg.query(
43
- 'select body from admin.doc_template where doc_type=5 and title=$1',
44
- [table]
45
- ).then(el => el.rows?.[0]?.body) : null;
46
-
47
- const sqlList = loadTemplate?.sql ? loadTemplate?.sql
48
- ?.filter?.(el => !el.disabled && el?.sql?.replace)
49
- ?.map?.((el, i) => `left join lateral (${el.sql.replace(/limit 1/ig, '')}) t${i} on 1=1`)?.join?.(' ') : '';
50
-
51
- const { fields = [] } = table && pg.pk?.[loadTemplate?.table || table] ? await pg.query(`select * from ${loadTemplate?.table || table} t ${sqlList || ''} limit 0`) : {};
52
-
53
- data?.widgets?.forEach?.(el => {
54
- const { style, data = {}, type, title, x, metrics } = el;
55
- el.yml = yaml.dump({ title, type, data: { x, metrics, ...data }, style, })
56
- // el.yml = yaml.dump({ style, data, type, title });
57
- });
58
-
59
- data.panels?.forEach?.(el => {
60
- const { title, type } = data?.widgets?.find(item => item.name === el.widget) || {};
61
- Object.assign(el, { title, type });
62
- });
63
-
64
- const meta = table ? await getMeta({ pg, table: loadTemplate?.table || table }) : {};
65
- const columnIndexes = meta?.columns?.reduce((acc, curr, idx) => Object.assign(acc, { [curr.name]: idx }), {}) || [];
66
-
67
- const columns = fields?.map(el => ({ name: el.name, title: meta?.columns[columnIndexes[el.name]]?.title || el.name, type: pg.pgType?.[el.dataTypeID] }));
68
-
69
- return {
70
- ...data || {},
71
- widgets: data?.widgets?.filter?.(el => el?.widget_id) || [],
72
- panels: data?.panels?.filter?.(el => el?.widget) || [],
73
- geom: !meta?.geom,
74
- error:
75
- table && !pg.pk?.[loadTemplate?.table || table] ? `table pkey not found: ${loadTemplate?.table || table}` : undefined,
76
- table_name: table,
77
- templateTable: loadTemplate?.table,
78
- time: Date.now() - time,
79
- columns,
80
- };
81
- }
82
-
83
- const fileData = await getTemplate('dashboard', id);
84
- const index = fileData.find((el) => el[0] === 'index.yml')[1];
85
-
86
- if (!index) {
87
- return { message: `not found ${id}`, status: 404 };
88
- }
89
-
90
- const data = index;
91
- data.type = 'file';
92
- const { table } = data?.data || { table: data?.table_name };
93
-
94
- let pg = pg1;
95
- try {
96
- pg = data.pg || (data.db ? await getPGAsync(data.db) : null) || pg1;
97
- } catch (err) {
98
- data.error = err.toString();
99
- }
100
-
101
- const { fields = [] } = table ? await pg.query(`select * from ${table} limit 0`) : {};
102
-
103
- const meta = await getMeta({ pg: pg1, table });
104
-
105
- const columns = meta?.columns
106
- ?.filter(el => fields.map(field => field.name).includes(el.name))
107
- ?.map(el => ({ name: el.name, title: el.title, type: pg.pgType?.[el.dataTypeID] }));
108
-
109
- const checks = index?.filters?.filter((el) => el?.id && fields.map((el) => el?.name).includes(el?.id) && el?.type === 'Check');
110
- if (checks?.length) {
111
- await Promise.all(checks.map(async (el) => {
112
- if (el?.data) {
113
- const options = await getTemplate('cls', el.data);
114
- Object.assign(el, { options });
115
- } else if (index?.table_name || index?.table) {
116
- const { rows = [] } = await pg.query(`select "${el.id}" as id, count(*) from ${index?.table_name || index?.table} group by "${el.id}"`);
117
- Object.assign(el, { options: rows });
118
- }
119
- }));
120
- }
121
- const ranges = index?.filters?.filter((el) => el?.id && fields.map((el) => el?.name).includes(el?.id) && el?.type === 'Range');
122
- if (ranges?.length) {
123
- await Promise.all(ranges.map(async (el) => {
124
- const rows = await pg.query(`select array[
125
- percentile_cont(0) within group (order by ${el.id}), percentile_cont(0.25) within group (order by ${el.id}),
126
- percentile_cont(0.5) within group (order by ${el.id}), percentile_cont(0.75) within group (order by ${el.id}),
127
- percentile_cont(1.0) within group (order by ${el.id})
128
- ] from ${index?.table_name || index?.table}`).then(el => el.rows?.[0]?.array || []);
129
- Object.assign(el, { options: rows });
130
- }));
131
- }
132
-
133
- // console.log(fileData)
134
- const widgets = fileData
135
- .filter((el) => el[0] !== 'index.yml')
136
- .map((el) =>
137
- el[1].data
138
- ? {
139
- name: el[0].split('.')[0],
140
- type: el[1].type,
141
- title: el[1].title,
142
- style: el[1].style,
143
- data: el[1].data,
144
-
145
- }
146
- : { name: el[0].split('.')[0], title: el[1] }
147
- );
148
-
149
- return {
150
- ...data,
151
- geom: !!meta?.geom,
152
- table_name: table,
153
- time: Date.now() - time,
154
- columns,
155
- widgets,
156
- };
157
- }
1
+ import yaml from 'js-yaml';
2
+ import {
3
+ pgClients,
4
+ getTemplatePath,
5
+ getTemplate,
6
+ getPGAsync,
7
+ getMeta,
8
+ } from '@opengis/fastify-table/utils.js';
9
+
10
+ export default async function dashboard({
11
+ pg: pg1 = pgClients.client, params = {},
12
+ }) {
13
+ const time = Date.now();
14
+ const { id } = params;
15
+
16
+ if (!id) {
17
+ return { message: 'not enough params: dashboard required', status: 400 };
18
+ }
19
+ const dashboards = getTemplatePath('dashboard');
20
+
21
+ const fileDashboard = dashboards.find((el) => el[0] === id);
22
+ if (!fileDashboard) {
23
+ const sql = `select title, description, table_name, panels, grid, widgets, filters, style, words, db, public, updated_at as last_update
24
+ from bi.dashboard where $1 in (dashboard_id, name)`;
25
+
26
+ const data = await pg1.query(sql, [id]).then(el => el.rows?.[0] || {});
27
+
28
+ let pg = pg1;
29
+ try {
30
+ const db = typeof data.db === 'string' && data.db.startsWith('{') ? JSON.parse(data.db) : { database: data.db };
31
+ pg = data.pg || (data.db ? await getPGAsync(db) : null) || pg1;
32
+ } catch (err) {
33
+ data.error = err.toString();
34
+ }
35
+
36
+ data.type = 'bd';
37
+ const { table_name: table } = data;
38
+
39
+ if (!table) {
40
+ return { message: 'not enough params: table required', status: 400 };
41
+ }
42
+
43
+ const loadTemplate = pg.pk?.['admin.doc_template'] ? await pg.query(
44
+ 'select body from admin.doc_template where doc_type=5 and title=$1',
45
+ [table]
46
+ ).then(el => el.rows?.[0]?.body) : null;
47
+
48
+ const sqlList = loadTemplate?.sql ? loadTemplate?.sql
49
+ ?.filter?.(el => !el.disabled && el?.sql?.replace)
50
+ ?.map?.((el, i) => `left join lateral (${el.sql.replace(/limit 1/ig, '')}) t${i} on 1=1`)?.join?.(' ') : '';
51
+
52
+ const { fields = [] } = table && pg.pk?.[loadTemplate?.table || table] ? await pg.query(`select * from ${loadTemplate?.table || table} t ${sqlList || ''} limit 0`) : {};
53
+
54
+ data?.widgets?.forEach?.(el => {
55
+ const { style, data = {}, type, title, x, metrics } = el;
56
+ el.yml = yaml.dump({ title, type, data: { x, metrics, ...data }, style, })
57
+ // el.yml = yaml.dump({ style, data, type, title });
58
+ });
59
+
60
+ data.panels?.forEach?.(el => {
61
+ const { title, type } = data?.widgets?.find(item => item.name === el.widget) || {};
62
+ Object.assign(el, { title, type });
63
+ });
64
+
65
+ const meta = table ? await getMeta({ pg, table: loadTemplate?.table || table }) : {};
66
+ const columnIndexes = meta?.columns?.reduce((acc, curr, idx) => Object.assign(acc, { [curr.name]: idx }), {}) || [];
67
+
68
+ const columns = fields?.map(el => ({ name: el.name, title: meta?.columns[columnIndexes[el.name]]?.title || el.name, type: pg.pgType?.[el.dataTypeID] }));
69
+
70
+ return {
71
+ ...data || {},
72
+ widgets: data?.widgets?.filter?.(el => el?.widget_id) || [],
73
+ panels: data?.panels?.filter?.(el => el?.widget) || [],
74
+ geom: !meta?.geom,
75
+ error:
76
+ table && !pg.pk?.[loadTemplate?.table || table] ? `table pkey not found: ${loadTemplate?.table || table}` : undefined,
77
+ table_name: table,
78
+ templateTable: loadTemplate?.table,
79
+ time: Date.now() - time,
80
+ columns,
81
+ };
82
+ }
83
+
84
+ const fileData = await getTemplate('dashboard', id);
85
+ const index = fileData.find((el) => el[0] === 'index.yml')[1];
86
+
87
+ if (!index) {
88
+ return { message: `not found ${id}`, status: 404 };
89
+ }
90
+
91
+ const data = index;
92
+ data.type = 'file';
93
+ const { table } = data?.data || { table: data?.table_name };
94
+
95
+ let pg = pg1;
96
+ try {
97
+ pg = data.pg || (data.db ? await getPGAsync(data.db) : null) || pg1;
98
+ } catch (err) {
99
+ data.error = err.toString();
100
+ }
101
+
102
+ const { fields = [] } = table ? await pg.query(`select * from ${table} limit 0`) : {};
103
+
104
+ const meta = await getMeta({ pg: pg1, table });
105
+
106
+ const columns = meta?.columns
107
+ ?.filter(el => fields.map(field => field.name).includes(el.name))
108
+ ?.map(el => ({ name: el.name, title: el.title, type: pg.pgType?.[el.dataTypeID] }));
109
+
110
+ const checks = index?.filters?.filter((el) => el?.id && fields.map((el) => el?.name).includes(el?.id) && el?.type === 'Check');
111
+ if (checks?.length) {
112
+ await Promise.all(checks.map(async (el) => {
113
+ if (el?.data) {
114
+ const options = await getTemplate('cls', el.data);
115
+ Object.assign(el, { options });
116
+ } else if (index?.table_name || index?.table) {
117
+ const { rows = [] } = await pg.query(`select "${el.id}" as id, count(*) from ${index?.table_name || index?.table} group by "${el.id}"`);
118
+ Object.assign(el, { options: rows });
119
+ }
120
+ }));
121
+ }
122
+ const ranges = index?.filters?.filter((el) => el?.id && fields.map((el) => el?.name).includes(el?.id) && el?.type === 'Range');
123
+ if (ranges?.length) {
124
+ await Promise.all(ranges.map(async (el) => {
125
+ const rows = await pg.query(`select array[
126
+ percentile_cont(0) within group (order by ${el.id}), percentile_cont(0.25) within group (order by ${el.id}),
127
+ percentile_cont(0.5) within group (order by ${el.id}), percentile_cont(0.75) within group (order by ${el.id}),
128
+ percentile_cont(1.0) within group (order by ${el.id})
129
+ ] from ${index?.table_name || index?.table}`).then(el => el.rows?.[0]?.array || []);
130
+ Object.assign(el, { options: rows });
131
+ }));
132
+ }
133
+
134
+ // console.log(fileData)
135
+ const widgets = fileData
136
+ .filter((el) => el[0] !== 'index.yml')
137
+ .map((el) =>
138
+ el[1].data
139
+ ? {
140
+ name: el[0].split('.')[0],
141
+ type: el[1].type,
142
+ title: el[1].title,
143
+ style: el[1].style,
144
+ data: el[1].data,
145
+
146
+ }
147
+ : { name: el[0].split('.')[0], title: el[1] }
148
+ );
149
+
150
+ return {
151
+ ...data,
152
+ geom: !!meta?.geom,
153
+ table_name: table,
154
+ time: Date.now() - time,
155
+ columns,
156
+ widgets,
157
+ };
158
+ }
@@ -1,60 +1,60 @@
1
- import { pgClients, getTemplatePath, getTemplate, getTemplateSync } from '@opengis/fastify-table/utils.js';
2
-
3
- const dirContent = getTemplatePath('dashboard').map(([filename, filepath]) => {
4
- const obj = getTemplateSync('dashboard', filename);
5
- const index = obj?.find?.((el) => el[0] === 'index.yml')?.[1];
6
- const { table_name, description, title } = index || {};
7
-
8
- return { name: filename, path: filepath, type: 'file', title, description, table_name };
9
- });
10
-
11
- const maxLimit = 100;
12
-
13
- export default async function dashboardList({
14
- pg = pgClients.client, query = {}, user = {}
15
- }) {
16
- const time = Date.now();
17
- const { type = 'file', page, search, sql } = query;
18
-
19
- const limit = Math.min(maxLimit, +(query.limit || 15));
20
- const offset = page && page > 0 ? (page - 1) * limit : 0;
21
-
22
- const dir = type === 'file' ? dirContent : [];
23
-
24
- const where = [search ? `lower(title) ~ $1` : null, type === 'viewer' ? `left(table_name,5)='demo.'` : null].filter(Boolean).join(' and ') || 'true';
25
- const q1 = `select count(*)::int as total, count(*) filter(where ${where})::int as filtered from bi.dashboard`;
26
-
27
- const q = `select dashboard_id as name, 'db' as type, title, description, table_name, words, public from bi.dashboard where ${where} limit ${limit} offset ${offset}`;
28
-
29
- if (user?.user_type?.includes('admin') && ['db', 'viewer'].includes(type) && sql) {
30
- return `${q1};${q}`;
31
- }
32
-
33
- const args = [search].filter(Boolean);
34
- const { total = 0, filtered = 0 } = ['db', 'viewer'].includes(type) ? await pg.query(q1, args).then(el => el.rows?.[0] || {}) : {};
35
-
36
- const rows = ['db', 'viewer'].includes(type) ? await pg.query(q, args).then(el => el.rows || []) : [];
37
-
38
- if (type === 'viewer') {
39
- return {
40
- time: Date.now() - time,
41
- db: pg.options?.database,
42
- total,
43
- filtered,
44
- count: rows.length,
45
- rows,
46
- };
47
- }
48
-
49
- const list = (user?.user_type?.includes('admin') ? dir : dir.map(el => ({ ...el, path: undefined }))).concat(rows);
50
-
51
- const res = {
52
- time: Date.now() - time,
53
- db: pg.options?.database,
54
- total,
55
- filtered,
56
- count: rows.length,
57
- rows: list,
58
- };
59
- return res;
60
- }
1
+ import { pgClients, getTemplatePath, getTemplate, getTemplateSync } from '@opengis/fastify-table/utils.js';
2
+
3
+ const dirContent = getTemplatePath('dashboard').map(([filename, filepath]) => {
4
+ const obj = getTemplateSync('dashboard', filename);
5
+ const index = obj?.find?.((el) => el[0] === 'index.yml')?.[1];
6
+ const { table_name, description, title } = index || {};
7
+
8
+ return { name: filename, path: filepath, type: 'file', title, description, table_name };
9
+ });
10
+
11
+ const maxLimit = 100;
12
+
13
+ export default async function dashboardList({
14
+ pg = pgClients.client, query = {}, user = {}
15
+ }) {
16
+ const time = Date.now();
17
+ const { type = 'file', page, search, sql } = query;
18
+
19
+ const limit = Math.min(maxLimit, +(query.limit || 15));
20
+ const offset = page && page > 0 ? (page - 1) * limit : 0;
21
+
22
+ const dir = type === 'file' ? dirContent : [];
23
+
24
+ const where = [search ? `lower(title) ~ $1` : null, type === 'viewer' ? `left(table_name,5)='demo.'` : null].filter(Boolean).join(' and ') || 'true';
25
+ const q1 = `select count(*)::int as total, count(*) filter(where ${where})::int as filtered from bi.dashboard`;
26
+
27
+ const q = `select dashboard_id as name, 'db' as type, title, description, table_name, words, public, updated_at as last_update from bi.dashboard where ${where} limit ${limit} offset ${offset}`;
28
+
29
+ if (user?.user_type?.includes('admin') && ['db', 'viewer'].includes(type) && sql) {
30
+ return `${q1};${q}`;
31
+ }
32
+
33
+ const args = [search].filter(Boolean);
34
+ const { total = 0, filtered = 0 } = ['db', 'viewer'].includes(type) ? await pg.query(q1, args).then(el => el.rows?.[0] || {}) : {};
35
+
36
+ const rows = ['db', 'viewer'].includes(type) ? await pg.query(q, args).then(el => el.rows || []) : [];
37
+
38
+ if (type === 'viewer') {
39
+ return {
40
+ time: Date.now() - time,
41
+ db: pg.options?.database,
42
+ total,
43
+ filtered,
44
+ count: rows.length,
45
+ rows,
46
+ };
47
+ }
48
+
49
+ const list = (user?.user_type?.includes('admin') ? dir : dir.map(el => ({ ...el, path: undefined }))).concat(rows);
50
+
51
+ const res = {
52
+ time: Date.now() - time,
53
+ db: pg.options?.database,
54
+ total,
55
+ filtered,
56
+ count: rows.length,
57
+ rows: list,
58
+ };
59
+ return res;
60
+ }
@@ -1,11 +1,11 @@
1
- import yaml from 'js-yaml';
2
-
3
- yaml.loadSafe = (yml) => {
4
- try {
5
- return yaml.load(yml);
6
- } catch (err) {
7
- return { error: err.toString() };
8
- }
9
- };
10
-
11
- export default yaml;
1
+ import yaml from 'js-yaml';
2
+
3
+ yaml.loadSafe = (yml) => {
4
+ try {
5
+ return yaml.load(yml);
6
+ } catch (err) {
7
+ return { error: err.toString() };
8
+ }
9
+ };
10
+
11
+ export default yaml;
@@ -1,26 +1,26 @@
1
- import dashboard from './controllers/dashboard.js';
2
- import dashboardList from './controllers/dashboard.list.js';
3
- import dashboardImport from './controllers/dashboard.import.js';
4
-
5
- const biSchema = {
6
- type: 'object',
7
- properties: {
8
- querystring: {
9
- widget: { type: 'string', pattern: '^([\\d\\w]+)$' },
10
- dashboard: { type: 'string', pattern: '^([\\d\\w]+)$' },
11
- list: { type: 'string', pattern: '^([\\d])$' },
12
- sql: { type: 'string', pattern: '^([\\d])$' },
13
- },
14
- params: {
15
- id: { type: 'string', pattern: '^([\\d\\w]+)$' },
16
- },
17
- },
18
- };
19
-
20
- const policy = ['public'];
21
-
22
- export default async function route(fastify) {
23
- fastify.get(`/bi-dashboard/:id`, { config: { policy }, schema: biSchema }, dashboard);
24
- fastify.get(`/bi-dashboard`, { config: { policy } }, dashboardList);
25
- fastify.get(`/bi-dashboard-import`, { config: { policy } }, dashboardImport);
26
- }
1
+ import dashboard from './controllers/dashboard.js';
2
+ import dashboardList from './controllers/dashboard.list.js';
3
+ import dashboardImport from './controllers/dashboard.import.js';
4
+
5
+ const biSchema = {
6
+ type: 'object',
7
+ properties: {
8
+ querystring: {
9
+ widget: { type: 'string', pattern: '^([\\d\\w]+)$' },
10
+ dashboard: { type: 'string', pattern: '^([\\d\\w]+)$' },
11
+ list: { type: 'string', pattern: '^([\\d])$' },
12
+ sql: { type: 'string', pattern: '^([\\d])$' },
13
+ },
14
+ params: {
15
+ id: { type: 'string', pattern: '^([\\d\\w]+)$' },
16
+ },
17
+ },
18
+ };
19
+
20
+ const policy = ['public'];
21
+
22
+ export default async function route(fastify) {
23
+ fastify.get(`/bi-dashboard/:id`, { config: { policy }, schema: biSchema }, dashboard);
24
+ fastify.get(`/bi-dashboard`, { config: { policy } }, dashboardList);
25
+ fastify.get(`/bi-dashboard-import`, { config: { policy } }, dashboardImport);
26
+ }