@skalfa/skalfa-app 1.0.0 → 1.0.2

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 (87) hide show
  1. package/.env.example +43 -43
  2. package/.github/workflows/publish.yml +39 -0
  3. package/CONTRIBUTING.md +45 -0
  4. package/LICENSE +21 -0
  5. package/README.md +91 -28
  6. package/app/auth/edit/page.tsx +65 -65
  7. package/app/auth/login/page.tsx +63 -63
  8. package/app/auth/me/page.tsx +58 -58
  9. package/app/auth/register/page.tsx +69 -69
  10. package/app/auth/verify/page.tsx +53 -53
  11. package/app/dashboard/user/page.tsx +76 -76
  12. package/app/layout.tsx +37 -37
  13. package/app/manifest.ts +25 -0
  14. package/app/page.tsx +13 -13
  15. package/barrels.json +5 -5
  16. package/blueprints/starter.blueprint.json +102 -102
  17. package/bun.lock +916 -0
  18. package/components/base.components/chip/Chip.component.tsx +39 -39
  19. package/components/base.components/document/DocumentViewer.component.tsx +163 -163
  20. package/components/base.components/document/ExportExcel.component.tsx +340 -340
  21. package/components/base.components/document/ImportExcel.component.tsx +315 -315
  22. package/components/base.components/document/PrintTable.component.tsx +204 -204
  23. package/components/base.components/document/RenderPDF.component.tsx +415 -415
  24. package/components/base.components/input/Checkbox.component.tsx +109 -109
  25. package/components/base.components/input/Input.component.tsx +332 -332
  26. package/components/base.components/input/InputCheckbox.component.tsx +174 -174
  27. package/components/base.components/input/InputCurrency.component.tsx +163 -163
  28. package/components/base.components/input/InputDate.component.tsx +352 -352
  29. package/components/base.components/input/InputDatetime.component.tsx +260 -260
  30. package/components/base.components/input/InputDocument.component.tsx +351 -351
  31. package/components/base.components/input/InputImage.component.tsx +533 -533
  32. package/components/base.components/input/InputMap.component.tsx +317 -317
  33. package/components/base.components/input/InputNumber.component.tsx +192 -192
  34. package/components/base.components/input/InputOtp.component.tsx +169 -169
  35. package/components/base.components/input/InputPassword.component.tsx +236 -236
  36. package/components/base.components/input/InputRadio.component.tsx +175 -175
  37. package/components/base.components/input/InputTime.component.tsx +275 -275
  38. package/components/base.components/input/InputValues.component.tsx +68 -68
  39. package/components/base.components/input/Radio.component.tsx +102 -102
  40. package/components/base.components/input/Select.component.tsx +541 -541
  41. package/components/base.components/modal/BottomSheet.component.tsx +245 -245
  42. package/components/base.components/supervision/FormSupervision.component.tsx +433 -433
  43. package/components/base.components/supervision/TableSupervision.component.tsx +697 -697
  44. package/components/base.components/table/ControlBar.component.tsx +497 -497
  45. package/components/base.components/table/FilterComponent.tsx +518 -518
  46. package/components/base.components/table/Table.component.tsx +469 -469
  47. package/components/base.components/typography/TypographyArticle.component.tsx +26 -26
  48. package/components/base.components/typography/TypographyColumn.component.tsx +20 -20
  49. package/components/base.components/typography/TypographyContent.component.tsx +20 -20
  50. package/components/base.components/typography/TypographyTips.component.tsx +20 -20
  51. package/components/base.components/wrap/Draggable.component.tsx +303 -303
  52. package/components/base.components/wrap/IDBProvider.tsx +12 -12
  53. package/components/base.components/wrap/Image.component.tsx +9 -9
  54. package/components/base.components/wrap/ShortcutProvider.tsx +57 -57
  55. package/components/base.components/wrap/Swipe.component.tsx +93 -93
  56. package/components/index.ts +2 -2
  57. package/contexts/AppProvider.tsx +11 -11
  58. package/contexts/Auth.context.tsx +64 -64
  59. package/contexts/Toggle.context.tsx +44 -44
  60. package/next.config.ts +15 -1
  61. package/package.json +14 -13
  62. package/public/204.svg +19 -19
  63. package/public/500.svg +39 -39
  64. package/public/icon-192.png +0 -0
  65. package/public/icon-512.png +0 -0
  66. package/public/images/logo-fill.png +0 -0
  67. package/public/images/logo-full-fill.png +0 -0
  68. package/public/images/logo-full.png +0 -0
  69. package/public/images/logo.png +0 -0
  70. package/schema/idb/app.schema.ts +8 -8
  71. package/src-tauri/Cargo.toml +14 -0
  72. package/src-tauri/build.rs +3 -0
  73. package/src-tauri/capabilities/default.json +11 -0
  74. package/src-tauri/icons/128x128.png +0 -0
  75. package/src-tauri/icons/128x128@2x.png +0 -0
  76. package/src-tauri/icons/32x32.png +0 -0
  77. package/src-tauri/icons/icon.icns +0 -0
  78. package/src-tauri/icons/icon.ico +0 -0
  79. package/src-tauri/src/main.rs +7 -0
  80. package/src-tauri/tauri.conf.json +36 -0
  81. package/styles/globals.css +231 -231
  82. package/styles/tailwind.safelist +68 -68
  83. package/utils/commands/barrels.ts +27 -27
  84. package/utils/commands/light.ts +21 -21
  85. package/utils/commands/logger.ts +42 -42
  86. package/utils/commands/stubs/table-blueprint.stub +12 -12
  87. package/utils/commands/use-pdf.ts +29 -29
@@ -1,260 +1,260 @@
1
- "use client"
2
-
3
- import { InputHTMLAttributes, ReactNode, useEffect, useState } from "react";
4
- import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
5
- import { cn, pcn, useInputHandler, useInputRandomId, useResponsive, useValidation, validation, ValidationRules } from "@utils";
6
- import { OutsideClickComponent, InputDatePickerComponent, InputTimePickerComponent, BottomSheetComponent, ButtonComponent, TabbarComponent } from "@components";
7
-
8
-
9
-
10
- type CT = "label" | "tip" | "error" | "input" | "icon";
11
-
12
- export interface InputDateTimeProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "onChange"> {
13
- label ?: string;
14
- tip ?: string | ReactNode;
15
- leftIcon ?: any;
16
- rightIcon ?: any;
17
-
18
- value ?: string;
19
- invalid ?: string;
20
- validations ?: ValidationRules;
21
-
22
- onChange ?: (value: string) => any;
23
- register ?: (name: string, validations?: ValidationRules) => void;
24
- unregister ?: (name: string) => void;
25
-
26
- /** Use custom class with: "label::", "tip::", "error::", "icon::", "suggest::", "suggest-item::". */
27
- className ?: string;
28
- }
29
-
30
-
31
-
32
- export function InputDatetimeComponent({
33
- label,
34
- tip,
35
- leftIcon,
36
- rightIcon,
37
-
38
- value,
39
- invalid,
40
- validations,
41
-
42
- register,
43
- unregister,
44
- onChange,
45
-
46
- className = "",
47
- ...props
48
- }: InputDateTimeProps) {
49
- const { isSm } = useResponsive();
50
-
51
- const [pickerType, setPickerType] = useState<"date" | "time">("date");
52
- const [dateValue, setDateValue] = useState("");
53
- const [timeValue, setTimeValue] = useState("");
54
-
55
-
56
- // =========================>
57
- // ## Initial
58
- // =========================>
59
- const inputHandler = useInputHandler(props.name, value, validations, register, unregister, false)
60
- const randomId = useInputRandomId()
61
-
62
-
63
- // =========================>
64
- // ## Invalid handler
65
- // =========================>
66
- const [invalidMessage] = useValidation(inputHandler.value, validations, invalid, inputHandler.idle);
67
-
68
-
69
- // =========================>
70
- // ## change value handler
71
- // =========================>
72
- useEffect(() => {
73
- inputHandler.setValue(value || "");
74
- value && inputHandler.setValue(false);
75
-
76
- if (value) {
77
- const [d, t] = value.split(" ");
78
- setDateValue(d || "");
79
- setTimeValue(t || "");
80
- }
81
- }, [value]);
82
-
83
-
84
- const handleChange = (date: string, time: string) => {
85
- const newVal = `${date} ${time}`;
86
- inputHandler.setValue(newVal.trim());
87
- onChange?.(newVal.trim());
88
- };
89
-
90
-
91
- return (
92
- <>
93
- <div className="relative flex flex-col gap-y-0.5">
94
- <label
95
- htmlFor={randomId}
96
- className={cn(
97
- "input-label",
98
- pcn<CT>(className, "label"),
99
- props.disabled && "opacity-50",
100
- inputHandler.focus && "text-primary",
101
- !!invalidMessage && "text-danger"
102
- )}
103
- >
104
- {label}
105
- {validations && validation.hasRules(validations, "required") && <span className="text-danger ml-1">*</span>}
106
- </label>
107
-
108
- {tip && (
109
- <small
110
- className={cn(
111
- "input-tip",
112
- pcn<CT>(className, "tip"),
113
- props.disabled && "opacity-60"
114
- )}
115
- >{tip}</small>
116
- )}
117
-
118
- <OutsideClickComponent onOutsideClick={!isSm ? () => inputHandler.setFocus(false) : undefined}>
119
- <div className="relative">
120
- <input
121
- {...props}
122
- id={randomId}
123
- readOnly
124
- className={cn(
125
- "input",
126
- leftIcon && "pl-12",
127
- rightIcon && "pr-12",
128
- pcn<CT>(className, "input"),
129
- !!invalidMessage && "input-error"
130
- )}
131
- value={inputHandler.value}
132
- onFocus={(e) => {
133
- props.onFocus?.(e);
134
- inputHandler.setFocus(true);
135
- }}
136
- autoComplete="off"
137
- inputMode={isSm ? "none" : undefined}
138
- />
139
-
140
- {leftIcon && (
141
- <FontAwesomeIcon
142
- className={cn(
143
- "left-4 input-icon",
144
- pcn<CT>(className, "icon"),
145
- props.disabled && "opacity-60",
146
- inputHandler.focus && "text-primary"
147
- )}
148
- icon={leftIcon}
149
- />
150
- )}
151
-
152
- {rightIcon && (
153
- <FontAwesomeIcon
154
- className={cn(
155
- "right-4 input-icon",
156
- pcn<CT>(className, "icon"),
157
- props.disabled && "opacity-60",
158
- inputHandler.focus && "text-primary"
159
- )}
160
- icon={rightIcon}
161
- />
162
- )}
163
-
164
- {!isSm && inputHandler.focus && (
165
- <>
166
- <div className="absolute z-50 top-full right-0 mt-1 w-max bg-background border rounded-[6px] p-2 shadow min-w-[350]">
167
- <TabbarComponent
168
- items={[
169
- {
170
- label: "Tanggal",
171
- value: 'date'
172
- },
173
- {
174
- label: "Jam",
175
- value: 'time'
176
- },
177
- ]}
178
- active={pickerType}
179
- onChange={(e) => setPickerType(e as "time" | "date")}
180
- className="mb-4"
181
- />
182
- {pickerType === "date" ? (
183
- <InputDatePickerComponent
184
- onChange={(e) => {
185
- setDateValue(e);
186
- handleChange(e, timeValue);
187
- }}
188
- />
189
- ) : (
190
- <InputTimePickerComponent
191
- onChange={(e) => {
192
- setTimeValue(e);
193
- handleChange(dateValue, e);
194
- }}
195
- />
196
- )}
197
- </div>
198
- </>
199
- )}
200
- </div>
201
- </OutsideClickComponent>
202
-
203
- {invalidMessage && (
204
- <small className={cn("input-error-message", pcn<CT>(className, "error"))}>{invalidMessage}</small>
205
- )}
206
- </div>
207
-
208
- {isSm && (
209
- <BottomSheetComponent
210
- show={inputHandler.focus}
211
- onClose={() => inputHandler.setFocus(false)}
212
- size={430}
213
- footer={
214
- <div className="p-4">
215
- <ButtonComponent
216
- label="Selesai"
217
- variant="outline"
218
- onClick={() => inputHandler.setFocus(false)}
219
- block
220
- />
221
- </div>
222
- }
223
- >
224
- <div className="p-4">
225
- <TabbarComponent
226
- items={[
227
- {
228
- label: "Tanggal",
229
- value: 'date'
230
- },
231
- {
232
- label: "Jam",
233
- value: 'time'
234
- },
235
- ]}
236
- active={pickerType}
237
- onChange={(e) => setPickerType(e as "time" | "date")}
238
- className="mb-4"
239
- />
240
- {pickerType === "date" ? (
241
- <InputDatePickerComponent
242
- onChange={(e) => {
243
- setDateValue(e);
244
- handleChange(e, timeValue);
245
- }}
246
- />
247
- ) : (
248
- <InputTimePickerComponent
249
- onChange={(e) => {
250
- setTimeValue(e);
251
- handleChange(dateValue, e);
252
- }}
253
- />
254
- )}
255
- </div>
256
- </BottomSheetComponent>
257
- )}
258
- </>
259
- );
260
- }
1
+ "use client"
2
+
3
+ import { InputHTMLAttributes, ReactNode, useEffect, useState } from "react";
4
+ import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
5
+ import { cn, pcn, useInputHandler, useInputRandomId, useResponsive, useValidation, validation, ValidationRules } from "@utils";
6
+ import { OutsideClickComponent, InputDatePickerComponent, InputTimePickerComponent, BottomSheetComponent, ButtonComponent, TabbarComponent } from "@components";
7
+
8
+
9
+
10
+ type CT = "label" | "tip" | "error" | "input" | "icon";
11
+
12
+ export interface InputDateTimeProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "onChange"> {
13
+ label ?: string;
14
+ tip ?: string | ReactNode;
15
+ leftIcon ?: any;
16
+ rightIcon ?: any;
17
+
18
+ value ?: string;
19
+ invalid ?: string;
20
+ validations ?: ValidationRules;
21
+
22
+ onChange ?: (value: string) => any;
23
+ register ?: (name: string, validations?: ValidationRules) => void;
24
+ unregister ?: (name: string) => void;
25
+
26
+ /** Use custom class with: "label::", "tip::", "error::", "icon::", "suggest::", "suggest-item::". */
27
+ className ?: string;
28
+ }
29
+
30
+
31
+
32
+ export function InputDatetimeComponent({
33
+ label,
34
+ tip,
35
+ leftIcon,
36
+ rightIcon,
37
+
38
+ value,
39
+ invalid,
40
+ validations,
41
+
42
+ register,
43
+ unregister,
44
+ onChange,
45
+
46
+ className = "",
47
+ ...props
48
+ }: InputDateTimeProps) {
49
+ const { isSm } = useResponsive();
50
+
51
+ const [pickerType, setPickerType] = useState<"date" | "time">("date");
52
+ const [dateValue, setDateValue] = useState("");
53
+ const [timeValue, setTimeValue] = useState("");
54
+
55
+
56
+ // =========================>
57
+ // ## Initial
58
+ // =========================>
59
+ const inputHandler = useInputHandler(props.name, value, validations, register, unregister, false)
60
+ const randomId = useInputRandomId()
61
+
62
+
63
+ // =========================>
64
+ // ## Invalid handler
65
+ // =========================>
66
+ const [invalidMessage] = useValidation(inputHandler.value, validations, invalid, inputHandler.idle);
67
+
68
+
69
+ // =========================>
70
+ // ## change value handler
71
+ // =========================>
72
+ useEffect(() => {
73
+ inputHandler.setValue(value || "");
74
+ value && inputHandler.setValue(false);
75
+
76
+ if (value) {
77
+ const [d, t] = value.split(" ");
78
+ setDateValue(d || "");
79
+ setTimeValue(t || "");
80
+ }
81
+ }, [value]);
82
+
83
+
84
+ const handleChange = (date: string, time: string) => {
85
+ const newVal = `${date} ${time}`;
86
+ inputHandler.setValue(newVal.trim());
87
+ onChange?.(newVal.trim());
88
+ };
89
+
90
+
91
+ return (
92
+ <>
93
+ <div className="relative flex flex-col gap-y-0.5">
94
+ <label
95
+ htmlFor={randomId}
96
+ className={cn(
97
+ "input-label",
98
+ pcn<CT>(className, "label"),
99
+ props.disabled && "opacity-50",
100
+ inputHandler.focus && "text-primary",
101
+ !!invalidMessage && "text-danger"
102
+ )}
103
+ >
104
+ {label}
105
+ {validations && validation.hasRules(validations, "required") && <span className="text-danger ml-1">*</span>}
106
+ </label>
107
+
108
+ {tip && (
109
+ <small
110
+ className={cn(
111
+ "input-tip",
112
+ pcn<CT>(className, "tip"),
113
+ props.disabled && "opacity-60"
114
+ )}
115
+ >{tip}</small>
116
+ )}
117
+
118
+ <OutsideClickComponent onOutsideClick={!isSm ? () => inputHandler.setFocus(false) : undefined}>
119
+ <div className="relative">
120
+ <input
121
+ {...props}
122
+ id={randomId}
123
+ readOnly
124
+ className={cn(
125
+ "input",
126
+ leftIcon && "pl-12",
127
+ rightIcon && "pr-12",
128
+ pcn<CT>(className, "input"),
129
+ !!invalidMessage && "input-error"
130
+ )}
131
+ value={inputHandler.value}
132
+ onFocus={(e) => {
133
+ props.onFocus?.(e);
134
+ inputHandler.setFocus(true);
135
+ }}
136
+ autoComplete="off"
137
+ inputMode={isSm ? "none" : undefined}
138
+ />
139
+
140
+ {leftIcon && (
141
+ <FontAwesomeIcon
142
+ className={cn(
143
+ "left-4 input-icon",
144
+ pcn<CT>(className, "icon"),
145
+ props.disabled && "opacity-60",
146
+ inputHandler.focus && "text-primary"
147
+ )}
148
+ icon={leftIcon}
149
+ />
150
+ )}
151
+
152
+ {rightIcon && (
153
+ <FontAwesomeIcon
154
+ className={cn(
155
+ "right-4 input-icon",
156
+ pcn<CT>(className, "icon"),
157
+ props.disabled && "opacity-60",
158
+ inputHandler.focus && "text-primary"
159
+ )}
160
+ icon={rightIcon}
161
+ />
162
+ )}
163
+
164
+ {!isSm && inputHandler.focus && (
165
+ <>
166
+ <div className="absolute z-50 top-full right-0 mt-1 w-max bg-background border rounded-[6px] p-2 shadow min-w-[350]">
167
+ <TabbarComponent
168
+ items={[
169
+ {
170
+ label: "Tanggal",
171
+ value: 'date'
172
+ },
173
+ {
174
+ label: "Jam",
175
+ value: 'time'
176
+ },
177
+ ]}
178
+ active={pickerType}
179
+ onChange={(e) => setPickerType(e as "time" | "date")}
180
+ className="mb-4"
181
+ />
182
+ {pickerType === "date" ? (
183
+ <InputDatePickerComponent
184
+ onChange={(e) => {
185
+ setDateValue(e);
186
+ handleChange(e, timeValue);
187
+ }}
188
+ />
189
+ ) : (
190
+ <InputTimePickerComponent
191
+ onChange={(e) => {
192
+ setTimeValue(e);
193
+ handleChange(dateValue, e);
194
+ }}
195
+ />
196
+ )}
197
+ </div>
198
+ </>
199
+ )}
200
+ </div>
201
+ </OutsideClickComponent>
202
+
203
+ {invalidMessage && (
204
+ <small className={cn("input-error-message", pcn<CT>(className, "error"))}>{invalidMessage}</small>
205
+ )}
206
+ </div>
207
+
208
+ {isSm && (
209
+ <BottomSheetComponent
210
+ show={inputHandler.focus}
211
+ onClose={() => inputHandler.setFocus(false)}
212
+ size={430}
213
+ footer={
214
+ <div className="p-4">
215
+ <ButtonComponent
216
+ label="Selesai"
217
+ variant="outline"
218
+ onClick={() => inputHandler.setFocus(false)}
219
+ block
220
+ />
221
+ </div>
222
+ }
223
+ >
224
+ <div className="p-4">
225
+ <TabbarComponent
226
+ items={[
227
+ {
228
+ label: "Tanggal",
229
+ value: 'date'
230
+ },
231
+ {
232
+ label: "Jam",
233
+ value: 'time'
234
+ },
235
+ ]}
236
+ active={pickerType}
237
+ onChange={(e) => setPickerType(e as "time" | "date")}
238
+ className="mb-4"
239
+ />
240
+ {pickerType === "date" ? (
241
+ <InputDatePickerComponent
242
+ onChange={(e) => {
243
+ setDateValue(e);
244
+ handleChange(e, timeValue);
245
+ }}
246
+ />
247
+ ) : (
248
+ <InputTimePickerComponent
249
+ onChange={(e) => {
250
+ setTimeValue(e);
251
+ handleChange(dateValue, e);
252
+ }}
253
+ />
254
+ )}
255
+ </div>
256
+ </BottomSheetComponent>
257
+ )}
258
+ </>
259
+ );
260
+ }