@skalfa/skalfa-app 1.0.0 → 1.0.1
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/.env.example +43 -43
- package/.github/workflows/publish.yml +39 -0
- package/CONTRIBUTING.md +45 -0
- package/LICENSE +21 -0
- package/README.md +91 -28
- package/app/auth/edit/page.tsx +65 -65
- package/app/auth/login/page.tsx +63 -63
- package/app/auth/me/page.tsx +58 -58
- package/app/auth/register/page.tsx +69 -69
- package/app/auth/verify/page.tsx +53 -53
- package/app/dashboard/user/page.tsx +76 -76
- package/app/layout.tsx +37 -37
- package/app/manifest.ts +25 -0
- package/app/page.tsx +13 -13
- package/barrels.json +5 -5
- package/blueprints/starter.blueprint.json +102 -102
- package/bun.lock +916 -0
- package/components/base.components/chip/Chip.component.tsx +39 -39
- package/components/base.components/document/DocumentViewer.component.tsx +163 -163
- package/components/base.components/document/ExportExcel.component.tsx +340 -340
- package/components/base.components/document/ImportExcel.component.tsx +315 -315
- package/components/base.components/document/PrintTable.component.tsx +204 -204
- package/components/base.components/document/RenderPDF.component.tsx +415 -415
- package/components/base.components/input/Checkbox.component.tsx +109 -109
- package/components/base.components/input/Input.component.tsx +332 -332
- package/components/base.components/input/InputCheckbox.component.tsx +174 -174
- package/components/base.components/input/InputCurrency.component.tsx +163 -163
- package/components/base.components/input/InputDate.component.tsx +352 -352
- package/components/base.components/input/InputDatetime.component.tsx +260 -260
- package/components/base.components/input/InputDocument.component.tsx +351 -351
- package/components/base.components/input/InputImage.component.tsx +533 -533
- package/components/base.components/input/InputMap.component.tsx +317 -317
- package/components/base.components/input/InputNumber.component.tsx +192 -192
- package/components/base.components/input/InputOtp.component.tsx +169 -169
- package/components/base.components/input/InputPassword.component.tsx +236 -236
- package/components/base.components/input/InputRadio.component.tsx +175 -175
- package/components/base.components/input/InputTime.component.tsx +275 -275
- package/components/base.components/input/InputValues.component.tsx +68 -68
- package/components/base.components/input/Radio.component.tsx +102 -102
- package/components/base.components/input/Select.component.tsx +541 -541
- package/components/base.components/modal/BottomSheet.component.tsx +245 -245
- package/components/base.components/supervision/FormSupervision.component.tsx +433 -433
- package/components/base.components/supervision/TableSupervision.component.tsx +697 -697
- package/components/base.components/table/ControlBar.component.tsx +497 -497
- package/components/base.components/table/FilterComponent.tsx +518 -518
- package/components/base.components/table/Table.component.tsx +469 -469
- package/components/base.components/typography/TypographyArticle.component.tsx +26 -26
- package/components/base.components/typography/TypographyColumn.component.tsx +20 -20
- package/components/base.components/typography/TypographyContent.component.tsx +20 -20
- package/components/base.components/typography/TypographyTips.component.tsx +20 -20
- package/components/base.components/wrap/Draggable.component.tsx +303 -303
- package/components/base.components/wrap/IDBProvider.tsx +12 -12
- package/components/base.components/wrap/Image.component.tsx +9 -9
- package/components/base.components/wrap/ShortcutProvider.tsx +57 -57
- package/components/base.components/wrap/Swipe.component.tsx +93 -93
- package/components/index.ts +2 -2
- package/contexts/AppProvider.tsx +11 -11
- package/contexts/Auth.context.tsx +64 -64
- package/contexts/Toggle.context.tsx +44 -44
- package/next.config.ts +15 -1
- package/package.json +14 -13
- package/public/204.svg +19 -19
- package/public/500.svg +39 -39
- package/public/icon-192.png +0 -0
- package/public/icon-512.png +0 -0
- package/public/images/logo-fill.png +0 -0
- package/public/images/logo-full-fill.png +0 -0
- package/public/images/logo-full.png +0 -0
- package/public/images/logo.png +0 -0
- package/schema/idb/app.schema.ts +8 -8
- package/src-tauri/Cargo.toml +14 -0
- package/src-tauri/build.rs +3 -0
- package/src-tauri/capabilities/default.json +11 -0
- package/src-tauri/icons/128x128.png +0 -0
- package/src-tauri/icons/128x128@2x.png +0 -0
- package/src-tauri/icons/32x32.png +0 -0
- package/src-tauri/icons/icon.icns +0 -0
- package/src-tauri/icons/icon.ico +0 -0
- package/src-tauri/src/main.rs +7 -0
- package/src-tauri/tauri.conf.json +36 -0
- package/styles/globals.css +231 -231
- package/styles/tailwind.safelist +68 -68
- package/utils/commands/barrels.ts +27 -27
- package/utils/commands/light.ts +21 -21
- package/utils/commands/logger.ts +42 -42
- package/utils/commands/stubs/table-blueprint.stub +12 -12
- package/utils/commands/use-pdf.ts +29 -29
|
@@ -1,175 +1,175 @@
|
|
|
1
|
-
"use client"
|
|
2
|
-
|
|
3
|
-
import { ReactNode, useEffect, useState } from "react";
|
|
4
|
-
import { api, ApiType, cn, pcn, useInputHandler, useValidation, validation, ValidationRules } from "@utils";
|
|
5
|
-
import { RadioComponent } from "@components";
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
type CT = "label" | "tip" | "error" | "input" | "icon";
|
|
10
|
-
|
|
11
|
-
export type InputRadioOptionProps = {
|
|
12
|
-
value: string | number;
|
|
13
|
-
label: string;
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
export type InputRadioProps = {
|
|
17
|
-
name : string;
|
|
18
|
-
label ?: string;
|
|
19
|
-
tip ?: string | ReactNode;
|
|
20
|
-
vertical ?: boolean;
|
|
21
|
-
|
|
22
|
-
value ?: string | number;
|
|
23
|
-
disabled ?: boolean;
|
|
24
|
-
invalid ?: string;
|
|
25
|
-
options ?: InputRadioOptionProps[];
|
|
26
|
-
serverOptionControl ?: ApiType;
|
|
27
|
-
customOptions ?: any;
|
|
28
|
-
validations ?: ValidationRules;
|
|
29
|
-
|
|
30
|
-
onChange ?: (value: string | number) => any;
|
|
31
|
-
register ?: (name: string, validations?: ValidationRules) => void;
|
|
32
|
-
unregister ?: (name: string) => void;
|
|
33
|
-
|
|
34
|
-
/** Use custom class with: "label::", "tip::", "error::", "icon::", "suggest::", "suggest-item::". */
|
|
35
|
-
className ?: string;
|
|
36
|
-
/** Use custom class with: "label::", "checked::", "error::". */
|
|
37
|
-
classNameCheckbox ?: string;
|
|
38
|
-
};
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
export function InputRadioComponent({
|
|
43
|
-
name,
|
|
44
|
-
label,
|
|
45
|
-
tip,
|
|
46
|
-
vertical,
|
|
47
|
-
|
|
48
|
-
value,
|
|
49
|
-
disabled,
|
|
50
|
-
invalid,
|
|
51
|
-
|
|
52
|
-
options,
|
|
53
|
-
serverOptionControl,
|
|
54
|
-
customOptions,
|
|
55
|
-
validations,
|
|
56
|
-
|
|
57
|
-
onChange,
|
|
58
|
-
register,
|
|
59
|
-
unregister,
|
|
60
|
-
|
|
61
|
-
className = "",
|
|
62
|
-
classNameCheckbox = "",
|
|
63
|
-
}: InputRadioProps) {
|
|
64
|
-
const [dataOptions, setDataOptions] = useState<InputRadioOptionProps[]>([]);
|
|
65
|
-
const [loading, setLoading] = useState(false);
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
// =========================>
|
|
69
|
-
// ## Initial
|
|
70
|
-
// =========================>
|
|
71
|
-
const inputHandler = useInputHandler(name, value, validations, register, unregister, false)
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
// =========================>
|
|
75
|
-
// ## Invalid handler
|
|
76
|
-
// =========================>
|
|
77
|
-
const [invalidMessage] = useValidation(inputHandler.value, validations, invalid, inputHandler.idle);
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
// =========================>
|
|
81
|
-
// ## Fetch option
|
|
82
|
-
// =========================>
|
|
83
|
-
useEffect(() => {
|
|
84
|
-
const fetchOptions = async () => {
|
|
85
|
-
setLoading(true);
|
|
86
|
-
const mutateOptions = await api(serverOptionControl || {});
|
|
87
|
-
if (mutateOptions?.status == 200) {
|
|
88
|
-
customOptions
|
|
89
|
-
? setDataOptions([customOptions, ...mutateOptions.data])
|
|
90
|
-
: setDataOptions(mutateOptions.data);
|
|
91
|
-
setLoading(false);
|
|
92
|
-
}
|
|
93
|
-
};
|
|
94
|
-
|
|
95
|
-
if (serverOptionControl?.path || serverOptionControl?.url) {
|
|
96
|
-
fetchOptions();
|
|
97
|
-
} else {
|
|
98
|
-
!options && setDataOptions([]);
|
|
99
|
-
}
|
|
100
|
-
}, [serverOptionControl?.path, serverOptionControl?.url]);
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
return (
|
|
104
|
-
<>
|
|
105
|
-
<div className="w-full relative flex flex-col gap-y-0.5">
|
|
106
|
-
<label
|
|
107
|
-
className={cn(
|
|
108
|
-
"input-label",
|
|
109
|
-
pcn<CT>(className, "label"),
|
|
110
|
-
disabled && "opacity-50",
|
|
111
|
-
disabled && pcn<CT>(className, "label", "disabled"),
|
|
112
|
-
!!invalidMessage && "text-danger",
|
|
113
|
-
!!invalidMessage && pcn<CT>(className, "label", "focus"),
|
|
114
|
-
)}
|
|
115
|
-
>
|
|
116
|
-
{label}
|
|
117
|
-
{validations && validation.hasRules(validations, "required") && <span className="text-danger ml-1">*</span>}
|
|
118
|
-
</label>
|
|
119
|
-
|
|
120
|
-
{tip && (
|
|
121
|
-
<small
|
|
122
|
-
className={cn(
|
|
123
|
-
"input-tip",
|
|
124
|
-
pcn<CT>(className, "tip"),
|
|
125
|
-
disabled && "opacity-60",
|
|
126
|
-
disabled && pcn<CT>(className, "tip", "disabled"),
|
|
127
|
-
)}
|
|
128
|
-
>{tip}</small>
|
|
129
|
-
)}
|
|
130
|
-
|
|
131
|
-
<div
|
|
132
|
-
className={cn(
|
|
133
|
-
`input overflow-auto input-scroll w-full flex flex-nowrap gap-y-2 gap-4 ${
|
|
134
|
-
vertical && `flex-col flex-wrap ${vertical}`
|
|
135
|
-
}`,
|
|
136
|
-
pcn<CT>(className, "input"),
|
|
137
|
-
!!invalidMessage && "input-error",
|
|
138
|
-
!!invalidMessage && pcn<CT>(className, "input", "error"),
|
|
139
|
-
)}
|
|
140
|
-
>
|
|
141
|
-
{loading && (vertical ? [1, 2, 3, 4, 5, 6, 7, 8, 9] : [1, 2, 3]).map((_, key) => {
|
|
142
|
-
return <div key={key} className="w-1/3 h-6 rounded-lg"></div>;
|
|
143
|
-
})}
|
|
144
|
-
|
|
145
|
-
{(options || dataOptions) &&
|
|
146
|
-
(options || dataOptions)?.map((option, key) => {
|
|
147
|
-
return (
|
|
148
|
-
<RadioComponent
|
|
149
|
-
key={key}
|
|
150
|
-
label={option.label}
|
|
151
|
-
name={`option[${option.value}]#${name}`}
|
|
152
|
-
checked={inputHandler.value == option.value}
|
|
153
|
-
disabled={disabled}
|
|
154
|
-
className={classNameCheckbox}
|
|
155
|
-
onChange={() => {
|
|
156
|
-
if (inputHandler.value == option.value) {
|
|
157
|
-
inputHandler.setValue("");
|
|
158
|
-
onChange?.("");
|
|
159
|
-
} else {
|
|
160
|
-
inputHandler.setValue(option.value || "");
|
|
161
|
-
onChange?.(option.value || "");
|
|
162
|
-
}
|
|
163
|
-
}}
|
|
164
|
-
/>
|
|
165
|
-
);
|
|
166
|
-
})}
|
|
167
|
-
</div>
|
|
168
|
-
|
|
169
|
-
{invalidMessage && (
|
|
170
|
-
<small className={cn("input-error-message", pcn<CT>(className, "error"))}>{invalidMessage}</small>
|
|
171
|
-
)}
|
|
172
|
-
</div>
|
|
173
|
-
</>
|
|
174
|
-
);
|
|
175
|
-
}
|
|
1
|
+
"use client"
|
|
2
|
+
|
|
3
|
+
import { ReactNode, useEffect, useState } from "react";
|
|
4
|
+
import { api, ApiType, cn, pcn, useInputHandler, useValidation, validation, ValidationRules } from "@utils";
|
|
5
|
+
import { RadioComponent } from "@components";
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
type CT = "label" | "tip" | "error" | "input" | "icon";
|
|
10
|
+
|
|
11
|
+
export type InputRadioOptionProps = {
|
|
12
|
+
value: string | number;
|
|
13
|
+
label: string;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export type InputRadioProps = {
|
|
17
|
+
name : string;
|
|
18
|
+
label ?: string;
|
|
19
|
+
tip ?: string | ReactNode;
|
|
20
|
+
vertical ?: boolean;
|
|
21
|
+
|
|
22
|
+
value ?: string | number;
|
|
23
|
+
disabled ?: boolean;
|
|
24
|
+
invalid ?: string;
|
|
25
|
+
options ?: InputRadioOptionProps[];
|
|
26
|
+
serverOptionControl ?: ApiType;
|
|
27
|
+
customOptions ?: any;
|
|
28
|
+
validations ?: ValidationRules;
|
|
29
|
+
|
|
30
|
+
onChange ?: (value: string | number) => any;
|
|
31
|
+
register ?: (name: string, validations?: ValidationRules) => void;
|
|
32
|
+
unregister ?: (name: string) => void;
|
|
33
|
+
|
|
34
|
+
/** Use custom class with: "label::", "tip::", "error::", "icon::", "suggest::", "suggest-item::". */
|
|
35
|
+
className ?: string;
|
|
36
|
+
/** Use custom class with: "label::", "checked::", "error::". */
|
|
37
|
+
classNameCheckbox ?: string;
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
export function InputRadioComponent({
|
|
43
|
+
name,
|
|
44
|
+
label,
|
|
45
|
+
tip,
|
|
46
|
+
vertical,
|
|
47
|
+
|
|
48
|
+
value,
|
|
49
|
+
disabled,
|
|
50
|
+
invalid,
|
|
51
|
+
|
|
52
|
+
options,
|
|
53
|
+
serverOptionControl,
|
|
54
|
+
customOptions,
|
|
55
|
+
validations,
|
|
56
|
+
|
|
57
|
+
onChange,
|
|
58
|
+
register,
|
|
59
|
+
unregister,
|
|
60
|
+
|
|
61
|
+
className = "",
|
|
62
|
+
classNameCheckbox = "",
|
|
63
|
+
}: InputRadioProps) {
|
|
64
|
+
const [dataOptions, setDataOptions] = useState<InputRadioOptionProps[]>([]);
|
|
65
|
+
const [loading, setLoading] = useState(false);
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
// =========================>
|
|
69
|
+
// ## Initial
|
|
70
|
+
// =========================>
|
|
71
|
+
const inputHandler = useInputHandler(name, value, validations, register, unregister, false)
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
// =========================>
|
|
75
|
+
// ## Invalid handler
|
|
76
|
+
// =========================>
|
|
77
|
+
const [invalidMessage] = useValidation(inputHandler.value, validations, invalid, inputHandler.idle);
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
// =========================>
|
|
81
|
+
// ## Fetch option
|
|
82
|
+
// =========================>
|
|
83
|
+
useEffect(() => {
|
|
84
|
+
const fetchOptions = async () => {
|
|
85
|
+
setLoading(true);
|
|
86
|
+
const mutateOptions = await api(serverOptionControl || {});
|
|
87
|
+
if (mutateOptions?.status == 200) {
|
|
88
|
+
customOptions
|
|
89
|
+
? setDataOptions([customOptions, ...mutateOptions.data])
|
|
90
|
+
: setDataOptions(mutateOptions.data);
|
|
91
|
+
setLoading(false);
|
|
92
|
+
}
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
if (serverOptionControl?.path || serverOptionControl?.url) {
|
|
96
|
+
fetchOptions();
|
|
97
|
+
} else {
|
|
98
|
+
!options && setDataOptions([]);
|
|
99
|
+
}
|
|
100
|
+
}, [serverOptionControl?.path, serverOptionControl?.url]);
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
return (
|
|
104
|
+
<>
|
|
105
|
+
<div className="w-full relative flex flex-col gap-y-0.5">
|
|
106
|
+
<label
|
|
107
|
+
className={cn(
|
|
108
|
+
"input-label",
|
|
109
|
+
pcn<CT>(className, "label"),
|
|
110
|
+
disabled && "opacity-50",
|
|
111
|
+
disabled && pcn<CT>(className, "label", "disabled"),
|
|
112
|
+
!!invalidMessage && "text-danger",
|
|
113
|
+
!!invalidMessage && pcn<CT>(className, "label", "focus"),
|
|
114
|
+
)}
|
|
115
|
+
>
|
|
116
|
+
{label}
|
|
117
|
+
{validations && validation.hasRules(validations, "required") && <span className="text-danger ml-1">*</span>}
|
|
118
|
+
</label>
|
|
119
|
+
|
|
120
|
+
{tip && (
|
|
121
|
+
<small
|
|
122
|
+
className={cn(
|
|
123
|
+
"input-tip",
|
|
124
|
+
pcn<CT>(className, "tip"),
|
|
125
|
+
disabled && "opacity-60",
|
|
126
|
+
disabled && pcn<CT>(className, "tip", "disabled"),
|
|
127
|
+
)}
|
|
128
|
+
>{tip}</small>
|
|
129
|
+
)}
|
|
130
|
+
|
|
131
|
+
<div
|
|
132
|
+
className={cn(
|
|
133
|
+
`input overflow-auto input-scroll w-full flex flex-nowrap gap-y-2 gap-4 ${
|
|
134
|
+
vertical && `flex-col flex-wrap ${vertical}`
|
|
135
|
+
}`,
|
|
136
|
+
pcn<CT>(className, "input"),
|
|
137
|
+
!!invalidMessage && "input-error",
|
|
138
|
+
!!invalidMessage && pcn<CT>(className, "input", "error"),
|
|
139
|
+
)}
|
|
140
|
+
>
|
|
141
|
+
{loading && (vertical ? [1, 2, 3, 4, 5, 6, 7, 8, 9] : [1, 2, 3]).map((_, key) => {
|
|
142
|
+
return <div key={key} className="w-1/3 h-6 rounded-lg"></div>;
|
|
143
|
+
})}
|
|
144
|
+
|
|
145
|
+
{(options || dataOptions) &&
|
|
146
|
+
(options || dataOptions)?.map((option, key) => {
|
|
147
|
+
return (
|
|
148
|
+
<RadioComponent
|
|
149
|
+
key={key}
|
|
150
|
+
label={option.label}
|
|
151
|
+
name={`option[${option.value}]#${name}`}
|
|
152
|
+
checked={inputHandler.value == option.value}
|
|
153
|
+
disabled={disabled}
|
|
154
|
+
className={classNameCheckbox}
|
|
155
|
+
onChange={() => {
|
|
156
|
+
if (inputHandler.value == option.value) {
|
|
157
|
+
inputHandler.setValue("");
|
|
158
|
+
onChange?.("");
|
|
159
|
+
} else {
|
|
160
|
+
inputHandler.setValue(option.value || "");
|
|
161
|
+
onChange?.(option.value || "");
|
|
162
|
+
}
|
|
163
|
+
}}
|
|
164
|
+
/>
|
|
165
|
+
);
|
|
166
|
+
})}
|
|
167
|
+
</div>
|
|
168
|
+
|
|
169
|
+
{invalidMessage && (
|
|
170
|
+
<small className={cn("input-error-message", pcn<CT>(className, "error"))}>{invalidMessage}</small>
|
|
171
|
+
)}
|
|
172
|
+
</div>
|
|
173
|
+
</>
|
|
174
|
+
);
|
|
175
|
+
}
|