data-primals-engine 1.5.1 → 1.6.0
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 +924 -913
- package/client/README.md +136 -136
- package/client/index.js +0 -1
- package/client/public/doc/API.postman_collection.json +213 -213
- package/client/public/react.svg +9 -9
- package/client/src/AddWidgetTypeModal.jsx +47 -47
- package/client/src/App.css +42 -42
- package/client/src/App.jsx +92 -150
- package/client/src/App.scss +7 -1
- package/client/src/AssistantChat.jsx +362 -363
- package/client/src/Button.jsx +12 -12
- package/client/src/Dashboard.jsx +480 -480
- package/client/src/DashboardHtmlViewItem.jsx +146 -146
- package/client/src/DashboardView.jsx +654 -654
- package/client/src/DataEditor.jsx +383 -383
- package/client/src/DataLayout.jsx +779 -806
- package/client/src/DataTable.jsx +782 -822
- package/client/src/DataTable.scss +186 -186
- package/client/src/GeolocationField.jsx +93 -93
- package/client/src/HistoryDialog.jsx +307 -285
- package/client/src/HistoryDialog.scss +319 -319
- package/client/src/HtmlViewBuilderModal.jsx +90 -90
- package/client/src/HtmlViewBuilderModal.scss +17 -17
- package/client/src/HtmlViewCard.jsx +43 -43
- package/client/src/ModelCreatorField.jsx +950 -950
- package/client/src/ModelList.jsx +7 -2
- package/client/src/Notification.jsx +136 -136
- package/client/src/PackGallery.jsx +391 -391
- package/client/src/PackGallery.scss +231 -231
- package/client/src/Pagination.jsx +143 -143
- package/client/src/RelationField.jsx +354 -354
- package/client/src/RelationSelectorWidget.jsx +172 -172
- package/client/src/RelationValue.jsx +2 -1
- package/client/src/contexts/CommandContext.jsx +260 -0
- package/client/src/contexts/ModelContext.jsx +4 -1
- package/client/src/contexts/UIContext.jsx +72 -72
- package/client/src/filter.js +263 -262
- package/client/src/index.css +90 -90
- package/package.json +11 -10
- package/perf/artillery-hooks.js +37 -37
- package/perf/setup.yml +25 -25
- package/src/constants.js +4 -0
- package/src/core.js +8 -1
- package/src/engine.js +335 -293
- package/src/events.js +140 -21
- package/src/filter.js +274 -274
- package/src/index.js +3 -0
- package/src/modules/assistant/assistant.js +323 -192
- package/src/modules/assistant/constants.js +2 -1
- package/src/modules/auth-google/index.js +50 -50
- package/src/modules/auth-microsoft/index.js +81 -81
- package/src/modules/data/data.core.js +118 -118
- package/src/modules/data/data.history.js +555 -531
- package/src/modules/data/data.operations.js +145 -26
- package/src/modules/data/data.relations.js +686 -686
- package/src/modules/data/data.routes.js +1879 -1879
- package/src/modules/data/data.validation.js +2 -2
- package/src/modules/file.js +247 -247
- package/src/modules/user.js +1 -0
- package/src/modules/workflow.js +2 -2
- package/src/openai.jobs.js +3 -2
- package/src/packs.js +2 -2
- package/src/providers.js +2 -2
- package/src/services/stripe.js +196 -196
- package/src/sso.js +193 -193
- package/src/workers/import-export-worker.js +1 -1
- package/test/data.history.integration.test.js +72 -0
- package/test/data.integration.test.js +92 -1
- package/test/events.test.js +108 -10
- package/test/model.integration.test.js +377 -377
package/client/src/index.css
CHANGED
|
@@ -1,90 +1,90 @@
|
|
|
1
|
-
/* index.css */
|
|
2
|
-
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
|
|
3
|
-
|
|
4
|
-
:root {
|
|
5
|
-
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
6
|
-
line-height: 1.5;
|
|
7
|
-
font-weight: 400;
|
|
8
|
-
|
|
9
|
-
color-scheme: light dark;
|
|
10
|
-
color: rgba(255, 255, 255, 0.87);
|
|
11
|
-
background-color: #242424;
|
|
12
|
-
|
|
13
|
-
font-synthesis: none;
|
|
14
|
-
text-rendering: optimizeLegibility;
|
|
15
|
-
-webkit-font-smoothing: antialiased;
|
|
16
|
-
-moz-osx-font-smoothing: grayscale;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
#root {
|
|
21
|
-
width: 100%;
|
|
22
|
-
display: flex;
|
|
23
|
-
flex-direction: column;
|
|
24
|
-
align-items: stretch;
|
|
25
|
-
justify-content: flex-start;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
body {
|
|
30
|
-
margin: 0;
|
|
31
|
-
display: flex;
|
|
32
|
-
min-width: 320px;
|
|
33
|
-
min-height: 100vh;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
h1 {
|
|
37
|
-
font-size: 2em; /* Slightly reduced for better balance */
|
|
38
|
-
line-height: 1.2;
|
|
39
|
-
margin-bottom: 0.5em; /* Added margin for spacing */
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
h2 {
|
|
43
|
-
font-size: 1.5em;
|
|
44
|
-
line-height: 1.3;
|
|
45
|
-
margin-bottom: 0.5em;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
h3 {
|
|
49
|
-
font-size: 1.4em;
|
|
50
|
-
line-height: 1.3;
|
|
51
|
-
margin-bottom: 0.5em;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
h4 {
|
|
55
|
-
font-size: 1.2em;
|
|
56
|
-
line-height: 1.3;
|
|
57
|
-
margin-bottom: 0.5em;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
button {
|
|
61
|
-
border-radius: 8px;
|
|
62
|
-
border: 1px solid transparent;
|
|
63
|
-
padding: 0.15em 0.25em;
|
|
64
|
-
font-size: 0.9em;
|
|
65
|
-
font-weight: 500;
|
|
66
|
-
font-family: inherit;
|
|
67
|
-
background-color: #1a1a1a;
|
|
68
|
-
cursor: pointer;
|
|
69
|
-
transition: border-color 0.25s;
|
|
70
|
-
}
|
|
71
|
-
button:hover {
|
|
72
|
-
border-color: #4767FF;
|
|
73
|
-
}
|
|
74
|
-
button:focus,
|
|
75
|
-
button:focus-visible {
|
|
76
|
-
outline: 4px auto -webkit-focus-ring-color;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
@media (prefers-color-scheme: light) {
|
|
80
|
-
:root {
|
|
81
|
-
color: #213547;
|
|
82
|
-
background-color: #ffffff;
|
|
83
|
-
}
|
|
84
|
-
a:hover {
|
|
85
|
-
color: #4767FF;
|
|
86
|
-
}
|
|
87
|
-
button {
|
|
88
|
-
background-color: #f9f9f9;
|
|
89
|
-
}
|
|
90
|
-
}
|
|
1
|
+
/* index.css */
|
|
2
|
+
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
|
|
3
|
+
|
|
4
|
+
:root {
|
|
5
|
+
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
6
|
+
line-height: 1.5;
|
|
7
|
+
font-weight: 400;
|
|
8
|
+
|
|
9
|
+
color-scheme: light dark;
|
|
10
|
+
color: rgba(255, 255, 255, 0.87);
|
|
11
|
+
background-color: #242424;
|
|
12
|
+
|
|
13
|
+
font-synthesis: none;
|
|
14
|
+
text-rendering: optimizeLegibility;
|
|
15
|
+
-webkit-font-smoothing: antialiased;
|
|
16
|
+
-moz-osx-font-smoothing: grayscale;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
#root {
|
|
21
|
+
width: 100%;
|
|
22
|
+
display: flex;
|
|
23
|
+
flex-direction: column;
|
|
24
|
+
align-items: stretch;
|
|
25
|
+
justify-content: flex-start;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
body {
|
|
30
|
+
margin: 0;
|
|
31
|
+
display: flex;
|
|
32
|
+
min-width: 320px;
|
|
33
|
+
min-height: 100vh;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
h1 {
|
|
37
|
+
font-size: 2em; /* Slightly reduced for better balance */
|
|
38
|
+
line-height: 1.2;
|
|
39
|
+
margin-bottom: 0.5em; /* Added margin for spacing */
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
h2 {
|
|
43
|
+
font-size: 1.5em;
|
|
44
|
+
line-height: 1.3;
|
|
45
|
+
margin-bottom: 0.5em;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
h3 {
|
|
49
|
+
font-size: 1.4em;
|
|
50
|
+
line-height: 1.3;
|
|
51
|
+
margin-bottom: 0.5em;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
h4 {
|
|
55
|
+
font-size: 1.2em;
|
|
56
|
+
line-height: 1.3;
|
|
57
|
+
margin-bottom: 0.5em;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
button {
|
|
61
|
+
border-radius: 8px;
|
|
62
|
+
border: 1px solid transparent;
|
|
63
|
+
padding: 0.15em 0.25em;
|
|
64
|
+
font-size: 0.9em;
|
|
65
|
+
font-weight: 500;
|
|
66
|
+
font-family: inherit;
|
|
67
|
+
background-color: #1a1a1a;
|
|
68
|
+
cursor: pointer;
|
|
69
|
+
transition: border-color 0.25s;
|
|
70
|
+
}
|
|
71
|
+
button:hover {
|
|
72
|
+
border-color: #4767FF;
|
|
73
|
+
}
|
|
74
|
+
button:focus,
|
|
75
|
+
button:focus-visible {
|
|
76
|
+
outline: 4px auto -webkit-focus-ring-color;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
@media (prefers-color-scheme: light) {
|
|
80
|
+
:root {
|
|
81
|
+
color: #213547;
|
|
82
|
+
background-color: #ffffff;
|
|
83
|
+
}
|
|
84
|
+
a:hover {
|
|
85
|
+
color: #4767FF;
|
|
86
|
+
}
|
|
87
|
+
button {
|
|
88
|
+
background-color: #f9f9f9;
|
|
89
|
+
}
|
|
90
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "data-primals-engine",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "data-primals-engine is a package responsible from handling large amount of data using MongoDB in a practical and performant way. It can also get workflow models working (for automation), and fully supports internationalisation. It also has integrated AI assistant.",
|
|
5
5
|
"main": "src/engine.js",
|
|
6
6
|
"type": "module",
|
|
@@ -28,11 +28,12 @@
|
|
|
28
28
|
"@rollup/rollup-linux-x64-gnu": "4.6.1"
|
|
29
29
|
},
|
|
30
30
|
"resolutions": {
|
|
31
|
-
"tar-fs": "3.0.9",
|
|
32
31
|
"on-headers": "1.1.0",
|
|
33
32
|
"brace-expansion": "2.0.2",
|
|
34
33
|
"prismjs": "1.30.0",
|
|
35
|
-
"xml2js": ">=0.5.0"
|
|
34
|
+
"xml2js": ">=0.5.0",
|
|
35
|
+
"tar-fs": ">=3.1.1",
|
|
36
|
+
"vite": ">=7.0.8"
|
|
36
37
|
},
|
|
37
38
|
"overrides": {
|
|
38
39
|
"react-syntax-highlighter": {
|
|
@@ -57,11 +58,7 @@
|
|
|
57
58
|
"./*": "./src/*.js"
|
|
58
59
|
},
|
|
59
60
|
"dependencies": {
|
|
60
|
-
"@langchain/anthropic": "^0.3.26",
|
|
61
61
|
"@langchain/core": "^0.3.66",
|
|
62
|
-
"@langchain/deepseek": "^0.1.0",
|
|
63
|
-
"@langchain/google-genai": "^0.2.16",
|
|
64
|
-
"@langchain/openai": "^0.6.3",
|
|
65
62
|
"archiver": "^7.0.1",
|
|
66
63
|
"aws-sdk": "^2.1692.0",
|
|
67
64
|
"bcrypt": "^6.0.0",
|
|
@@ -80,13 +77,13 @@
|
|
|
80
77
|
"express-session": "^1.18.2",
|
|
81
78
|
"handlebars": "^4.7.8",
|
|
82
79
|
"i18next-browser-languagedetector": "^8.2.0",
|
|
83
|
-
"isolated-vm": "^
|
|
80
|
+
"isolated-vm": "^5.0.0",
|
|
84
81
|
"juice": "^11.0.1",
|
|
85
82
|
"mathjs": "^14.6.0",
|
|
86
83
|
"mongodb": "^6.18.0",
|
|
87
84
|
"node-cache": "^5.1.2",
|
|
88
85
|
"node-schedule": "^2.1.1",
|
|
89
|
-
"nodemailer": "^7.0.
|
|
86
|
+
"nodemailer": "^7.0.7",
|
|
90
87
|
"openai": "^5.10.2",
|
|
91
88
|
"passport": "^0.7.0",
|
|
92
89
|
"passport-saml-encrypted": "^0.1.13",
|
|
@@ -113,7 +110,11 @@
|
|
|
113
110
|
"passport-google-oauth20": "^2.0.0",
|
|
114
111
|
"react": "18.3.1",
|
|
115
112
|
"react-i18next": "^15.6.1",
|
|
116
|
-
"react-query": ">=3.0.0"
|
|
113
|
+
"react-query": ">=3.0.0",
|
|
114
|
+
"@langchain/anthropic": "^0.3.26",
|
|
115
|
+
"@langchain/deepseek": "^0.1.0",
|
|
116
|
+
"@langchain/google-genai": "^0.2.16",
|
|
117
|
+
"@langchain/openai": "^0.6.3"
|
|
117
118
|
},
|
|
118
119
|
"devDependencies": {
|
|
119
120
|
"@eslint/js": "^9.32.0",
|
package/perf/artillery-hooks.js
CHANGED
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
import {uuidv4} from "../src/core.js";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export function setScenarioVariables(context, events, done) {
|
|
5
|
-
// context.vars is where we store variables for the virtual user's session
|
|
6
|
-
context.vars.vuId = uuidv4().replace(/-/g, '');
|
|
7
|
-
context.vars.demoUser = `perf${Math.floor(Math.random() * 9000000) + 1000000}`;
|
|
8
|
-
return done();
|
|
9
|
-
}
|
|
10
|
-
// Hook to name requests to aggregate metrics by endpoint
|
|
11
|
-
export function metricsByEndpoint_beforeRequest(requestParams, context, ee, next) {
|
|
12
|
-
// Remove query parameters for the metric name
|
|
13
|
-
const urlPath = requestParams.url.split('?')[0];
|
|
14
|
-
|
|
15
|
-
// Replace unique IDs (ObjectId or UUID) in the URL with a placeholder for aggregation
|
|
16
|
-
// Example: /api/data/60d0fe4f5311236168a109ca -> /api/data/:id
|
|
17
|
-
const name = urlPath.replace(/([a-fA-F0-9]{24}|[a-fA-F0-9-]{36})/g, ':id');
|
|
18
|
-
|
|
19
|
-
// Emit an internal Artillery event to name the request
|
|
20
|
-
ee.emit('request:set_name', name);
|
|
21
|
-
|
|
22
|
-
return next();
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
// Hook pour logger les erreurs de manière détaillée
|
|
26
|
-
export function metricsByEndpoint_afterResponse(requestParams, response, context, ee, next) {
|
|
27
|
-
// On vérifie si le statut est un code d'erreur (4xx ou 5xx)
|
|
28
|
-
if (response.statusCode >= 400) {
|
|
29
|
-
console.error(`\n[ERREUR] Requête ${requestParams.method} ${requestParams.url} a échoué avec le statut ${response.statusCode}`);
|
|
30
|
-
// On log le corps de la réponse, qui contient souvent le message d'erreur du serveur
|
|
31
|
-
if (response.body) {
|
|
32
|
-
console.error(` -> Réponse: ${response.body}\n`);
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
// On passe à la suite du scénario
|
|
36
|
-
return next();
|
|
37
|
-
}
|
|
1
|
+
import {uuidv4} from "../src/core.js";
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
export function setScenarioVariables(context, events, done) {
|
|
5
|
+
// context.vars is where we store variables for the virtual user's session
|
|
6
|
+
context.vars.vuId = uuidv4().replace(/-/g, '');
|
|
7
|
+
context.vars.demoUser = `perf${Math.floor(Math.random() * 9000000) + 1000000}`;
|
|
8
|
+
return done();
|
|
9
|
+
}
|
|
10
|
+
// Hook to name requests to aggregate metrics by endpoint
|
|
11
|
+
export function metricsByEndpoint_beforeRequest(requestParams, context, ee, next) {
|
|
12
|
+
// Remove query parameters for the metric name
|
|
13
|
+
const urlPath = requestParams.url.split('?')[0];
|
|
14
|
+
|
|
15
|
+
// Replace unique IDs (ObjectId or UUID) in the URL with a placeholder for aggregation
|
|
16
|
+
// Example: /api/data/60d0fe4f5311236168a109ca -> /api/data/:id
|
|
17
|
+
const name = urlPath.replace(/([a-fA-F0-9]{24}|[a-fA-F0-9-]{36})/g, ':id');
|
|
18
|
+
|
|
19
|
+
// Emit an internal Artillery event to name the request
|
|
20
|
+
ee.emit('request:set_name', name);
|
|
21
|
+
|
|
22
|
+
return next();
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
// Hook pour logger les erreurs de manière détaillée
|
|
26
|
+
export function metricsByEndpoint_afterResponse(requestParams, response, context, ee, next) {
|
|
27
|
+
// On vérifie si le statut est un code d'erreur (4xx ou 5xx)
|
|
28
|
+
if (response.statusCode >= 400) {
|
|
29
|
+
console.error(`\n[ERREUR] Requête ${requestParams.method} ${requestParams.url} a échoué avec le statut ${response.statusCode}`);
|
|
30
|
+
// On log le corps de la réponse, qui contient souvent le message d'erreur du serveur
|
|
31
|
+
if (response.body) {
|
|
32
|
+
console.error(` -> Réponse: ${response.body}\n`);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
// On passe à la suite du scénario
|
|
36
|
+
return next();
|
|
37
|
+
}
|
package/perf/setup.yml
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
config:
|
|
2
|
-
target: "http://localhost:7633"
|
|
3
|
-
phases:
|
|
4
|
-
# Exécute ce scénario une seule fois avec un seul utilisateur virtuel
|
|
5
|
-
- duration: 1
|
|
6
|
-
arrivalCount: 1
|
|
7
|
-
defaults:
|
|
8
|
-
headers:
|
|
9
|
-
# Utilise le token statique de l'utilisateur 'demo' pour l'installation
|
|
10
|
-
Authorization: "Bearer demotoken"
|
|
11
|
-
Content-Type: 'application/json'
|
|
12
|
-
|
|
13
|
-
scenarios:
|
|
14
|
-
- name: "Installation unique des packs de données"
|
|
15
|
-
flow:
|
|
16
|
-
- log: "Installation du 'Website Starter Pack'..."
|
|
17
|
-
- post:
|
|
18
|
-
url: "/api/packs/install?_user=demo"
|
|
19
|
-
json:
|
|
20
|
-
packName: "Website Starter Pack"
|
|
21
|
-
- log: "Installation du 'Multilingual starter pack'..."
|
|
22
|
-
- post:
|
|
23
|
-
url: "/api/packs/install?_user=demo"
|
|
24
|
-
json:
|
|
25
|
-
packName: "Multilingual starter pack"
|
|
1
|
+
config:
|
|
2
|
+
target: "http://localhost:7633"
|
|
3
|
+
phases:
|
|
4
|
+
# Exécute ce scénario une seule fois avec un seul utilisateur virtuel
|
|
5
|
+
- duration: 1
|
|
6
|
+
arrivalCount: 1
|
|
7
|
+
defaults:
|
|
8
|
+
headers:
|
|
9
|
+
# Utilise le token statique de l'utilisateur 'demo' pour l'installation
|
|
10
|
+
Authorization: "Bearer demotoken"
|
|
11
|
+
Content-Type: 'application/json'
|
|
12
|
+
|
|
13
|
+
scenarios:
|
|
14
|
+
- name: "Installation unique des packs de données"
|
|
15
|
+
flow:
|
|
16
|
+
- log: "Installation du 'Website Starter Pack'..."
|
|
17
|
+
- post:
|
|
18
|
+
url: "/api/packs/install?_user=demo"
|
|
19
|
+
json:
|
|
20
|
+
packName: "Website Starter Pack"
|
|
21
|
+
- log: "Installation du 'Multilingual starter pack'..."
|
|
22
|
+
- post:
|
|
23
|
+
url: "/api/packs/install?_user=demo"
|
|
24
|
+
json:
|
|
25
|
+
packName: "Multilingual starter pack"
|
|
26
26
|
- log: "Installation terminée."
|
package/src/constants.js
CHANGED
package/src/core.js
CHANGED
|
@@ -33,10 +33,17 @@ export function escapeHtml(string){
|
|
|
33
33
|
});
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
+
export const isUnsecureKey = (key) => {
|
|
37
|
+
return ["__proto__", "constructor", "prototype"].includes(key);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export const parseSafeJSON = (json) => JSON.parse(json, (key, value) => isUnsecureKey(key) ? undefined : value);
|
|
41
|
+
|
|
42
|
+
|
|
36
43
|
export const isDate = dt => String(new Date(dt)) !== 'Invalid Date'
|
|
37
44
|
|
|
38
45
|
export const safeAssignObject = (obj, key, value) => {
|
|
39
|
-
if( !
|
|
46
|
+
if( !isUnsecureKey(key)){
|
|
40
47
|
obj[key] = value;
|
|
41
48
|
}
|
|
42
49
|
}
|