@addev-be/ui 0.2.16 → 0.2.18
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/eslint.config.js +28 -0
- package/package.json +13 -20
- package/src/Icons.tsx +108 -0
- package/src/components/data/AdvancedRequestDataGrid/helpers/advancedRequests.ts +93 -0
- package/src/components/data/AdvancedRequestDataGrid/helpers/columns.tsx +262 -0
- package/src/components/data/AdvancedRequestDataGrid/helpers/index.ts +2 -0
- package/src/components/data/AdvancedRequestDataGrid/index.tsx +267 -0
- package/src/components/data/AdvancedRequestDataGrid/types.ts +47 -0
- package/src/components/data/DataGrid/DataGridCell.tsx +73 -0
- package/src/components/data/DataGrid/DataGridColumnsModal/helpers.ts +14 -0
- package/src/components/data/DataGrid/DataGridColumnsModal/hooks.tsx +59 -0
- package/src/components/data/DataGrid/DataGridColumnsModal/index.tsx +181 -0
- package/src/components/data/DataGrid/DataGridColumnsModal/styles.ts +104 -0
- package/src/components/data/DataGrid/DataGridEditableCell.tsx +43 -0
- package/src/components/data/DataGrid/DataGridFilterMenu/FilterValuesScroller.tsx +120 -0
- package/src/components/data/DataGrid/DataGridFilterMenu/hooks.tsx +75 -0
- package/src/components/data/DataGrid/DataGridFilterMenu/index.tsx +360 -0
- package/src/components/data/DataGrid/DataGridFilterMenu/styles.ts +96 -0
- package/src/components/data/DataGrid/DataGridFooter.tsx +42 -0
- package/src/components/data/DataGrid/DataGridHeader.tsx +126 -0
- package/src/components/data/DataGrid/DataGridHeaderCell.tsx +132 -0
- package/src/components/data/DataGrid/FilterModalContent/index.tsx +136 -0
- package/src/components/data/DataGrid/FilterModalContent/styles.ts +22 -0
- package/src/components/data/DataGrid/VirtualScroller.tsx +46 -0
- package/src/components/data/DataGrid/helpers/columns.tsx +295 -0
- package/src/components/data/DataGrid/helpers/filters.ts +287 -0
- package/src/components/data/DataGrid/helpers/index.ts +2 -0
- package/src/components/data/DataGrid/hooks/index.ts +30 -0
- package/src/components/data/DataGrid/hooks/useDataGrid.tsx +306 -0
- package/src/components/data/DataGrid/hooks/useDataGridCopy.ts +175 -0
- package/src/components/data/DataGrid/hooks/useDataGridSettings.ts +48 -0
- package/src/components/data/DataGrid/index.tsx +140 -0
- package/src/components/data/DataGrid/styles.ts +323 -0
- package/src/components/data/DataGrid/types.ts +267 -0
- package/src/components/data/SqlRequestDataGrid/helpers/columns.tsx +277 -0
- package/src/components/data/SqlRequestDataGrid/helpers/index.ts +2 -0
- package/src/components/data/SqlRequestDataGrid/helpers/sqlRequests.ts +16 -0
- package/src/components/data/SqlRequestDataGrid/index.tsx +347 -0
- package/src/components/data/SqlRequestDataGrid/types.ts +47 -0
- package/src/components/data/index.ts +8 -0
- package/src/components/forms/Button.tsx +99 -0
- package/src/components/forms/IconButton.tsx +56 -0
- package/src/components/forms/IndeterminateCheckbox.tsx +46 -0
- package/src/components/forms/Select.tsx +40 -0
- package/src/components/forms/index.ts +5 -0
- package/src/components/forms/styles.ts +20 -0
- package/src/components/index.ts +3 -0
- package/src/components/layout/Dropdown/index.tsx +79 -0
- package/src/components/layout/Dropdown/styles.ts +44 -0
- package/src/components/layout/Loading/index.tsx +29 -0
- package/src/components/layout/Loading/styles.ts +29 -0
- package/src/components/layout/Modal/index.tsx +51 -0
- package/src/components/layout/Modal/styles.ts +110 -0
- package/src/components/layout/index.ts +3 -0
- package/src/components/ui/ContextMenu/index.tsx +79 -0
- package/src/components/ui/ContextMenu/styles.ts +119 -0
- package/src/config/index.ts +14 -0
- package/src/helpers/dates.ts +9 -0
- package/src/helpers/getScrollbarSize.ts +14 -0
- package/src/helpers/numbers.ts +26 -0
- package/src/hooks/index.ts +2 -0
- package/src/hooks/useElementSize.ts +24 -0
- package/src/hooks/useWindowSize.ts +20 -0
- package/src/index.ts +7 -0
- package/src/providers/PortalsProvider/index.tsx +54 -0
- package/src/providers/PortalsProvider/styles.ts +27 -0
- package/src/providers/SettingsProvider/index.tsx +70 -0
- package/src/providers/ThemeProvider/ThemeProvider.ts +55 -0
- package/src/providers/ThemeProvider/defaultTheme.ts +444 -0
- package/src/providers/ThemeProvider/index.ts +3 -0
- package/src/providers/ThemeProvider/types.ts +123 -0
- package/src/providers/UiProviders/index.tsx +65 -0
- package/src/providers/UiProviders/styles.ts +10 -0
- package/src/providers/hooks.ts +8 -0
- package/src/providers/index.ts +5 -0
- package/src/services/HttpService.ts +80 -0
- package/src/services/WebSocketService.ts +147 -0
- package/src/services/advancedRequests.ts +101 -0
- package/src/services/base.ts +31 -0
- package/src/services/globalSearch.ts +27 -0
- package/src/services/hooks.ts +23 -0
- package/src/services/index.ts +2 -0
- package/src/services/sqlRequests.ts +110 -0
- package/src/styles/animations.scss +30 -0
- package/src/styles/index.scss +42 -0
- package/src/typings.d.ts +6 -0
- package/tsconfig.json +18 -0
- package/tsconfig.tsbuildinfo +1 -0
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { Config } from '../config';
|
|
2
|
+
import { Request } from './base';
|
|
3
|
+
import { trimEnd } from 'lodash';
|
|
4
|
+
import { v4 } from 'uuid';
|
|
5
|
+
|
|
6
|
+
export class HttpService {
|
|
7
|
+
private static instance: HttpService;
|
|
8
|
+
private config: Config;
|
|
9
|
+
private promises: {
|
|
10
|
+
[id: string]: {
|
|
11
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
12
|
+
resolve: (value: any) => void;
|
|
13
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
14
|
+
reject: (reason?: any) => void;
|
|
15
|
+
};
|
|
16
|
+
} = {};
|
|
17
|
+
|
|
18
|
+
constructor(config: Config) {
|
|
19
|
+
HttpService.instance = this;
|
|
20
|
+
this.config = config;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
public static getInstance() {
|
|
24
|
+
return HttpService.instance;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
public sendRequest<TReq, TRes>(name: string, data: TReq) {
|
|
28
|
+
const id = v4();
|
|
29
|
+
const promise = new Promise<TRes>((resolve, reject) => {
|
|
30
|
+
const request: Request = { id, name, data };
|
|
31
|
+
this.promises[id] = { resolve, reject };
|
|
32
|
+
console.log('[HTTP] Sending request:', request);
|
|
33
|
+
fetch(`${trimEnd(this.config.httpServerUrl, '/')}/${name}`, {
|
|
34
|
+
method: 'POST',
|
|
35
|
+
headers: {
|
|
36
|
+
'Content-Type': 'application/json',
|
|
37
|
+
},
|
|
38
|
+
body: JSON.stringify(request),
|
|
39
|
+
})
|
|
40
|
+
.then(async (response) => {
|
|
41
|
+
if (!response.ok) {
|
|
42
|
+
throw new Error('HTTP request failed');
|
|
43
|
+
}
|
|
44
|
+
const body = await response.text();
|
|
45
|
+
this.parseMessage(body);
|
|
46
|
+
})
|
|
47
|
+
.catch((error) => {
|
|
48
|
+
reject(error);
|
|
49
|
+
});
|
|
50
|
+
});
|
|
51
|
+
return promise;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
private parseMessage(message: string) {
|
|
55
|
+
try {
|
|
56
|
+
const response = JSON.parse(message);
|
|
57
|
+
if (!response.id) {
|
|
58
|
+
throw new Error('Received message is not valid');
|
|
59
|
+
}
|
|
60
|
+
if (this.promises[response.id]) {
|
|
61
|
+
console.log('[HTTP] Received response:', response);
|
|
62
|
+
if (
|
|
63
|
+
typeof response.data?.status === 'number' &&
|
|
64
|
+
response.data.status < 0
|
|
65
|
+
) {
|
|
66
|
+
this.promises[response.id].reject(new Error(response.data.message));
|
|
67
|
+
} else {
|
|
68
|
+
this.promises[response.id].resolve(response.data);
|
|
69
|
+
}
|
|
70
|
+
delete this.promises[response.id];
|
|
71
|
+
} else {
|
|
72
|
+
console.log('[HTTP] Received request:', response);
|
|
73
|
+
// TODO : Implement request handling
|
|
74
|
+
throw new Error('Not yet implemented');
|
|
75
|
+
}
|
|
76
|
+
} catch (error) {
|
|
77
|
+
console.error('[HTTP] Error parsing message:', error);
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
import { Config } from '../config';
|
|
2
|
+
import { Request } from './base';
|
|
3
|
+
import { v4 } from 'uuid';
|
|
4
|
+
|
|
5
|
+
export class WebSocketService {
|
|
6
|
+
private static instance: WebSocketService;
|
|
7
|
+
private config: Config;
|
|
8
|
+
private socket: WebSocket | null = null;
|
|
9
|
+
public status: boolean | undefined = false;
|
|
10
|
+
private listeners: ((status: boolean | undefined) => void)[] = [];
|
|
11
|
+
private queue: Request[] = [];
|
|
12
|
+
private promises: {
|
|
13
|
+
[id: string]: {
|
|
14
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
15
|
+
resolve: (value: any) => void;
|
|
16
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
17
|
+
reject: (reason?: any) => void;
|
|
18
|
+
};
|
|
19
|
+
} = {};
|
|
20
|
+
|
|
21
|
+
public onOpen?: () => void = () => {};
|
|
22
|
+
public onClose?: () => void = () => {};
|
|
23
|
+
public onMessage?: (message: string) => void = () => {};
|
|
24
|
+
public onError?: (error: unknown) => void = () => {};
|
|
25
|
+
|
|
26
|
+
constructor(config: Config) {
|
|
27
|
+
WebSocketService.instance = this;
|
|
28
|
+
this.config = config;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
public static getInstance() {
|
|
32
|
+
return WebSocketService.instance;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
private resetConnection() {
|
|
36
|
+
this.setStatus(undefined);
|
|
37
|
+
this.socket = new WebSocket(this.config.webSocketUrl);
|
|
38
|
+
|
|
39
|
+
this.socket.onopen = () => {
|
|
40
|
+
console.log('[WS] Connected');
|
|
41
|
+
const interval = setInterval(() => {
|
|
42
|
+
if (this.socket && this.socket.readyState === 1) {
|
|
43
|
+
clearInterval(interval);
|
|
44
|
+
this.setStatus(true);
|
|
45
|
+
this.onOpen?.();
|
|
46
|
+
}
|
|
47
|
+
}, 100);
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
this.socket.onclose = () => {
|
|
51
|
+
console.log('[WS] Disconnected');
|
|
52
|
+
setTimeout(() => this.connect(), this.status === true ? 500 : 5000);
|
|
53
|
+
this.onClose?.();
|
|
54
|
+
this.setStatus(false);
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
this.socket.onmessage = (event) => {
|
|
58
|
+
this.onMessage?.(event.data);
|
|
59
|
+
this.parseMessage(event.data);
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
this.socket.onerror = (error) => {
|
|
63
|
+
this.onError?.(error);
|
|
64
|
+
console.error('[WS] Error:', error);
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
public connect(force = false) {
|
|
69
|
+
if (this.status === false || force) {
|
|
70
|
+
this.resetConnection();
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
public subscribe(listener: (status: boolean | undefined) => void) {
|
|
75
|
+
this.listeners.push(listener);
|
|
76
|
+
listener(this.status);
|
|
77
|
+
return () => this.listeners.splice(this.listeners.indexOf(listener), 1);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
public unsubscribe(listener: (status: boolean | undefined) => void) {
|
|
81
|
+
this.listeners.splice(this.listeners.indexOf(listener), 1);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
private setStatus(status: boolean | undefined) {
|
|
85
|
+
const previousStatus = this.status;
|
|
86
|
+
this.status = status;
|
|
87
|
+
this.listeners.forEach((listener) => listener(status));
|
|
88
|
+
if (this.socket && !previousStatus && status) {
|
|
89
|
+
this.sendQueue();
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
private sendQueue() {
|
|
94
|
+
if (this.socket && this.status) {
|
|
95
|
+
let request: Request | undefined;
|
|
96
|
+
while ((request = this.queue.shift())) {
|
|
97
|
+
console.log('[WS] Sending queued request:', request);
|
|
98
|
+
this.socket?.send(JSON.stringify(request));
|
|
99
|
+
}
|
|
100
|
+
this.queue.forEach((request) =>
|
|
101
|
+
this.socket?.send(JSON.stringify(request))
|
|
102
|
+
);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
public sendRequest<TReq, TRes>(name: string, data: TReq) {
|
|
107
|
+
const id = v4();
|
|
108
|
+
const promise = new Promise<TRes>((resolve, reject) => {
|
|
109
|
+
const request: Request = { id, name, data };
|
|
110
|
+
this.promises[id] = { resolve, reject };
|
|
111
|
+
if (!this.socket || !this.status) {
|
|
112
|
+
this.queue.push(request);
|
|
113
|
+
return;
|
|
114
|
+
}
|
|
115
|
+
console.log('[WS] Sending request:', request);
|
|
116
|
+
this.socket?.send(JSON.stringify(request));
|
|
117
|
+
});
|
|
118
|
+
return promise;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
private parseMessage(message: string) {
|
|
122
|
+
try {
|
|
123
|
+
const response = JSON.parse(message);
|
|
124
|
+
if (!response.id) {
|
|
125
|
+
throw new Error('Received message is not valid');
|
|
126
|
+
}
|
|
127
|
+
if (this.promises[response.id]) {
|
|
128
|
+
console.log('[WS] Received response:', response);
|
|
129
|
+
if (
|
|
130
|
+
typeof response.data?.status === 'number' &&
|
|
131
|
+
response.data.status < 0
|
|
132
|
+
) {
|
|
133
|
+
this.promises[response.id].reject(new Error(response.data.message));
|
|
134
|
+
} else {
|
|
135
|
+
this.promises[response.id].resolve(response.data);
|
|
136
|
+
}
|
|
137
|
+
delete this.promises[response.id];
|
|
138
|
+
} else {
|
|
139
|
+
console.log('[WS] Received request:', response);
|
|
140
|
+
// TODO : Implement request handling
|
|
141
|
+
throw new Error('Not yet implemented');
|
|
142
|
+
}
|
|
143
|
+
} catch (error) {
|
|
144
|
+
console.error('[WS] Error parsing message:', error);
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { useWebSocketRequestHandler } from './hooks';
|
|
2
|
+
|
|
3
|
+
export type FieldDTO<T extends string = string> = {
|
|
4
|
+
fieldName?: T;
|
|
5
|
+
fieldAlias?: string;
|
|
6
|
+
operator?:
|
|
7
|
+
| 'add'
|
|
8
|
+
| 'concat'
|
|
9
|
+
| 'divide'
|
|
10
|
+
| 'groupConcat'
|
|
11
|
+
| 'if'
|
|
12
|
+
| 'ifNull'
|
|
13
|
+
| 'jsonObject'
|
|
14
|
+
| 'length'
|
|
15
|
+
| 'modulo'
|
|
16
|
+
| 'multiply'
|
|
17
|
+
| 'subtract'
|
|
18
|
+
| 'sum'
|
|
19
|
+
| 'trim';
|
|
20
|
+
operands?: FieldDTO[];
|
|
21
|
+
constantValue?: string | number | boolean | null;
|
|
22
|
+
groupBy?: boolean;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
export type ConditionDTO = {
|
|
26
|
+
field: string;
|
|
27
|
+
operator:
|
|
28
|
+
| 'lessThan'
|
|
29
|
+
| 'lessThanOrEqual'
|
|
30
|
+
| 'lessThanOrEquals'
|
|
31
|
+
| 'equals'
|
|
32
|
+
| 'notEquals'
|
|
33
|
+
| 'greaterThanOrEqual'
|
|
34
|
+
| 'greaterThanOrEquals'
|
|
35
|
+
| 'greaterThan'
|
|
36
|
+
| 'like'
|
|
37
|
+
| 'contains'
|
|
38
|
+
| 'notContains'
|
|
39
|
+
| 'startsWith'
|
|
40
|
+
| 'endsWith'
|
|
41
|
+
| 'notLike'
|
|
42
|
+
| 'inRange'
|
|
43
|
+
| 'between'
|
|
44
|
+
| 'isNull'
|
|
45
|
+
| 'inArray'
|
|
46
|
+
| 'in'
|
|
47
|
+
| 'not'
|
|
48
|
+
| 'and'
|
|
49
|
+
| 'or';
|
|
50
|
+
value?:
|
|
51
|
+
| string
|
|
52
|
+
| number
|
|
53
|
+
| boolean
|
|
54
|
+
| null
|
|
55
|
+
| (string | number | boolean | null)[];
|
|
56
|
+
children?: boolean;
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
export type OrderByDTO = {
|
|
60
|
+
field: string;
|
|
61
|
+
direction?: 'ASC' | 'DESC';
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
export type AdvancedRequestDTO = {
|
|
65
|
+
type: string;
|
|
66
|
+
fields: FieldDTO[];
|
|
67
|
+
conditions: ConditionDTO[];
|
|
68
|
+
orderBy?: OrderByDTO[];
|
|
69
|
+
start?: number;
|
|
70
|
+
length?: number;
|
|
71
|
+
getTotal?: boolean;
|
|
72
|
+
unique?: boolean;
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
export type AdvancedRequestRow<R> = {
|
|
76
|
+
[K in keyof R]: R[K] extends string | number | null
|
|
77
|
+
? R[K]
|
|
78
|
+
: string | number | null;
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
82
|
+
export type AdvancedResponseDTO<T = any> = {
|
|
83
|
+
data: AdvancedRequestRow<T>[];
|
|
84
|
+
count?: number;
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
export type AdvancedRequestFieldDTO =
|
|
88
|
+
| string
|
|
89
|
+
| {
|
|
90
|
+
name: string;
|
|
91
|
+
fields: AdvancedRequestFieldDTO[];
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
95
|
+
export const useAdvancedRequestHandler = <T = any>() =>
|
|
96
|
+
useWebSocketRequestHandler<AdvancedRequestDTO, AdvancedResponseDTO<T>>(
|
|
97
|
+
'AdvancedRequest'
|
|
98
|
+
);
|
|
99
|
+
|
|
100
|
+
export const useRawAdvancedRequestHandler = () =>
|
|
101
|
+
useWebSocketRequestHandler<AdvancedRequestDTO, string>('RawAdvancedRequest');
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export type BaseModelDTO = {
|
|
2
|
+
id: string;
|
|
3
|
+
dateAdd: string;
|
|
4
|
+
dateUpd: string;
|
|
5
|
+
dateDel: string | null;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
export const emptyBaseModel: BaseModelDTO = {
|
|
9
|
+
id: '',
|
|
10
|
+
dateAdd: new Date().toISOString(),
|
|
11
|
+
dateUpd: new Date().toISOString(),
|
|
12
|
+
dateDel: null,
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export type ArchivableModelDTO = BaseModelDTO & {
|
|
16
|
+
archived: boolean | null;
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
20
|
+
export type Request<T = any> = {
|
|
21
|
+
id: string;
|
|
22
|
+
name: string;
|
|
23
|
+
data: T;
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export const UUID_REGEX =
|
|
27
|
+
/^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$/i;
|
|
28
|
+
|
|
29
|
+
export type GetObjectRequestDTO = {
|
|
30
|
+
id: string;
|
|
31
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { SqlRequestRow } from './sqlRequests';
|
|
2
|
+
import { useWebSocketRequestHandler } from './hooks';
|
|
3
|
+
|
|
4
|
+
export type GlobalSearchRequestDTO = {
|
|
5
|
+
types: string[];
|
|
6
|
+
searchTerm: string;
|
|
7
|
+
limit?: number;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
11
|
+
export type GlobalSearchResponseDTO<T = any> = {
|
|
12
|
+
data: Record<string, SqlRequestRow<T>[]>;
|
|
13
|
+
count?: number;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
type GlobalSearchRequestHandler<T> = (
|
|
17
|
+
request: GlobalSearchRequestDTO
|
|
18
|
+
) => Promise<GlobalSearchResponseDTO<T>>;
|
|
19
|
+
|
|
20
|
+
export const useGlobalSearchRequestHandler = <
|
|
21
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
22
|
+
T = any
|
|
23
|
+
>(): GlobalSearchRequestHandler<T> =>
|
|
24
|
+
useWebSocketRequestHandler<
|
|
25
|
+
GlobalSearchRequestDTO,
|
|
26
|
+
GlobalSearchResponseDTO<T>
|
|
27
|
+
>('GlobalSearch');
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { HttpService } from './HttpService';
|
|
2
|
+
import { WebSocketService } from './WebSocketService';
|
|
3
|
+
import { useCallback } from 'react';
|
|
4
|
+
|
|
5
|
+
export const useWebSocketRequestHandler = <TReq, TRes>(
|
|
6
|
+
name: string
|
|
7
|
+
): ((data: TReq) => Promise<TRes>) =>
|
|
8
|
+
useCallback(
|
|
9
|
+
(data: TReq) => {
|
|
10
|
+
return WebSocketService.getInstance().sendRequest<TReq, TRes>(name, data);
|
|
11
|
+
},
|
|
12
|
+
[name]
|
|
13
|
+
);
|
|
14
|
+
|
|
15
|
+
export const useHttpRequestHandler = <TReq, TRes>(
|
|
16
|
+
name: string
|
|
17
|
+
): ((data: TReq) => Promise<TRes>) =>
|
|
18
|
+
useCallback(
|
|
19
|
+
(data: TReq) => {
|
|
20
|
+
return HttpService.getInstance().sendRequest<TReq, TRes>(name, data);
|
|
21
|
+
},
|
|
22
|
+
[name]
|
|
23
|
+
);
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import { useWebSocketRequestHandler } from './hooks';
|
|
2
|
+
|
|
3
|
+
export type FieldDTO<T extends string = string> = {
|
|
4
|
+
fieldName?: T;
|
|
5
|
+
fieldAlias?: string;
|
|
6
|
+
operator?:
|
|
7
|
+
| 'add'
|
|
8
|
+
| 'concat'
|
|
9
|
+
| 'divide'
|
|
10
|
+
| 'groupConcat'
|
|
11
|
+
| 'if'
|
|
12
|
+
| 'ifNull'
|
|
13
|
+
| 'jsonObject'
|
|
14
|
+
| 'length'
|
|
15
|
+
| 'modulo'
|
|
16
|
+
| 'multiply'
|
|
17
|
+
| 'subtract'
|
|
18
|
+
| 'sum'
|
|
19
|
+
| 'trim';
|
|
20
|
+
operands?: FieldDTO[];
|
|
21
|
+
constantValue?: string | number | boolean | null;
|
|
22
|
+
groupBy?: boolean;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
export type ConditionDTO = {
|
|
26
|
+
field: string;
|
|
27
|
+
operator:
|
|
28
|
+
| 'lessThan'
|
|
29
|
+
| 'lessThanOrEqual'
|
|
30
|
+
| 'lessThanOrEquals'
|
|
31
|
+
| 'equals'
|
|
32
|
+
| 'notEquals'
|
|
33
|
+
| 'greaterThanOrEqual'
|
|
34
|
+
| 'greaterThanOrEquals'
|
|
35
|
+
| 'greaterThan'
|
|
36
|
+
| 'like'
|
|
37
|
+
| 'contains'
|
|
38
|
+
| 'notContains'
|
|
39
|
+
| 'startsWith'
|
|
40
|
+
| 'endsWith'
|
|
41
|
+
| 'notLike'
|
|
42
|
+
| 'inRange'
|
|
43
|
+
| 'between'
|
|
44
|
+
| 'isNull'
|
|
45
|
+
| 'inArray'
|
|
46
|
+
| 'in'
|
|
47
|
+
| 'not'
|
|
48
|
+
| 'and'
|
|
49
|
+
| 'or';
|
|
50
|
+
value?:
|
|
51
|
+
| string
|
|
52
|
+
| number
|
|
53
|
+
| boolean
|
|
54
|
+
| null
|
|
55
|
+
| (string | number | boolean | null)[];
|
|
56
|
+
children?: boolean;
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
export type OrderByDTO = {
|
|
60
|
+
field: string;
|
|
61
|
+
type: string;
|
|
62
|
+
direction?: 'ASC' | 'DESC';
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
export type SqlRequestFooterFunction = 'sum' | 'avg' | 'count' | 'max' | 'min';
|
|
66
|
+
|
|
67
|
+
export type SqlRequestDTO = {
|
|
68
|
+
columns?: string[];
|
|
69
|
+
returnColumns?: string[];
|
|
70
|
+
columnTypes?: string[];
|
|
71
|
+
totalColumns?: Record<string, SqlRequestFooterFunction>;
|
|
72
|
+
conditions?: ConditionDTO[];
|
|
73
|
+
orderBy?: OrderByDTO[];
|
|
74
|
+
start?: number;
|
|
75
|
+
length?: number;
|
|
76
|
+
getCount?: boolean;
|
|
77
|
+
unique?: boolean;
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
export type SqlRequestRow<R> = {
|
|
81
|
+
[K in keyof R]: R[K] extends string | number | null | undefined
|
|
82
|
+
? R[K]
|
|
83
|
+
: string | number | null | undefined;
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
87
|
+
export type SqlResponseDTO<T = any> = {
|
|
88
|
+
data: SqlRequestRow<T>[];
|
|
89
|
+
count?: number;
|
|
90
|
+
totals?: Record<string, string | number | null | undefined>;
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
type SqlRequestHandler<T> = (
|
|
94
|
+
request: SqlRequestDTO
|
|
95
|
+
) => Promise<SqlResponseDTO<T>>;
|
|
96
|
+
|
|
97
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
98
|
+
export const useSqlRequestHandler = <T = any>(
|
|
99
|
+
name: string
|
|
100
|
+
): [
|
|
101
|
+
SqlRequestHandler<T>,
|
|
102
|
+
SqlRequestHandler<{ Id: string }>,
|
|
103
|
+
SqlRequestHandler<Partial<T>>
|
|
104
|
+
] => [
|
|
105
|
+
useWebSocketRequestHandler<SqlRequestDTO, SqlResponseDTO<T>>(name),
|
|
106
|
+
useWebSocketRequestHandler<SqlRequestDTO, SqlResponseDTO<{ Id: string }>>(
|
|
107
|
+
name
|
|
108
|
+
),
|
|
109
|
+
useWebSocketRequestHandler<SqlRequestDTO, SqlResponseDTO<Partial<T>>>(name),
|
|
110
|
+
];
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
.animate-spin {
|
|
2
|
+
animation: spin 1s linear infinite;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.animate-pulse {
|
|
6
|
+
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
@keyframes pulse {
|
|
10
|
+
|
|
11
|
+
0%,
|
|
12
|
+
100% {
|
|
13
|
+
opacity: 1;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
50% {
|
|
17
|
+
opacity: 0.25;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
@keyframes spin {
|
|
22
|
+
|
|
23
|
+
0% {
|
|
24
|
+
transform: rotate(0deg);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
100% {
|
|
28
|
+
transform: rotate(360deg);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* latin */
|
|
2
|
+
@font-face {
|
|
3
|
+
font-family: 'Montserrat';
|
|
4
|
+
font-style: normal;
|
|
5
|
+
font-weight: 200;
|
|
6
|
+
font-display: swap;
|
|
7
|
+
src: url('../../assets/fonts/montserrat-200.woff2') format('woff2');
|
|
8
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
|
|
9
|
+
U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
|
|
10
|
+
U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/* latin */
|
|
14
|
+
@font-face {
|
|
15
|
+
font-family: 'Montserrat';
|
|
16
|
+
font-style: normal;
|
|
17
|
+
font-weight: 400;
|
|
18
|
+
font-display: swap;
|
|
19
|
+
src: url('../../assets/fonts/montserrat-500.woff2') format('woff2');
|
|
20
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
|
|
21
|
+
U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
|
|
22
|
+
U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/* latin */
|
|
26
|
+
@font-face {
|
|
27
|
+
font-family: 'Montserrat';
|
|
28
|
+
font-style: normal;
|
|
29
|
+
font-weight: 700;
|
|
30
|
+
font-display: swap;
|
|
31
|
+
src: url('../../assets/fonts/montserrat-700.woff2') format('woff2');
|
|
32
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
|
|
33
|
+
U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
|
|
34
|
+
U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/* Basic fixes */
|
|
38
|
+
ul {
|
|
39
|
+
list-style-type: none;
|
|
40
|
+
padding: 0;
|
|
41
|
+
margin: 0;
|
|
42
|
+
}
|
package/src/typings.d.ts
ADDED
package/tsconfig.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "es5",
|
|
4
|
+
"module": "commonjs",
|
|
5
|
+
"lib": ["dom", "es2015", "es2017", "es2019"],
|
|
6
|
+
"allowSyntheticDefaultImports": true,
|
|
7
|
+
"esModuleInterop": true,
|
|
8
|
+
"skipLibCheck": true,
|
|
9
|
+
"strict": true,
|
|
10
|
+
"moduleResolution": "node",
|
|
11
|
+
"declaration": true,
|
|
12
|
+
"outDir": "./dist",
|
|
13
|
+
"rootDir": "./src",
|
|
14
|
+
"jsx": "react-jsx",
|
|
15
|
+
"types": ["vite/client", "vite-plugin-svgr/client"]
|
|
16
|
+
},
|
|
17
|
+
"include": ["src"]
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"root":["./src/icons.tsx","./src/index.ts","./src/typings.d.ts","./src/components/index.ts","./src/components/data/index.ts","./src/components/data/advancedrequestdatagrid/index.tsx","./src/components/data/advancedrequestdatagrid/types.ts","./src/components/data/advancedrequestdatagrid/helpers/advancedrequests.ts","./src/components/data/advancedrequestdatagrid/helpers/columns.tsx","./src/components/data/advancedrequestdatagrid/helpers/index.ts","./src/components/data/datagrid/datagridcell.tsx","./src/components/data/datagrid/datagrideditablecell.tsx","./src/components/data/datagrid/datagridfooter.tsx","./src/components/data/datagrid/datagridheader.tsx","./src/components/data/datagrid/datagridheadercell.tsx","./src/components/data/datagrid/virtualscroller.tsx","./src/components/data/datagrid/index.tsx","./src/components/data/datagrid/styles.ts","./src/components/data/datagrid/types.ts","./src/components/data/datagrid/datagridcolumnsmodal/helpers.ts","./src/components/data/datagrid/datagridcolumnsmodal/hooks.tsx","./src/components/data/datagrid/datagridcolumnsmodal/index.tsx","./src/components/data/datagrid/datagridcolumnsmodal/styles.ts","./src/components/data/datagrid/datagridfiltermenu/filtervaluesscroller.tsx","./src/components/data/datagrid/datagridfiltermenu/hooks.tsx","./src/components/data/datagrid/datagridfiltermenu/index.tsx","./src/components/data/datagrid/datagridfiltermenu/styles.ts","./src/components/data/datagrid/filtermodalcontent/index.tsx","./src/components/data/datagrid/filtermodalcontent/styles.ts","./src/components/data/datagrid/helpers/columns.tsx","./src/components/data/datagrid/helpers/filters.ts","./src/components/data/datagrid/helpers/index.ts","./src/components/data/datagrid/hooks/index.ts","./src/components/data/datagrid/hooks/usedatagrid.tsx","./src/components/data/datagrid/hooks/usedatagridcopy.ts","./src/components/data/datagrid/hooks/usedatagridsettings.ts","./src/components/data/sqlrequestdatagrid/index.tsx","./src/components/data/sqlrequestdatagrid/types.ts","./src/components/data/sqlrequestdatagrid/helpers/columns.tsx","./src/components/data/sqlrequestdatagrid/helpers/index.ts","./src/components/data/sqlrequestdatagrid/helpers/sqlrequests.ts","./src/components/forms/button.tsx","./src/components/forms/iconbutton.tsx","./src/components/forms/indeterminatecheckbox.tsx","./src/components/forms/select.tsx","./src/components/forms/index.ts","./src/components/forms/styles.ts","./src/components/layout/index.ts","./src/components/layout/dropdown/index.tsx","./src/components/layout/dropdown/styles.ts","./src/components/layout/loading/index.tsx","./src/components/layout/loading/styles.ts","./src/components/layout/modal/index.tsx","./src/components/layout/modal/styles.ts","./src/components/ui/contextmenu/index.tsx","./src/components/ui/contextmenu/styles.ts","./src/config/index.ts","./src/helpers/dates.ts","./src/helpers/getscrollbarsize.ts","./src/helpers/numbers.ts","./src/hooks/index.ts","./src/hooks/useelementsize.ts","./src/hooks/usewindowsize.ts","./src/providers/hooks.ts","./src/providers/index.ts","./src/providers/portalsprovider/index.tsx","./src/providers/portalsprovider/styles.ts","./src/providers/settingsprovider/index.tsx","./src/providers/themeprovider/themeprovider.ts","./src/providers/themeprovider/defaulttheme.ts","./src/providers/themeprovider/index.ts","./src/providers/themeprovider/types.ts","./src/providers/uiproviders/index.tsx","./src/providers/uiproviders/styles.ts","./src/services/httpservice.ts","./src/services/websocketservice.ts","./src/services/advancedrequests.ts","./src/services/base.ts","./src/services/globalsearch.ts","./src/services/hooks.ts","./src/services/index.ts","./src/services/sqlrequests.ts"],"version":"5.6.2"}
|