@hedhog/admin 0.51.24 → 0.51.26

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 (43) hide show
  1. package/dist/auth/auth.service.d.ts.map +1 -1
  2. package/dist/auth/auth.service.js +2 -2
  3. package/dist/auth/auth.service.js.map +1 -1
  4. package/dist/dashboard/dashboard-core/dashboard-core.controller.d.ts +11 -11
  5. package/dist/dashboard/dashboard-core/dashboard-core.service.d.ts +11 -11
  6. package/dist/dashboard/dashboard-user/dashboard-user.controller.d.ts +3 -3
  7. package/dist/dashboard/dashboard-user/dashboard-user.service.d.ts +3 -3
  8. package/dist/menu/menu.controller.d.ts +3 -3
  9. package/dist/menu/menu.service.d.ts +3 -3
  10. package/frontend/dashboard/components/create-panel.tsx.ejs +63 -63
  11. package/frontend/dashboard/components/dashboard.screen.tsx.ejs +116 -116
  12. package/frontend/dashboard/components/update-panel.tsx.ejs +80 -80
  13. package/frontend/dashboard/locales/en/dashboard.dashboard.json +11 -11
  14. package/frontend/dashboard/locales/pt/dashboard.dashboard.json +11 -11
  15. package/frontend/dashboard/react-query/handlers.ts.ejs +28 -28
  16. package/frontend/dashboard/react-query/requests.ts.ejs +56 -56
  17. package/frontend/dashboard-component/components/create-panel.tsx.ejs +130 -130
  18. package/frontend/dashboard-component/components/update-panel.tsx.ejs +164 -164
  19. package/frontend/dashboard-component/locales/en/dashboard.dashboard-component.json +11 -11
  20. package/frontend/dashboard-component/locales/pt/dashboard.dashboard-component.json +11 -11
  21. package/frontend/dashboard-component/react-query/handlers.ts.ejs +28 -28
  22. package/frontend/dashboard-component/react-query/requests.ts.ejs +61 -61
  23. package/frontend/dashboard-item/components/create-panel.tsx.ejs +108 -108
  24. package/frontend/dashboard-item/components/update-panel.tsx.ejs +141 -141
  25. package/frontend/dashboard-item/locales/en/dashboard.dashboard-item.json +11 -11
  26. package/frontend/dashboard-item/locales/pt/dashboard.dashboard-item.json +11 -11
  27. package/frontend/dashboard-item/react-query/handlers.ts.ejs +28 -28
  28. package/frontend/dashboard-item/react-query/requests.ts.ejs +58 -58
  29. package/frontend/dashboard-user/components/create-panel.tsx.ejs +108 -108
  30. package/frontend/dashboard-user/components/update-panel.tsx.ejs +137 -137
  31. package/frontend/dashboard-user/locales/en/dashboard.dashboard-user.json +11 -11
  32. package/frontend/dashboard-user/locales/pt/dashboard.dashboard-user.json +11 -11
  33. package/frontend/dashboard-user/react-query/handlers.ts.ejs +28 -28
  34. package/frontend/dashboard-user/react-query/requests.ts.ejs +58 -58
  35. package/hedhog.yaml +2 -2
  36. package/package.json +1 -1
  37. package/src/auth/auth.service.ts +3 -1
  38. package/src/dashboard/dashboard-component/dashboard-component.controller.ts +55 -55
  39. package/src/dashboard/dashboard-component/dto/create.dto.ts +36 -36
  40. package/src/dashboard/dashboard-component/dto/update.dto.ts +4 -4
  41. package/src/dashboard/dashboard-item/dto/update.dto.ts +4 -4
  42. package/src/dashboard/dashboard-user/dto/update.dto.ts +4 -4
  43. package/src/dashboard/index.ts +1 -1
@@ -1,141 +1,141 @@
1
- import FormPanel, { FormPanelRef } from '@/components/panels/form-panel'
2
- import { Overlay } from '@/components/custom/overlay'
3
- import { TabPanel } from '@/components/panels/tab-panel'
4
- import {
5
- useDashboardItemGet,
6
- useDashboardItemUpdate,
7
- } from '@/features/admin/dashboard-item'
8
- import useEffectAfterFirstUpdate from '@/hooks/use-effect-after-first-update'
9
- import { DashboardItem } from '@/types/models'
10
- import { forwardRef, useImperativeHandle, useRef } from 'react'
11
- import { useTranslation } from 'react-i18next'
12
- import { EnumFieldType } from '@/enums/EnumFieldType'
13
-
14
- export type DashboardItemUpdatePanelProps = {
15
- data: DashboardItem
16
- onUpdated?: (data: DashboardItem) => void
17
- }
18
-
19
- const DashboardItemUpdatePanel = forwardRef(
20
- ({ data, onUpdated }: DashboardItemUpdatePanelProps, ref) => {
21
- const { t } = useTranslation(['actions', 'fields', 'translations'])
22
- const { data: item, isLoading } = useDashboardItemGet(
23
- (data as any).id as number
24
- )
25
- const { mutate: dashboardItemUpdate } = useDashboardItemUpdate()
26
- const formRef = useRef<FormPanelRef>(null)
27
-
28
- useEffectAfterFirstUpdate(() => {
29
- if (item && formRef.current) {
30
- formRef.current.setValuesFromItem(item)
31
- }
32
- }, [item])
33
-
34
- useImperativeHandle(ref, () => ({}))
35
-
36
- return (
37
- <TabPanel
38
- activeTabIndex={0}
39
- tabs={[
40
- {
41
- title: t('details', { ns: 'actions' }),
42
- children: (
43
- <Overlay loading={isLoading}>
44
- <FormPanel
45
- ref={formRef}
46
- fields={[
47
- {
48
- name: 'component_id',
49
- label: {
50
- text: t('dashboard-item.component_id', {
51
- ns: 'fields',
52
- }),
53
- },
54
- type: EnumFieldType.COMBOBOX,
55
- required: true,
56
- url: '/dashboard-component',
57
- displayName: 'component',
58
- valueName: 'id',
59
- },
60
-
61
- {
62
- name: 'dashboard_id',
63
- label: {
64
- text: t('dashboard-item.dashboard_id', {
65
- ns: 'fields',
66
- }),
67
- },
68
- type: EnumFieldType.COMBOBOX,
69
- required: true,
70
- url: '/dashboard',
71
- displayName: 'dashboard',
72
- valueName: 'id',
73
- },
74
-
75
- {
76
- name: 'width',
77
- label: {
78
- text: t('dashboard-user.width', { ns: 'fields' }),
79
- },
80
- type: EnumFieldType.NUMBER,
81
- required: true,
82
- },
83
-
84
- {
85
- name: 'height',
86
- label: {
87
- text: t('dashboard-user.height', { ns: 'fields' }),
88
- },
89
- type: EnumFieldType.NUMBER,
90
- required: true,
91
- },
92
-
93
- {
94
- name: 'x_axis',
95
- label: {
96
- text: t('dashboard-user.x_axis', { ns: 'fields' }),
97
- },
98
- type: EnumFieldType.NUMBER,
99
- required: true,
100
- },
101
-
102
- {
103
- name: 'y_axis',
104
- label: {
105
- text: t('dashboard-user.y_axis', { ns: 'fields' }),
106
- },
107
- type: EnumFieldType.NUMBER,
108
- required: true,
109
- },
110
- ]}
111
- button={{ text: t('save', { ns: 'actions' }) }}
112
- onSubmit={(data) => {
113
- dashboardItemUpdate({
114
- id: data.id,
115
- data: {
116
- ...data,
117
- component_id: Number(data.component_id),
118
- dashboard_id: Number(data.dashboard_id),
119
- width: Number(data.width),
120
- height: Number(data.height),
121
- x_axis: Number(data.x_axis),
122
- y_axis: Number(data.y_axis),
123
- },
124
- })
125
- if (typeof onUpdated === 'function') {
126
- onUpdated(data)
127
- }
128
- }}
129
- />
130
- </Overlay>
131
- ),
132
- },
133
- ]}
134
- />
135
- )
136
- }
137
- )
138
-
139
- DashboardItemUpdatePanel.displayName = 'DashboardItemUpdatePanel'
140
-
141
- export default DashboardItemUpdatePanel
1
+ import FormPanel, { FormPanelRef } from '@/components/panels/form-panel'
2
+ import { Overlay } from '@/components/custom/overlay'
3
+ import { TabPanel } from '@/components/panels/tab-panel'
4
+ import {
5
+ useDashboardItemGet,
6
+ useDashboardItemUpdate,
7
+ } from '@/features/admin/dashboard-item'
8
+ import useEffectAfterFirstUpdate from '@/hooks/use-effect-after-first-update'
9
+ import { DashboardItem } from '@/types/models'
10
+ import { forwardRef, useImperativeHandle, useRef } from 'react'
11
+ import { useTranslation } from 'react-i18next'
12
+ import { EnumFieldType } from '@/enums/EnumFieldType'
13
+
14
+ export type DashboardItemUpdatePanelProps = {
15
+ data: DashboardItem
16
+ onUpdated?: (data: DashboardItem) => void
17
+ }
18
+
19
+ const DashboardItemUpdatePanel = forwardRef(
20
+ ({ data, onUpdated }: DashboardItemUpdatePanelProps, ref) => {
21
+ const { t } = useTranslation(['actions', 'fields', 'translations'])
22
+ const { data: item, isLoading } = useDashboardItemGet(
23
+ (data as any).id as number
24
+ )
25
+ const { mutate: dashboardItemUpdate } = useDashboardItemUpdate()
26
+ const formRef = useRef<FormPanelRef>(null)
27
+
28
+ useEffectAfterFirstUpdate(() => {
29
+ if (item && formRef.current) {
30
+ formRef.current.setValuesFromItem(item)
31
+ }
32
+ }, [item])
33
+
34
+ useImperativeHandle(ref, () => ({}))
35
+
36
+ return (
37
+ <TabPanel
38
+ activeTabIndex={0}
39
+ tabs={[
40
+ {
41
+ title: t('details', { ns: 'actions' }),
42
+ children: (
43
+ <Overlay loading={isLoading}>
44
+ <FormPanel
45
+ ref={formRef}
46
+ fields={[
47
+ {
48
+ name: 'component_id',
49
+ label: {
50
+ text: t('dashboard-item.component_id', {
51
+ ns: 'fields',
52
+ }),
53
+ },
54
+ type: EnumFieldType.COMBOBOX,
55
+ required: true,
56
+ url: '/dashboard-component',
57
+ displayName: 'component',
58
+ valueName: 'id',
59
+ },
60
+
61
+ {
62
+ name: 'dashboard_id',
63
+ label: {
64
+ text: t('dashboard-item.dashboard_id', {
65
+ ns: 'fields',
66
+ }),
67
+ },
68
+ type: EnumFieldType.COMBOBOX,
69
+ required: true,
70
+ url: '/dashboard',
71
+ displayName: 'dashboard',
72
+ valueName: 'id',
73
+ },
74
+
75
+ {
76
+ name: 'width',
77
+ label: {
78
+ text: t('dashboard-user.width', { ns: 'fields' }),
79
+ },
80
+ type: EnumFieldType.NUMBER,
81
+ required: true,
82
+ },
83
+
84
+ {
85
+ name: 'height',
86
+ label: {
87
+ text: t('dashboard-user.height', { ns: 'fields' }),
88
+ },
89
+ type: EnumFieldType.NUMBER,
90
+ required: true,
91
+ },
92
+
93
+ {
94
+ name: 'x_axis',
95
+ label: {
96
+ text: t('dashboard-user.x_axis', { ns: 'fields' }),
97
+ },
98
+ type: EnumFieldType.NUMBER,
99
+ required: true,
100
+ },
101
+
102
+ {
103
+ name: 'y_axis',
104
+ label: {
105
+ text: t('dashboard-user.y_axis', { ns: 'fields' }),
106
+ },
107
+ type: EnumFieldType.NUMBER,
108
+ required: true,
109
+ },
110
+ ]}
111
+ button={{ text: t('save', { ns: 'actions' }) }}
112
+ onSubmit={(data) => {
113
+ dashboardItemUpdate({
114
+ id: data.id,
115
+ data: {
116
+ ...data,
117
+ component_id: Number(data.component_id),
118
+ dashboard_id: Number(data.dashboard_id),
119
+ width: Number(data.width),
120
+ height: Number(data.height),
121
+ x_axis: Number(data.x_axis),
122
+ y_axis: Number(data.y_axis),
123
+ },
124
+ })
125
+ if (typeof onUpdated === 'function') {
126
+ onUpdated(data)
127
+ }
128
+ }}
129
+ />
130
+ </Overlay>
131
+ ),
132
+ },
133
+ ]}
134
+ />
135
+ )
136
+ }
137
+ )
138
+
139
+ DashboardItemUpdatePanel.displayName = 'DashboardItemUpdatePanel'
140
+
141
+ export default DashboardItemUpdatePanel
@@ -1,11 +1,11 @@
1
- {
2
- "create": "Create dashboard item",
3
- "createText": "Fill the dashboard item informations.",
4
- "createTooltip": "Create new dashboard item",
5
- "delete": "Delete dashboard item",
6
- "deleteText": "Are you sure to delete these dashboard item?",
7
- "deleteTooltip": "Delete the selected dashboard item",
8
- "edit": "Edit dashboard item",
9
- "editText": "View and edit dashboard item information.",
10
- "editTooltip": "Edit the selected dashboard item"
11
- }
1
+ {
2
+ "create": "Create dashboard item",
3
+ "createText": "Fill the dashboard item informations.",
4
+ "createTooltip": "Create new dashboard item",
5
+ "delete": "Delete dashboard item",
6
+ "deleteText": "Are you sure to delete these dashboard item?",
7
+ "deleteTooltip": "Delete the selected dashboard item",
8
+ "edit": "Edit dashboard item",
9
+ "editText": "View and edit dashboard item information.",
10
+ "editTooltip": "Edit the selected dashboard item"
11
+ }
@@ -1,11 +1,11 @@
1
- {
2
- "create": "Criar item do painel",
3
- "createText": "Preencha as informações do item do painel.",
4
- "createTooltip": "Criar novo item do painel",
5
- "delete": "Excluir item do painel",
6
- "deleteText": "Você tem certeza que deseja excluir esses itens do painel?",
7
- "deleteTooltip": "Excluir o(s) item(ns) do painel selecionado(s)",
8
- "edit": "Editar item do painel",
9
- "editText": "Visualizar e editar informações do item do painel.",
10
- "editTooltip": "Editar o item do painel selecionado"
11
- }
1
+ {
2
+ "create": "Criar item do painel",
3
+ "createText": "Preencha as informações do item do painel.",
4
+ "createTooltip": "Criar novo item do painel",
5
+ "delete": "Excluir item do painel",
6
+ "deleteText": "Você tem certeza que deseja excluir esses itens do painel?",
7
+ "deleteTooltip": "Excluir o(s) item(ns) do painel selecionado(s)",
8
+ "edit": "Editar item do painel",
9
+ "editText": "Visualizar e editar informações do item do painel.",
10
+ "editTooltip": "Editar o item do painel selecionado"
11
+ }
@@ -1,28 +1,28 @@
1
- import { useDefaultMutation } from "@/hooks/use-default-mutation";
2
- import { useQuery } from "@tanstack/react-query";
3
- import { requests } from "./requests";
4
-
5
- const scope = "dashboard-item";
6
-
7
- export function useDashboardItemCreate() {
8
- const { dashboardItemCreate } = requests();
9
- return useDefaultMutation(scope, "create", dashboardItemCreate);
10
- }
11
-
12
- export function useDashboardItemDelete() {
13
- const { dashboardItemDelete } = requests();
14
- return useDefaultMutation(scope, "delete", dashboardItemDelete);
15
- }
16
-
17
- export function useDashboardItemUpdate() {
18
- const { dashboardItemUpdate } = requests();
19
- return useDefaultMutation(scope, "update", dashboardItemUpdate);
20
- }
21
-
22
- export function useDashboardItemGet(id: number) {
23
- const { dashboardItemGet } = requests();
24
- return useQuery({
25
- queryKey: [scope, "get"],
26
- queryFn: () => dashboardItemGet(id),
27
- });
28
- }
1
+ import { useDefaultMutation } from "@/hooks/use-default-mutation";
2
+ import { useQuery } from "@tanstack/react-query";
3
+ import { requests } from "./requests";
4
+
5
+ const scope = "dashboard-item";
6
+
7
+ export function useDashboardItemCreate() {
8
+ const { dashboardItemCreate } = requests();
9
+ return useDefaultMutation(scope, "create", dashboardItemCreate);
10
+ }
11
+
12
+ export function useDashboardItemDelete() {
13
+ const { dashboardItemDelete } = requests();
14
+ return useDefaultMutation(scope, "delete", dashboardItemDelete);
15
+ }
16
+
17
+ export function useDashboardItemUpdate() {
18
+ const { dashboardItemUpdate } = requests();
19
+ return useDefaultMutation(scope, "update", dashboardItemUpdate);
20
+ }
21
+
22
+ export function useDashboardItemGet(id: number) {
23
+ const { dashboardItemGet } = requests();
24
+ return useQuery({
25
+ queryKey: [scope, "get"],
26
+ queryFn: () => dashboardItemGet(id),
27
+ });
28
+ }
@@ -1,58 +1,58 @@
1
- import { useApp } from "@/hooks/use-app";
2
- import { Delete, PaginationParams, PaginationResult } from "@/types";
3
- import { DashboardItem } from "@/types/models";
4
- import { HttpMethod } from "@/types/http-method";
5
-
6
- export function requests() {
7
- const { request } = useApp();
8
-
9
- const dashboardItemList = async (params: PaginationParams) => {
10
- return request<PaginationResult<DashboardItem>>({
11
- url: "/dashboard-item",
12
- params,
13
- }).then((res) => res.data);
14
- };
15
-
16
- const dashboardItemGet = async (id: number) => {
17
- return request<DashboardItem>({
18
- url: `/dashboard-item/${id}`,
19
- }).then((res) => res.data);
20
- };
21
-
22
- const dashboardItemCreate = async (params: { data: DashboardItem }) => {
23
- const { data } = params;
24
- return request<DashboardItem>({
25
- url: "/dashboard-item",
26
- method: HttpMethod.POST,
27
- data: data,
28
- }).then((res) => res.data);
29
- };
30
-
31
- const dashboardItemDelete = async (ids: number[]) => {
32
- return request<Delete>({
33
- url: "/dashboard-item",
34
- data: { ids },
35
- method: HttpMethod.DELETE,
36
- }).then((res) => res.data);
37
- };
38
-
39
- const dashboardItemUpdate = async (params: {
40
- id: number;
41
- data: DashboardItem;
42
- }) => {
43
- const { id, data } = params;
44
- return request<DashboardItem>({
45
- url: `/dashboard-item/${id}`,
46
- method: HttpMethod.PATCH,
47
- data: data,
48
- }).then((res) => res.data);
49
- };
50
-
51
- return {
52
- dashboardItemCreate,
53
- dashboardItemUpdate,
54
- dashboardItemDelete,
55
- dashboardItemList,
56
- dashboardItemGet,
57
- };
58
- }
1
+ import { useApp } from "@/hooks/use-app";
2
+ import { Delete, PaginationParams, PaginationResult } from "@/types";
3
+ import { DashboardItem } from "@/types/models";
4
+ import { HttpMethod } from "@/types/http-method";
5
+
6
+ export function requests() {
7
+ const { request } = useApp();
8
+
9
+ const dashboardItemList = async (params: PaginationParams) => {
10
+ return request<PaginationResult<DashboardItem>>({
11
+ url: "/dashboard-item",
12
+ params,
13
+ }).then((res) => res.data);
14
+ };
15
+
16
+ const dashboardItemGet = async (id: number) => {
17
+ return request<DashboardItem>({
18
+ url: `/dashboard-item/${id}`,
19
+ }).then((res) => res.data);
20
+ };
21
+
22
+ const dashboardItemCreate = async (params: { data: DashboardItem }) => {
23
+ const { data } = params;
24
+ return request<DashboardItem>({
25
+ url: "/dashboard-item",
26
+ method: HttpMethod.POST,
27
+ data: data,
28
+ }).then((res) => res.data);
29
+ };
30
+
31
+ const dashboardItemDelete = async (ids: number[]) => {
32
+ return request<Delete>({
33
+ url: "/dashboard-item",
34
+ data: { ids },
35
+ method: HttpMethod.DELETE,
36
+ }).then((res) => res.data);
37
+ };
38
+
39
+ const dashboardItemUpdate = async (params: {
40
+ id: number;
41
+ data: DashboardItem;
42
+ }) => {
43
+ const { id, data } = params;
44
+ return request<DashboardItem>({
45
+ url: `/dashboard-item/${id}`,
46
+ method: HttpMethod.PATCH,
47
+ data: data,
48
+ }).then((res) => res.data);
49
+ };
50
+
51
+ return {
52
+ dashboardItemCreate,
53
+ dashboardItemUpdate,
54
+ dashboardItemDelete,
55
+ dashboardItemList,
56
+ dashboardItemGet,
57
+ };
58
+ }