shared-ritm 1.2.150 → 1.2.152

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 (54) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/shared-ritm.es.js +4619 -4550
  3. package/dist/shared-ritm.umd.js +156 -156
  4. package/dist/types/api/services/PhotoService.d.ts +38 -51
  5. package/dist/types/api/services/TasksService.d.ts +2 -2
  6. package/dist/types/api/services/VideoService.d.ts +1 -0
  7. package/dist/types/api/types/Api_Tasks.d.ts +10 -0
  8. package/dist/types/index.d.ts +2 -1
  9. package/package.json +64 -64
  10. package/src/api/services/BrigadesService.ts +32 -32
  11. package/src/api/services/ControlsService.ts +92 -92
  12. package/src/api/services/EquipmentService.ts +29 -29
  13. package/src/api/services/InstrumentsService.ts +63 -63
  14. package/src/api/services/MetricsService.ts +110 -110
  15. package/src/api/services/ModulesService.ts +27 -27
  16. package/src/api/services/ProjectsService.ts +83 -83
  17. package/src/api/services/RepairsService.ts +124 -124
  18. package/src/api/services/ScheduleService.ts +69 -69
  19. package/src/api/services/SearchService.ts +22 -22
  20. package/src/api/services/TasksService.ts +3 -2
  21. package/src/api/services/UserService.ts +113 -113
  22. package/src/api/services/VideoService.ts +107 -103
  23. package/src/api/settings/ApiService.ts +124 -124
  24. package/src/api/types/Api_Auth.ts +105 -105
  25. package/src/api/types/Api_Brigades.ts +36 -36
  26. package/src/api/types/Api_Controls.ts +111 -111
  27. package/src/api/types/Api_Equipment.ts +3 -3
  28. package/src/api/types/Api_Instruments.ts +136 -136
  29. package/src/api/types/Api_Modules.ts +21 -21
  30. package/src/api/types/Api_Projects.ts +62 -62
  31. package/src/api/types/Api_Repairs.ts +140 -140
  32. package/src/api/types/Api_Schedule.ts +64 -64
  33. package/src/api/types/Api_Search.ts +80 -80
  34. package/src/api/types/Api_Tasks.ts +11 -0
  35. package/src/api/types/Api_User.ts +145 -145
  36. package/src/api/types/Api_Video.ts +145 -145
  37. package/src/common/app-datepicker/AppDatepicker.vue +176 -176
  38. package/src/common/app-dropdown/AppDropdown.vue +37 -37
  39. package/src/common/app-input-new/AppInputNew.vue +175 -175
  40. package/src/common/app-layout/AppLayout.vue +84 -84
  41. package/src/common/app-modal/index.vue +96 -0
  42. package/src/common/app-sheet-new/AppSheetNew.vue +244 -244
  43. package/src/common/app-sidebar/AppSidebar.vue +168 -168
  44. package/src/common/app-sidebar/components/SidebarMenuItem.vue +149 -149
  45. package/src/common/app-table/AppTable.vue +308 -308
  46. package/src/common/app-table/AppTableLayout.vue +137 -137
  47. package/src/common/app-table/components/ModalSelect.vue +286 -285
  48. package/src/common/app-table/components/TableModal.vue +356 -356
  49. package/src/common/app-table/controllers/useBaseTable.ts +45 -45
  50. package/src/common/app-table/controllers/useTableModel.ts +102 -102
  51. package/src/index.ts +128 -126
  52. package/src/styles/variables.sass +12 -12
  53. package/dist/types/api/services/ComentsServise.d.ts +0 -10
  54. package/dist/types/api/types/Api_Users.d.ts +0 -43
@@ -1,113 +1,113 @@
1
- import ApiService from '../settings/ApiService'
2
- import {
3
- Api_User,
4
- Api_User_Create,
5
- Api_User_Delete_Body,
6
- Api_User_Delete_Photos_Body,
7
- Api_User_Position,
8
- Api_User_Role,
9
- Api_User_Team,
10
- Api_User_Team_Search,
11
- Api_User_Warehouse,
12
- } from '../types/Api_User'
13
- import { ResponseApi } from '../types/Api_Service'
14
-
15
- class UserService extends ApiService {
16
- public async editUser({ id, model }: { id: string; model: any }): Promise<Api_User> {
17
- return await this.put<Partial<Api_User>, Api_User>(`/admin/users/${id}`, model)
18
- }
19
-
20
- public async getUser(id: string): Promise<Api_User> {
21
- return await this.get<Api_User>(`/admin/users/${id}`)
22
- }
23
-
24
- public async getUserWarehouses(params: {
25
- user_id: string
26
- page?: number
27
- }): Promise<ResponseApi<Api_User_Warehouse[]>> {
28
- return await this.get<ResponseApi<Api_User_Warehouse[]>>(`users/get_warehouse_list_by_user`, { params })
29
- }
30
-
31
- public async createUser(model: Api_User_Create): Promise<Api_User> {
32
- return await this.post<Api_User_Create, Api_User>('/admin/users', model)
33
- }
34
-
35
- public async deleteUser({
36
- user_id,
37
- archive_reason,
38
- }: Api_User_Delete_Body): Promise<{ data: boolean; status: number }> {
39
- return await this.post(`/users/archive_user`, { user_id, archive_reason })
40
- }
41
-
42
- public async deleteUserPhotos({
43
- user_id,
44
- photos,
45
- }: Api_User_Delete_Photos_Body): Promise<{ data: boolean; status: number }> {
46
- return await this.post(`/users/photos/delete`, { user_id, photos })
47
- }
48
-
49
- public async restoreUser(user_id: string): Promise<{ data: boolean; status: number }> {
50
- return await this.post(`/users/restore_user`, { user_id })
51
- }
52
-
53
- public async getRoles(params?: { per_page?: number }): Promise<ResponseApi<Api_User_Role[]>> {
54
- return await this.get<ResponseApi<Api_User_Role[]>>('/search/roles', { params })
55
- }
56
-
57
- public async getPositions(params?: { per_page?: number }): Promise<ResponseApi<Api_User_Position[]>> {
58
- return await this.get<ResponseApi<Api_User_Position[]>>('/search/positions', { params })
59
- }
60
-
61
- public async createPosition(body: Partial<Api_User_Position>): Promise<ResponseApi<Api_User_Position>> {
62
- return await this.post<Partial<Api_User_Position>, ResponseApi<Api_User_Position>>('/admin/positions', body)
63
- }
64
-
65
- public async editPosition(id: string, body: Partial<Api_User_Position>): Promise<ResponseApi<Api_User_Position>> {
66
- return await this.put<Partial<Api_User_Position>, ResponseApi<Api_User_Position>>(`/admin/positions/${id}`, body)
67
- }
68
-
69
- public async deletePosition(id: string): Promise<{ data: boolean; status: number }> {
70
- return await this.delete(`/admin/positions/${id}`)
71
- }
72
-
73
- public async getTeams(params?: { per_page?: number }): Promise<ResponseApi<Api_User_Team_Search[]>> {
74
- return await this.get<ResponseApi<Api_User_Team_Search[]>>('/search/teams', { params })
75
- }
76
-
77
- public async createTeam(body: Partial<Api_User_Team_Search>): Promise<ResponseApi<Api_User_Team>> {
78
- return await this.post<Partial<Api_User_Team_Search>, ResponseApi<Api_User_Team>>('/teams', body)
79
- }
80
-
81
- public async editTeam(id: string, body: Partial<Api_User_Team_Search>): Promise<{ data: boolean; status: number }> {
82
- return await this.patch<Partial<Api_User_Team_Search>, { data: boolean; status: number }>(`/teams/${id}`, body)
83
- }
84
-
85
- public async deleteTeam(id: string): Promise<{ data: boolean; status: number }> {
86
- return await this.delete(`/teams/${id}`)
87
- }
88
-
89
- public async checkUserVectors(id: string): Promise<{ count: number }> {
90
- return await this.get(`/user/get-vectors/${id}`)
91
- }
92
-
93
- public async checkArchiveUserVectors(id: string): Promise<{ count: number }> {
94
- return await this.get(`/users/get_vector_count_by_user?user_id=${id}`)
95
- }
96
-
97
- public async addUserVectors(formData: FormData): Promise<{ response: string }> {
98
- return await this.post(`/user/add-vector`, formData, {
99
- headers: { 'Content-Type': 'multipart/form-data' },
100
- })
101
- }
102
-
103
- public async removeUserVectors(id: string): Promise<unknown> {
104
- return await this.delete(`/user/delete-vectors/${id}`)
105
- }
106
- }
107
-
108
- let api: UserService
109
-
110
- export default function useUserService() {
111
- if (!api) api = new UserService()
112
- return api
113
- }
1
+ import ApiService from '../settings/ApiService'
2
+ import {
3
+ Api_User,
4
+ Api_User_Create,
5
+ Api_User_Delete_Body,
6
+ Api_User_Delete_Photos_Body,
7
+ Api_User_Position,
8
+ Api_User_Role,
9
+ Api_User_Team,
10
+ Api_User_Team_Search,
11
+ Api_User_Warehouse,
12
+ } from '../types/Api_User'
13
+ import { ResponseApi } from '../types/Api_Service'
14
+
15
+ class UserService extends ApiService {
16
+ public async editUser({ id, model }: { id: string; model: any }): Promise<Api_User> {
17
+ return await this.put<Partial<Api_User>, Api_User>(`/admin/users/${id}`, model)
18
+ }
19
+
20
+ public async getUser(id: string): Promise<Api_User> {
21
+ return await this.get<Api_User>(`/admin/users/${id}`)
22
+ }
23
+
24
+ public async getUserWarehouses(params: {
25
+ user_id: string
26
+ page?: number
27
+ }): Promise<ResponseApi<Api_User_Warehouse[]>> {
28
+ return await this.get<ResponseApi<Api_User_Warehouse[]>>(`users/get_warehouse_list_by_user`, { params })
29
+ }
30
+
31
+ public async createUser(model: Api_User_Create): Promise<Api_User> {
32
+ return await this.post<Api_User_Create, Api_User>('/admin/users', model)
33
+ }
34
+
35
+ public async deleteUser({
36
+ user_id,
37
+ archive_reason,
38
+ }: Api_User_Delete_Body): Promise<{ data: boolean; status: number }> {
39
+ return await this.post(`/users/archive_user`, { user_id, archive_reason })
40
+ }
41
+
42
+ public async deleteUserPhotos({
43
+ user_id,
44
+ photos,
45
+ }: Api_User_Delete_Photos_Body): Promise<{ data: boolean; status: number }> {
46
+ return await this.post(`/users/photos/delete`, { user_id, photos })
47
+ }
48
+
49
+ public async restoreUser(user_id: string): Promise<{ data: boolean; status: number }> {
50
+ return await this.post(`/users/restore_user`, { user_id })
51
+ }
52
+
53
+ public async getRoles(params?: { per_page?: number }): Promise<ResponseApi<Api_User_Role[]>> {
54
+ return await this.get<ResponseApi<Api_User_Role[]>>('/search/roles', { params })
55
+ }
56
+
57
+ public async getPositions(params?: { per_page?: number }): Promise<ResponseApi<Api_User_Position[]>> {
58
+ return await this.get<ResponseApi<Api_User_Position[]>>('/search/positions', { params })
59
+ }
60
+
61
+ public async createPosition(body: Partial<Api_User_Position>): Promise<ResponseApi<Api_User_Position>> {
62
+ return await this.post<Partial<Api_User_Position>, ResponseApi<Api_User_Position>>('/admin/positions', body)
63
+ }
64
+
65
+ public async editPosition(id: string, body: Partial<Api_User_Position>): Promise<ResponseApi<Api_User_Position>> {
66
+ return await this.put<Partial<Api_User_Position>, ResponseApi<Api_User_Position>>(`/admin/positions/${id}`, body)
67
+ }
68
+
69
+ public async deletePosition(id: string): Promise<{ data: boolean; status: number }> {
70
+ return await this.delete(`/admin/positions/${id}`)
71
+ }
72
+
73
+ public async getTeams(params?: { per_page?: number }): Promise<ResponseApi<Api_User_Team_Search[]>> {
74
+ return await this.get<ResponseApi<Api_User_Team_Search[]>>('/search/teams', { params })
75
+ }
76
+
77
+ public async createTeam(body: Partial<Api_User_Team_Search>): Promise<ResponseApi<Api_User_Team>> {
78
+ return await this.post<Partial<Api_User_Team_Search>, ResponseApi<Api_User_Team>>('/teams', body)
79
+ }
80
+
81
+ public async editTeam(id: string, body: Partial<Api_User_Team_Search>): Promise<{ data: boolean; status: number }> {
82
+ return await this.patch<Partial<Api_User_Team_Search>, { data: boolean; status: number }>(`/teams/${id}`, body)
83
+ }
84
+
85
+ public async deleteTeam(id: string): Promise<{ data: boolean; status: number }> {
86
+ return await this.delete(`/teams/${id}`)
87
+ }
88
+
89
+ public async checkUserVectors(id: string): Promise<{ count: number }> {
90
+ return await this.get(`/user/get-vectors/${id}`)
91
+ }
92
+
93
+ public async checkArchiveUserVectors(id: string): Promise<{ count: number }> {
94
+ return await this.get(`/users/get_vector_count_by_user?user_id=${id}`)
95
+ }
96
+
97
+ public async addUserVectors(formData: FormData): Promise<{ response: string }> {
98
+ return await this.post(`/user/add-vector`, formData, {
99
+ headers: { 'Content-Type': 'multipart/form-data' },
100
+ })
101
+ }
102
+
103
+ public async removeUserVectors(id: string): Promise<unknown> {
104
+ return await this.delete(`/user/delete-vectors/${id}`)
105
+ }
106
+ }
107
+
108
+ let api: UserService
109
+
110
+ export default function useUserService() {
111
+ if (!api) api = new UserService()
112
+ return api
113
+ }
@@ -1,103 +1,107 @@
1
- import ApiService from '../settings/ApiService'
2
- import { ResponseApi } from '@/api/types/Api_Service'
3
- import {
4
- Api_Video_Source_By_Repair,
5
- Api_Video_Source_Create,
6
- Api_Video_Source_Search,
7
- Api_Video_Training_Status,
8
- Api_Work_Zone,
9
- Api_Work_Zone_Search,
10
- } from '@/api/types/Api_Video'
11
-
12
- class VideoService extends ApiService {
13
- public async startVideoAnalytics(): Promise<boolean> {
14
- return await this.post('/statanly/start', null)
15
- }
16
-
17
- public reloadVideoAnalytics(ids: string[]): Promise<any> {
18
- return this.post('/horizon/video-source/reload', { video_source_ids: ids })
19
- }
20
-
21
- public hardReloadStream(): Promise<any> {
22
- return this.post('horizon/video-source/streams/add', null)
23
- }
24
-
25
- public async fetchWorkZones(params?: any): Promise<ResponseApi<Api_Work_Zone_Search[]>> {
26
- return await this.get('/search/work_zones', { params })
27
- }
28
-
29
- public async fetchWorkZone(id: string): Promise<ResponseApi<Api_Work_Zone>> {
30
- return await this.get(`/work_zone/get_work_zone/${id}`)
31
- }
32
-
33
- public async editWorkZone(id: string, body: { title: string }): Promise<{ data: Api_Work_Zone; status: number }> {
34
- return await this.put(`/admin/work-zones/${id}`, body)
35
- }
36
-
37
- public async deleteWorkZone(id: string): Promise<{ data: boolean; status: number }> {
38
- return await this.delete(`/admin/work-zones/${id}`)
39
- }
40
-
41
- public async fetchVideoSources(params?: any): Promise<ResponseApi<Api_Video_Source_Search[]>> {
42
- return await this.get('/search/video_sources', { params })
43
- }
44
-
45
- public async createVideoSource(body: Api_Video_Source_Create): Promise<Api_Video_Source_Search> {
46
- return await this.post('horizon/video-source', body)
47
- }
48
-
49
- public async editVideoSource(id: string, body: Partial<Api_Video_Source_Create>): Promise<Api_Video_Source_Search> {
50
- return await this.put(`/horizon/video-source/${id}`, body)
51
- }
52
-
53
- public async deleteVideoSource(id: string): Promise<void> {
54
- await this.delete(`/horizon/video-source/${id}`)
55
- }
56
-
57
- public async fetchListRepairsVideoSource(params?: any): Promise<Api_Video_Source_By_Repair[]> {
58
- return await this.get('work_zone/get_list_video_source_by_repair', { params })
59
- }
60
-
61
- public async sendCombination(body: { cameras_id: string[] }): Promise<any> {
62
- return await this.post('horizon/video-source/training', body)
63
- }
64
-
65
- public async saveCombination(body: any): Promise<any> {
66
- return await this.post('horizon/video-source/bind', body)
67
- }
68
-
69
- public async fetchCombination(params?: Record<string, string>): Promise<any> {
70
- return await this.get('horizon/video-source/bind/show', { params })
71
- }
72
-
73
- public async startTraining(body: { cameras_id: string[] }): Promise<any> {
74
- return await this.post('horizon/video-source/training/start', body)
75
- }
76
-
77
- public async stopTraining(body: { cameras_id: string[] }): Promise<any> {
78
- return await this.post('horizon/video-source/training/stop', body)
79
- }
80
-
81
- public async fetchTrainingInfo(params?: Record<string, string>): Promise<any> {
82
- return await this.get('horizon/video-source/training/info', { params })
83
- }
84
-
85
- public async fetchTrainingStatus(params?: Record<string, string>): Promise<Api_Video_Training_Status> {
86
- return await this.get('horizon/video-source/training/status', { params })
87
- }
88
-
89
- public async fetchVisualizationDataLink(params?: Record<string, string>): Promise<any> {
90
- return await this.get('horizon/video-source/link/video/training', { params })
91
- }
92
-
93
- public async updateVisualizationData(params?: Record<string, string>): Promise<any> {
94
- return await this.get('horizon/video-source/download/video/training', { params })
95
- }
96
- }
97
-
98
- let api: VideoService
99
-
100
- export default function useVideoService() {
101
- if (!api) api = new VideoService()
102
- return api
103
- }
1
+ import ApiService from '../settings/ApiService'
2
+ import { ResponseApi } from '@/api/types/Api_Service'
3
+ import {
4
+ Api_Video_Source_By_Repair,
5
+ Api_Video_Source_Create,
6
+ Api_Video_Source_Search,
7
+ Api_Video_Training_Status,
8
+ Api_Work_Zone,
9
+ Api_Work_Zone_Search,
10
+ } from '@/api/types/Api_Video'
11
+
12
+ class VideoService extends ApiService {
13
+ public async startVideoAnalytics(): Promise<boolean> {
14
+ return await this.post('/statanly/start', null)
15
+ }
16
+
17
+ public reloadVideoAnalytics(ids: string[]): Promise<any> {
18
+ return this.post('/horizon/video-source/reload', { video_source_ids: ids })
19
+ }
20
+
21
+ public hardReloadStream(): Promise<any> {
22
+ return this.post('horizon/video-source/streams/add', null)
23
+ }
24
+
25
+ public async fetchWorkZones(params?: any): Promise<ResponseApi<Api_Work_Zone_Search[]>> {
26
+ return await this.get('/search/work_zones', { params })
27
+ }
28
+
29
+ public async fetchWorkZone(id: string): Promise<ResponseApi<Api_Work_Zone>> {
30
+ return await this.get(`/work_zone/get_work_zone/${id}`)
31
+ }
32
+
33
+ public async editWorkZone(id: string, body: { title: string }): Promise<{ data: Api_Work_Zone; status: number }> {
34
+ return await this.put(`/admin/work-zones/${id}`, body)
35
+ }
36
+
37
+ public async deleteWorkZone(id: string): Promise<{ data: boolean; status: number }> {
38
+ return await this.delete(`/admin/work-zones/${id}`)
39
+ }
40
+
41
+ public async fetchVideoSources(params?: any): Promise<ResponseApi<Api_Video_Source_Search[]>> {
42
+ return await this.get('/search/video_sources', { params })
43
+ }
44
+
45
+ public async createVideoSource(body: Api_Video_Source_Create): Promise<Api_Video_Source_Search> {
46
+ return await this.post('horizon/video-source', body)
47
+ }
48
+
49
+ public async editVideoSource(id: string, body: Partial<Api_Video_Source_Create>): Promise<Api_Video_Source_Search> {
50
+ return await this.put(`/horizon/video-source/${id}`, body)
51
+ }
52
+
53
+ public async deleteVideoSource(id: string): Promise<void> {
54
+ await this.delete(`/horizon/video-source/${id}`)
55
+ }
56
+
57
+ public async fetchListRepairsVideoSource(params?: any): Promise<Api_Video_Source_By_Repair[]> {
58
+ return await this.get('work_zone/get_list_video_source_by_repair', { params })
59
+ }
60
+
61
+ public async sendCombination(body: { cameras_id: string[] }): Promise<any> {
62
+ return await this.post('horizon/video-source/training', body)
63
+ }
64
+
65
+ public async saveCombination(body: any): Promise<any> {
66
+ return await this.post('horizon/video-source/bind', body)
67
+ }
68
+
69
+ public async fetchCombination(params?: Record<string, string>): Promise<any> {
70
+ return await this.get('horizon/video-source/bind/show', { params })
71
+ }
72
+
73
+ public async startTraining(body: { cameras_id: string[] }): Promise<any> {
74
+ return await this.post('horizon/video-source/training/start', body)
75
+ }
76
+
77
+ public async stopTraining(body: { cameras_id: string[] }): Promise<any> {
78
+ return await this.post('horizon/video-source/training/stop', body)
79
+ }
80
+
81
+ public async fetchTrainingInfo(params?: Record<string, string>): Promise<any> {
82
+ return await this.get('horizon/video-source/training/info', { params })
83
+ }
84
+
85
+ public async fetchTrainingStatus(params?: Record<string, string>): Promise<Api_Video_Training_Status> {
86
+ return await this.get('horizon/video-source/training/status', { params })
87
+ }
88
+
89
+ public async fetchVisualizationDataLink(params?: Record<string, string>): Promise<any> {
90
+ return await this.get('horizon/video-source/link/video/training', { params })
91
+ }
92
+
93
+ public async updateVisualizationData(params?: Record<string, string>): Promise<any> {
94
+ return await this.get('horizon/video-source/download/video/training', { params })
95
+ }
96
+
97
+ public async deleteFrameFromVideo(id: string): Promise<void> {
98
+ await this.delete(`horizon/video-source/delete/fragment/video/training/${id}`)
99
+ }
100
+ }
101
+
102
+ let api: VideoService
103
+
104
+ export default function useVideoService() {
105
+ if (!api) api = new VideoService()
106
+ return api
107
+ }