shared-ritm 1.3.32 → 1.3.33

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 (55) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/shared-ritm.es.js +8712 -8786
  3. package/dist/shared-ritm.umd.js +340 -340
  4. package/dist/types/api/services/ComentsServise.d.ts +10 -0
  5. package/dist/types/api/services/PhotoService.d.ts +51 -38
  6. package/dist/types/api/services/RepairsService.d.ts +1 -1
  7. package/dist/types/api/settings/ApiService.d.ts +1 -1
  8. package/dist/types/api/types/Api_Tasks.d.ts +2 -0
  9. package/dist/types/api/types/Api_Users.d.ts +43 -0
  10. package/package.json +64 -64
  11. package/src/App.vue +2461 -2461
  12. package/src/api/services/BrigadesService.ts +32 -32
  13. package/src/api/services/ControlsService.ts +96 -96
  14. package/src/api/services/EquipmentService.ts +29 -29
  15. package/src/api/services/InstrumentsService.ts +68 -68
  16. package/src/api/services/MetricsService.ts +123 -123
  17. package/src/api/services/ModulesService.ts +27 -27
  18. package/src/api/services/ProjectsService.ts +83 -83
  19. package/src/api/services/RepairsService.ts +111 -111
  20. package/src/api/services/ScheduleService.ts +69 -69
  21. package/src/api/services/SearchService.ts +22 -22
  22. package/src/api/services/UserService.ts +123 -123
  23. package/src/api/services/VideoService.ts +113 -113
  24. package/src/api/settings/ApiService.ts +124 -124
  25. package/src/api/types/Api_Auth.ts +105 -105
  26. package/src/api/types/Api_Brigades.ts +36 -36
  27. package/src/api/types/Api_Controls.ts +111 -111
  28. package/src/api/types/Api_Equipment.ts +3 -3
  29. package/src/api/types/Api_Instruments.ts +156 -156
  30. package/src/api/types/Api_Metrics.ts +5 -5
  31. package/src/api/types/Api_Modules.ts +21 -21
  32. package/src/api/types/Api_Projects.ts +62 -62
  33. package/src/api/types/Api_Repairs.ts +186 -186
  34. package/src/api/types/Api_Schedule.ts +64 -64
  35. package/src/api/types/Api_Search.ts +80 -80
  36. package/src/api/types/Api_Tasks.ts +376 -374
  37. package/src/api/types/Api_User.ts +146 -146
  38. package/src/api/types/Api_Video.ts +241 -241
  39. package/src/common/app-datepicker/AppDatepicker.vue +218 -218
  40. package/src/common/app-dropdown/AppDropdown.vue +37 -37
  41. package/src/common/app-input-new/AppInputNew.vue +179 -179
  42. package/src/common/app-layout/AppLayout.vue +84 -84
  43. package/src/common/app-modal/index.vue +96 -96
  44. package/src/common/app-sheet-new/AppSheetNew.vue +244 -244
  45. package/src/common/app-sidebar/AppSidebar.vue +174 -174
  46. package/src/common/app-sidebar/components/SidebarMenuItem.vue +149 -149
  47. package/src/common/app-table/AppTable.vue +313 -313
  48. package/src/common/app-table/AppTableLayout.vue +137 -137
  49. package/src/common/app-table/components/ModalSelect.vue +298 -298
  50. package/src/common/app-table/controllers/useBaseTable.ts +45 -45
  51. package/src/common/app-table/controllers/useTableModel.ts +102 -102
  52. package/src/icons/dialogs/SafetyIcon.vue +12 -12
  53. package/src/index.ts +131 -131
  54. package/src/styles/variables.sass +12 -12
  55. package/src/utils/files.ts +19 -19
@@ -1,241 +1,241 @@
1
- import { Api_Status_DTO, Api_Tasks_Task_Dto } from '@/api/types/Api_Tasks'
2
- import { Api_Work_Zone_By_Tasks } from '@/api/types/Api_Repairs'
3
-
4
- export type Api_Video_Source = {
5
- id: string
6
- name: string
7
- login: string
8
- password: string
9
- camera_id: string | null
10
- comment: string | null
11
- data: unknown | null
12
- snapshot_path: string | null
13
- url: string
14
- updated_at: string
15
- created_at: string
16
- fps: string
17
- domed: boolean
18
- height: number
19
- width: number
20
- }
21
-
22
- export type Api_Work_Zone_Search = {
23
- id: string
24
- name: string
25
- title: string
26
- type: number
27
- parent_id: string | null
28
- created_at: string
29
- deleted_at: string | null
30
- updated_at: string
31
- description: string
32
- detect_face: boolean
33
- detect_helmet: boolean
34
- detect_mask: boolean
35
- detect_work_time: boolean
36
- detect_work_zone: boolean
37
- has_tasks: boolean
38
- is_parent: boolean
39
- x0: number
40
- x1: number
41
- y0: number
42
- y1: number
43
- video_source: Api_Video_Source
44
- video_source_id: string
45
- warehouse_by_work_zone_instruments: unknown[]
46
- }
47
-
48
- export type Api_Work_Zone_Usage_User = {
49
- id: string
50
- user_id: string
51
- user_full_name: string
52
- work_zone_id: string
53
- start_interval: string
54
- end_interval: string
55
- minutes: number
56
- }
57
-
58
- export type Api_Work_Zone_Task = {
59
- id: string
60
- name: string
61
- plan_date: string
62
- planned_start: null | string
63
- planned_end: null | string
64
- deadline: string
65
- is_critical_path: boolean | null
66
- is_expired: boolean
67
- power_output_MWh: number
68
- cost_per_MWh: number | null
69
- fact_start_date: null | string
70
- fact_end_date: null | string
71
- time_to_complete_sec: number | null
72
- status: Api_Status_DTO
73
- usage_users: Api_Work_Zone_Usage_User[]
74
- }
75
-
76
- export type Api_Work_Zone_Coords = {
77
- x0: number
78
- x1: number
79
- y0: number
80
- y1: number
81
- }
82
-
83
- export type Api_Work_Zone = {
84
- id: string
85
- title: string
86
- created_at: string
87
- video_source: { id: string; name: string }
88
- coordinates: Api_Work_Zone_Coords
89
- warehouse_by_work_zone_instruments: unknown[]
90
- tasks: Api_Work_Zone_Task[]
91
- }
92
-
93
- export type Api_Video_Source_Search = {
94
- comment: string
95
- domed: boolean
96
- fps: string
97
- height: number
98
- id: string
99
- interactive_zones: unknown
100
- login: string
101
- name: string
102
- password: string
103
- related_video_sources: unknown[]
104
- shapes: unknown[]
105
- snapshot_path: string
106
- url: string
107
- video_source: Api_Video_Source_Search[]
108
- width: number
109
- work_zones: Api_Video_Source_Work_Zone[]
110
- }
111
-
112
- export type Api_Video_Source_Create = {
113
- fps: string
114
- height: number
115
- login: string
116
- name: string
117
- password: string
118
- url: string
119
- width: number
120
- comment?: string
121
- domed?: boolean
122
- video_source_ids?: string[]
123
- snapshot?: string
124
- }
125
-
126
- export type Api_Video_Source_By_Repair_Project = {
127
- id: string
128
- name: string
129
- deadline: string
130
- }
131
-
132
- export type Api_Video_Source_By_Repair = {
133
- list_video_source: {
134
- id: string
135
- name: string
136
- url: string
137
- work_zones_by_tasks: Api_Work_Zone_By_Tasks[]
138
- }[]
139
- project: Api_Video_Source_By_Repair_Project
140
- }
141
-
142
- export type Api_Video_Training_Status = {
143
- 'global+face': string | null
144
- 'global+global': string | null
145
- }
146
-
147
- export type Api_Video_Point = {
148
- id?: string
149
- x: number
150
- y: number
151
- }
152
-
153
- export type Api_Video_Polygon = {
154
- id: string
155
- count?: number
156
- points: Api_Video_Point[]
157
- }
158
-
159
- export type Api_Video_Dote = {
160
- id?: string
161
- type?: string
162
- x: number
163
- y: number
164
- }
165
-
166
- export type Api_Video_Combination_Origin = {
167
- [key: string]: {
168
- id: string
169
- name: string
170
- src: string
171
- domed: boolean
172
- doteData: {
173
- doteCount: number
174
- dotes: Api_Video_Dote[]
175
- selectedDote: unknown
176
- }
177
- polygonData: {
178
- polygonCount: number
179
- polygons: Api_Video_Polygon[]
180
- selectedPolygon: string | null
181
- }
182
- }
183
- }
184
-
185
- export type Api_Video_Combination = {
186
- id: number
187
- created_at: string
188
- updated_at: string | null
189
- video_source: Api_Video_Source[]
190
- data: {
191
- face_cam_id: string
192
- global_cam_id: string
193
- polygon_height: number
194
- polygon_width: number
195
- polygon: number[][]
196
- }
197
- origin_data: Api_Video_Combination_Origin
198
- }
199
-
200
- export type Api_Video_Source_Work_Zone_Task = Pick<
201
- Api_Tasks_Task_Dto,
202
- | 'id'
203
- | 'fact_end_date'
204
- | 'fact_start_date'
205
- | 'deadline'
206
- | 'expired'
207
- | 'name'
208
- | 'plan_date'
209
- | 'responsible'
210
- | 'status'
211
- | 'time_to_complete_sec'
212
- > & {
213
- power_output_MWh: number | null
214
- cost_per_MWh: number | null
215
- project_id: string
216
- }
217
-
218
- export type Api_Video_Source_Work_Zone = Pick<
219
- Api_Work_Zone_Search,
220
- | 'id'
221
- | 'detect_face'
222
- | 'detect_helmet'
223
- | 'detect_mask'
224
- | 'detect_work_time'
225
- | 'detect_work_zone'
226
- | 'is_parent'
227
- | 'name'
228
- | 'x0'
229
- | 'x1'
230
- | 'y0'
231
- | 'y1'
232
- | 'video_source_id'
233
- | 'parent_id'
234
- | 'type'
235
- | 'title'
236
- > & {
237
- power_output_MWh: number | null
238
- cost_per_MWh: number | null
239
- points: unknown[]
240
- tasks: Api_Video_Source_Work_Zone_Task[]
241
- }
1
+ import { Api_Status_DTO, Api_Tasks_Task_Dto } from '@/api/types/Api_Tasks'
2
+ import { Api_Work_Zone_By_Tasks } from '@/api/types/Api_Repairs'
3
+
4
+ export type Api_Video_Source = {
5
+ id: string
6
+ name: string
7
+ login: string
8
+ password: string
9
+ camera_id: string | null
10
+ comment: string | null
11
+ data: unknown | null
12
+ snapshot_path: string | null
13
+ url: string
14
+ updated_at: string
15
+ created_at: string
16
+ fps: string
17
+ domed: boolean
18
+ height: number
19
+ width: number
20
+ }
21
+
22
+ export type Api_Work_Zone_Search = {
23
+ id: string
24
+ name: string
25
+ title: string
26
+ type: number
27
+ parent_id: string | null
28
+ created_at: string
29
+ deleted_at: string | null
30
+ updated_at: string
31
+ description: string
32
+ detect_face: boolean
33
+ detect_helmet: boolean
34
+ detect_mask: boolean
35
+ detect_work_time: boolean
36
+ detect_work_zone: boolean
37
+ has_tasks: boolean
38
+ is_parent: boolean
39
+ x0: number
40
+ x1: number
41
+ y0: number
42
+ y1: number
43
+ video_source: Api_Video_Source
44
+ video_source_id: string
45
+ warehouse_by_work_zone_instruments: unknown[]
46
+ }
47
+
48
+ export type Api_Work_Zone_Usage_User = {
49
+ id: string
50
+ user_id: string
51
+ user_full_name: string
52
+ work_zone_id: string
53
+ start_interval: string
54
+ end_interval: string
55
+ minutes: number
56
+ }
57
+
58
+ export type Api_Work_Zone_Task = {
59
+ id: string
60
+ name: string
61
+ plan_date: string
62
+ planned_start: null | string
63
+ planned_end: null | string
64
+ deadline: string
65
+ is_critical_path: boolean | null
66
+ is_expired: boolean
67
+ power_output_MWh: number
68
+ cost_per_MWh: number | null
69
+ fact_start_date: null | string
70
+ fact_end_date: null | string
71
+ time_to_complete_sec: number | null
72
+ status: Api_Status_DTO
73
+ usage_users: Api_Work_Zone_Usage_User[]
74
+ }
75
+
76
+ export type Api_Work_Zone_Coords = {
77
+ x0: number
78
+ x1: number
79
+ y0: number
80
+ y1: number
81
+ }
82
+
83
+ export type Api_Work_Zone = {
84
+ id: string
85
+ title: string
86
+ created_at: string
87
+ video_source: { id: string; name: string }
88
+ coordinates: Api_Work_Zone_Coords
89
+ warehouse_by_work_zone_instruments: unknown[]
90
+ tasks: Api_Work_Zone_Task[]
91
+ }
92
+
93
+ export type Api_Video_Source_Search = {
94
+ comment: string
95
+ domed: boolean
96
+ fps: string
97
+ height: number
98
+ id: string
99
+ interactive_zones: unknown
100
+ login: string
101
+ name: string
102
+ password: string
103
+ related_video_sources: unknown[]
104
+ shapes: unknown[]
105
+ snapshot_path: string
106
+ url: string
107
+ video_source: Api_Video_Source_Search[]
108
+ width: number
109
+ work_zones: Api_Video_Source_Work_Zone[]
110
+ }
111
+
112
+ export type Api_Video_Source_Create = {
113
+ fps: string
114
+ height: number
115
+ login: string
116
+ name: string
117
+ password: string
118
+ url: string
119
+ width: number
120
+ comment?: string
121
+ domed?: boolean
122
+ video_source_ids?: string[]
123
+ snapshot?: string
124
+ }
125
+
126
+ export type Api_Video_Source_By_Repair_Project = {
127
+ id: string
128
+ name: string
129
+ deadline: string
130
+ }
131
+
132
+ export type Api_Video_Source_By_Repair = {
133
+ list_video_source: {
134
+ id: string
135
+ name: string
136
+ url: string
137
+ work_zones_by_tasks: Api_Work_Zone_By_Tasks[]
138
+ }[]
139
+ project: Api_Video_Source_By_Repair_Project
140
+ }
141
+
142
+ export type Api_Video_Training_Status = {
143
+ 'global+face': string | null
144
+ 'global+global': string | null
145
+ }
146
+
147
+ export type Api_Video_Point = {
148
+ id?: string
149
+ x: number
150
+ y: number
151
+ }
152
+
153
+ export type Api_Video_Polygon = {
154
+ id: string
155
+ count?: number
156
+ points: Api_Video_Point[]
157
+ }
158
+
159
+ export type Api_Video_Dote = {
160
+ id?: string
161
+ type?: string
162
+ x: number
163
+ y: number
164
+ }
165
+
166
+ export type Api_Video_Combination_Origin = {
167
+ [key: string]: {
168
+ id: string
169
+ name: string
170
+ src: string
171
+ domed: boolean
172
+ doteData: {
173
+ doteCount: number
174
+ dotes: Api_Video_Dote[]
175
+ selectedDote: unknown
176
+ }
177
+ polygonData: {
178
+ polygonCount: number
179
+ polygons: Api_Video_Polygon[]
180
+ selectedPolygon: string | null
181
+ }
182
+ }
183
+ }
184
+
185
+ export type Api_Video_Combination = {
186
+ id: number
187
+ created_at: string
188
+ updated_at: string | null
189
+ video_source: Api_Video_Source[]
190
+ data: {
191
+ face_cam_id: string
192
+ global_cam_id: string
193
+ polygon_height: number
194
+ polygon_width: number
195
+ polygon: number[][]
196
+ }
197
+ origin_data: Api_Video_Combination_Origin
198
+ }
199
+
200
+ export type Api_Video_Source_Work_Zone_Task = Pick<
201
+ Api_Tasks_Task_Dto,
202
+ | 'id'
203
+ | 'fact_end_date'
204
+ | 'fact_start_date'
205
+ | 'deadline'
206
+ | 'expired'
207
+ | 'name'
208
+ | 'plan_date'
209
+ | 'responsible'
210
+ | 'status'
211
+ | 'time_to_complete_sec'
212
+ > & {
213
+ power_output_MWh: number | null
214
+ cost_per_MWh: number | null
215
+ project_id: string
216
+ }
217
+
218
+ export type Api_Video_Source_Work_Zone = Pick<
219
+ Api_Work_Zone_Search,
220
+ | 'id'
221
+ | 'detect_face'
222
+ | 'detect_helmet'
223
+ | 'detect_mask'
224
+ | 'detect_work_time'
225
+ | 'detect_work_zone'
226
+ | 'is_parent'
227
+ | 'name'
228
+ | 'x0'
229
+ | 'x1'
230
+ | 'y0'
231
+ | 'y1'
232
+ | 'video_source_id'
233
+ | 'parent_id'
234
+ | 'type'
235
+ | 'title'
236
+ > & {
237
+ power_output_MWh: number | null
238
+ cost_per_MWh: number | null
239
+ points: unknown[]
240
+ tasks: Api_Video_Source_Work_Zone_Task[]
241
+ }