@opengis/bi 1.2.32 → 1.2.35
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.
- package/README.md +97 -92
- package/dist/bi.js +1 -1
- package/dist/bi.umd.cjs +68 -68
- package/dist/{import-file-D-ISqB7l.js → import-file-Ds-E7FRA.js} +1672 -1552
- package/dist/style.css +1 -1
- package/dist/{vs-funnel-bar-aoZzvriV.js → vs-funnel-bar-CWSZGLeM.js} +3 -3
- package/dist/{vs-list-CBkyJSBj.js → vs-list-hyfVhVWJ.js} +2 -2
- package/dist/{vs-map-C3C11qmT.js → vs-map-Izi22DyD.js} +3 -3
- package/dist/{vs-map-cluster-BsPmHIMx.js → vs-map-cluster-Mqtz-I8h.js} +3 -3
- package/dist/{vs-number-d58ftpH5.js → vs-number-kaERn0pu.js} +3 -3
- package/dist/{vs-table-BHa5Velm.js → vs-table-oIk-eYt8.js} +6 -6
- package/dist/{vs-text-Bq87gMTx.js → vs-text-L9R9n3i7.js} +4 -4
- package/package.json +77 -77
- package/plugin.js +21 -21
- package/server/helpers/mdToHTML.js +17 -17
- package/server/migrations/bi.dataset.sql +46 -46
- package/server/migrations/bi.sql +114 -114
- package/server/plugins/docs.js +48 -48
- package/server/plugins/hook.js +89 -89
- package/server/plugins/vite.js +81 -81
- package/server/routes/dashboard/controllers/dashboard.import.js +103 -103
- package/server/routes/dashboard/controllers/dashboard.js +158 -158
- package/server/routes/dashboard/controllers/dashboard.list.js +60 -60
- package/server/routes/dashboard/controllers/utils/yaml.js +11 -11
- package/server/routes/dashboard/index.mjs +26 -26
- package/server/routes/data/controllers/data.js +230 -230
- package/server/routes/data/controllers/util/chartSQL.js +49 -49
- package/server/routes/data/controllers/util/normalizeData.js +65 -65
- package/server/routes/data/index.mjs +38 -38
- package/server/routes/dataset/controllers/bi.dataset.list.js +29 -29
- package/server/routes/dataset/controllers/bi.db.list.js +19 -19
- package/server/routes/dataset/controllers/comment.js +55 -55
- package/server/routes/dataset/controllers/createDatasetPost.js +134 -134
- package/server/routes/dataset/controllers/data.js +149 -149
- package/server/routes/dataset/controllers/dbTablePreview.js +58 -58
- package/server/routes/dataset/controllers/dbTables.js +34 -34
- package/server/routes/dataset/controllers/delete.js +40 -40
- package/server/routes/dataset/controllers/deleteDataset.js +52 -52
- package/server/routes/dataset/controllers/editDataset.js +90 -90
- package/server/routes/dataset/controllers/export.js +214 -214
- package/server/routes/dataset/controllers/form.js +99 -99
- package/server/routes/dataset/controllers/format.js +46 -46
- package/server/routes/dataset/controllers/insert.js +47 -47
- package/server/routes/dataset/controllers/table.js +68 -68
- package/server/routes/dataset/controllers/update.js +43 -43
- package/server/routes/dataset/index.mjs +132 -132
- package/server/routes/dataset/utils/convertJSONToCSV.js +17 -17
- package/server/routes/dataset/utils/convertJSONToXls.js +47 -47
- package/server/routes/dataset/utils/createTableQuery.js +59 -59
- package/server/routes/dataset/utils/datasetForms.js +1 -1
- package/server/routes/dataset/utils/descriptionList.js +45 -45
- package/server/routes/dataset/utils/downloadRemoteFile.js +58 -58
- package/server/routes/dataset/utils/executeQuery.js +46 -46
- package/server/routes/dataset/utils/getLayersData.js +106 -106
- package/server/routes/dataset/utils/getTableData.js +46 -46
- package/server/routes/dataset/utils/insertDataQuery.js +12 -12
- package/server/routes/dataset/utils/metaFormat.js +24 -24
- package/server/routes/edit/controllers/dashboard.add.js +36 -36
- package/server/routes/edit/controllers/dashboard.delete.js +39 -39
- package/server/routes/edit/controllers/dashboard.edit.js +61 -61
- package/server/routes/edit/controllers/widget.add.js +78 -78
- package/server/routes/edit/controllers/widget.del.js +58 -58
- package/server/routes/edit/controllers/widget.edit.js +115 -115
- package/server/routes/edit/index.mjs +33 -33
- package/server/routes/map/controllers/cluster.js +125 -125
- package/server/routes/map/controllers/clusterVtile.js +166 -166
- package/server/routes/map/controllers/geojson.js +127 -127
- package/server/routes/map/controllers/heatmap.js +118 -118
- package/server/routes/map/controllers/map.js +69 -69
- package/server/routes/map/controllers/utils/downloadClusterData.js +44 -44
- package/server/routes/map/controllers/vtile.js +183 -183
- package/server/routes/map/index.mjs +32 -32
- package/server/templates/page/login.html +58 -58
- package/server/utils/getWidget.js +118 -118
- package/utils.js +12 -12
package/README.md
CHANGED
|
@@ -1,92 +1,97 @@
|
|
|
1
|
-
# SOFTPRO: BI
|
|
2
|
-
|
|
3
|
-
**Softpro BI** is an open-source JavaScript data visualization library that enables users to build interactive dashboards and visual analytics. It provides tools to display key business or operational data using widgets, charts, and maps, helping organizations analyze information and make data-driven decisions.
|
|
4
|
-
|
|
5
|
-
## Features
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
<
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
<
|
|
62
|
-
<
|
|
63
|
-
<
|
|
64
|
-
<
|
|
65
|
-
<
|
|
66
|
-
<
|
|
67
|
-
<
|
|
68
|
-
<
|
|
69
|
-
<
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
1
|
+
# SOFTPRO: BI
|
|
2
|
+
|
|
3
|
+
**Softpro BI** is an open-source JavaScript data visualization library that enables users to build interactive dashboards and visual analytics. It provides tools to display key business or operational data using widgets, charts, and maps, helping organizations analyze information and make data-driven decisions.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
* **Admin Panel / Dashboard** – Manage dashboards and analytics from a clean interface.
|
|
8
|
+
* **Visual Dashboard Builder** – Create and customize dashboard layouts with drag-and-drop.
|
|
9
|
+
* **Widget Editor** – Configure widgets’ style, size, and appearance.
|
|
10
|
+
* **Data Visualization Widgets** – Use charts, tables, KPIs, maps, and pivot views for analytics.
|
|
11
|
+
* **Advanced Filtering** – Apply flexible filters across all dashboards and widgets.
|
|
12
|
+
* **Data Import & Sync** – Connect databases, import files, and automate data updates.
|
|
13
|
+
* **Dashboard Import / Export** – Save, reuse, and transfer dashboards between environments.
|
|
14
|
+
* **Geospatial Analytics** – Use maps with layers and clustering for location-based insights.
|
|
15
|
+
* **Flexible Data Model** – Extend and modify data structures for evolving analytics needs.
|
|
16
|
+
* **Flexible Deployment** – Available as SaaS, Docker, or NPM modules.
|
|
17
|
+
|
|
18
|
+
## Install
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npm i @opengis/bi
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Usage
|
|
25
|
+
|
|
26
|
+
```vue
|
|
27
|
+
<template>
|
|
28
|
+
<!--$route.params.id-->
|
|
29
|
+
<BiDashboard :id="'home'" />
|
|
30
|
+
</template>
|
|
31
|
+
|
|
32
|
+
<script setup lang="ts">
|
|
33
|
+
const BiDashboard = defineAsyncComponent(() =>
|
|
34
|
+
import('@opengis/bi').then((m) => m.Dashboard)
|
|
35
|
+
);
|
|
36
|
+
</script>
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Usage Admin
|
|
40
|
+
|
|
41
|
+
```js
|
|
42
|
+
// router.config
|
|
43
|
+
export default [
|
|
44
|
+
{
|
|
45
|
+
path: '/bi.editor/:id?',
|
|
46
|
+
component: () => import('@opengis/bi').then((m) => m.Editor),
|
|
47
|
+
},
|
|
48
|
+
];
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
## Documentation
|
|
52
|
+
|
|
53
|
+
For a detailed understanding of `bi`, its features, and how to use them, refer to our [Documentation](https://bi.opengis.info/).
|
|
54
|
+
|
|
55
|
+
## Демо
|
|
56
|
+
|
|
57
|
+

|
|
58
|
+
|
|
59
|
+
## Стек технологій
|
|
60
|
+
|
|
61
|
+
<a href="https://vuejs.org/" target="_blank">
|
|
62
|
+
<img src="https://img.shields.io/badge/Vue%20js-323330?style=for-the-badge&logo=vuedotjs&logoColor=4FC08D" /></a>
|
|
63
|
+
<a href="https://vite.dev/" target="_blank">
|
|
64
|
+
<img src="https://img.shields.io/badge/Vite-323330?style=for-the-badge&logo=vite" /></a>
|
|
65
|
+
<a href="https://www.postgresql.org/" target="_blank">
|
|
66
|
+
<img src="https://img.shields.io/badge/PostgreSQL-323330?style=for-the-badge&logo=postgresql&logoColor=white" /></a>
|
|
67
|
+
<a href="https://maplibre.org/" target="_blank">
|
|
68
|
+
<img src="https://img.shields.io/badge/Maplibre-323330?style=for-the-badge&logo=maplibre&logoColor=87b2f0" /></a>
|
|
69
|
+
<a href="https://nodejs.org/" target="_blank">
|
|
70
|
+
<img src="https://img.shields.io/badge/Node%20js-323330?style=for-the-badge&logo=nodedotjs&logoColor=4FC08D" /></a>
|
|
71
|
+
<a href="https://fastify.dev/" target="_blank">
|
|
72
|
+
<img src="https://img.shields.io/badge/Fastify-323330?style=for-the-badge&logo=fastify" /></a>
|
|
73
|
+
<a href="https://echarts.apache.org" target="_blank">
|
|
74
|
+
<img src="https://img.shields.io/badge/Apache%20ECharts-323330?style=for-the-badge&logo=Apache-ECharts&logoColor=4FC08D" /></a>
|
|
75
|
+
|
|
76
|
+
## Контакти
|
|
77
|
+
|
|
78
|
+
Ви можете зв’язатися з нами за посиланням на офіційний сайт: SOFTPRO.UA або за допомогою електронної пошти info@softpro.ua, якщо у вас виникли:
|
|
79
|
+
|
|
80
|
+
- технічні несправності;
|
|
81
|
+
- помилки під час користування;
|
|
82
|
+
- запитання чи пропозиції.
|
|
83
|
+
|
|
84
|
+
## Слідкуйте за нами
|
|
85
|
+
|
|
86
|
+
[Офіційний сайт](https://softpro.ua)
|
|
87
|
+
|
|
88
|
+
<p>
|
|
89
|
+
<a href="https://www.instagram.com/gissoftpro/" target="_blank"><img src="https://cdn.softpro.ua/data/npm/instagram.png" alt="Softpro Instagram" title="Softpro Instagram"></a>
|
|
90
|
+
<a href="https://www.facebook.com/gissoftpro" target="_blank"><img src="https://cdn.softpro.ua/data/npm/facebook.png" alt="Softpro Facebook" title="Softpro Facebook"></a>
|
|
91
|
+
<a href="https://t.me/softprogis" target="_blank"><img src="https://cdn.softpro.ua/data/npm/telegram.png" alt="Softpro Telegram" title="Softpro Telegram"></a>
|
|
92
|
+
<a href="https://www.linkedin.com/in/softpro-ukraine-a8876b282/recent-activity/all/" target="_blank"><img src="https://cdn.softpro.ua/data/npm/social/linkedin.png" alt="Softpro Linkedin" title="Softpro LinkedIn"></a>
|
|
93
|
+
</p>
|
|
94
|
+
|
|
95
|
+
### License
|
|
96
|
+
|
|
97
|
+
Copyright © 2025 SOFTPRO. All rights reserved.
|
package/dist/bi.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { j as t,
|
|
1
|
+
import { j as t, l as V, R as e, U as i, V as P, t as d, v as g, k as l, o as p, r as E, n as b, s as m, q as n, p as B, u as D } from "./import-file-Ds-E7FRA.js";
|
|
2
2
|
import "vue";
|
|
3
3
|
import "vue-router";
|
|
4
4
|
export {
|