shared-ritm 1.3.70 → 1.3.71

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 (72) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/shared-ritm.es.js +3465 -3430
  3. package/dist/shared-ritm.umd.js +144 -144
  4. package/dist/types/api/services/AuthService.d.ts +1 -0
  5. package/dist/types/api/services/UserService.d.ts +2 -1
  6. package/dist/types/api/settings/ApiService.d.ts +6 -2
  7. package/dist/types/api/types/Api_Auth.d.ts +15 -0
  8. package/dist/types/api/types/Api_User.d.ts +9 -0
  9. package/package.json +70 -70
  10. package/src/App.vue +2461 -2461
  11. package/src/api/services/AuthService.ts +67 -53
  12. package/src/api/services/ControlsService.ts +96 -96
  13. package/src/api/services/EquipmentService.ts +29 -29
  14. package/src/api/services/GanttService.ts +23 -23
  15. package/src/api/services/MetricsService.ts +127 -127
  16. package/src/api/services/RepairsService.ts +111 -111
  17. package/src/api/services/UserService.ts +129 -123
  18. package/src/api/services/VideoService.ts +118 -118
  19. package/src/api/settings/ApiService.ts +184 -124
  20. package/src/api/types/Api_Auth.ts +121 -105
  21. package/src/api/types/Api_Metrics.ts +26 -26
  22. package/src/api/types/Api_Repairs.ts +186 -186
  23. package/src/api/types/Api_Tasks.ts +376 -376
  24. package/src/api/types/Api_User.ts +156 -146
  25. package/src/api/types/Api_Video.ts +244 -244
  26. package/src/common/app-button/Button.stories.ts +369 -369
  27. package/src/common/app-checkbox/AppCheckbox.vue +31 -31
  28. package/src/common/app-checkbox/Checkbox.stories.ts +252 -252
  29. package/src/common/app-date-picker/DatePicker.stories.ts +66 -66
  30. package/src/common/app-datepicker/Datepicker.stories.ts +145 -145
  31. package/src/common/app-dialogs/AppConfirmDialog.vue +109 -109
  32. package/src/common/app-dialogs/Confirm.stories.ts +93 -93
  33. package/src/common/app-dropdown/Dropdown.stories.ts +94 -94
  34. package/src/common/app-file/File.stories.ts +104 -104
  35. package/src/common/app-icon/AppIcon.vue +108 -108
  36. package/src/common/app-icon/Icon.stories.ts +91 -91
  37. package/src/common/app-input/Input.stories.ts +160 -160
  38. package/src/common/app-input-new/InputNew.stories.ts +240 -240
  39. package/src/common/app-input-search/InputSearch.stories.ts +149 -149
  40. package/src/common/app-layout/components/AppLayoutHeader.vue +289 -289
  41. package/src/common/app-loader/Loader.stories.ts +114 -114
  42. package/src/common/app-select/AppSelect.vue +159 -159
  43. package/src/common/app-select/Select.stories.ts +155 -155
  44. package/src/common/app-sidebar/AppSidebar.vue +174 -174
  45. package/src/common/app-table/AppTable.vue +313 -313
  46. package/src/common/app-table/components/ModalSelect.stories.ts +323 -323
  47. package/src/common/app-table/components/ModalSelect.vue +302 -302
  48. package/src/common/app-table/components/TableModal.vue +367 -367
  49. package/src/common/app-table/controllers/useColumnSelector.ts +45 -45
  50. package/src/common/app-table/controllers/useTableModel.ts +97 -97
  51. package/src/common/app-toggle/AppToggle.vue +12 -12
  52. package/src/common/app-toggle/Toggle.stories.ts +245 -245
  53. package/src/common/app-wrapper/AppWrapper.vue +31 -31
  54. package/src/configs/storybook.ts +14 -14
  55. package/src/index.ts +131 -131
  56. package/src/shared/styles/general.css +140 -140
  57. package/src/styles/variables.sass +12 -12
  58. package/src/utils/helpers.ts +59 -59
  59. package/dist/types/api/services/PhotoService.d.ts +0 -40
  60. package/dist/types/stories/Button.stories.d.ts +0 -13
  61. package/dist/types/stories/Checkbox.stories.d.ts +0 -7
  62. package/dist/types/stories/Confirm.stories.d.ts +0 -8
  63. package/dist/types/stories/DatePicker.stories.d.ts +0 -8
  64. package/dist/types/stories/Dropdown.stories.d.ts +0 -8
  65. package/dist/types/stories/File.stories.d.ts +0 -8
  66. package/dist/types/stories/Icon.stories.d.ts +0 -7
  67. package/dist/types/stories/Input.stories.d.ts +0 -11
  68. package/dist/types/stories/InputNew.stories.d.ts +0 -12
  69. package/dist/types/stories/InputSearch.stories.d.ts +0 -10
  70. package/dist/types/stories/Loader.stories.d.ts +0 -8
  71. package/dist/types/stories/Select.stories.d.ts +0 -7
  72. package/dist/types/stories/Toggle.stories.d.ts +0 -8
@@ -1,124 +1,184 @@
1
- import axios, { AxiosError, AxiosInstance, AxiosRequestConfig, AxiosResponse, InternalAxiosRequestConfig } from 'axios'
2
-
3
- export enum ApiServiceType {
4
- SERVICE_AUTH = 'SERVICE_AUTH',
5
- }
6
-
7
- export default class ApiService {
8
- private axiosInstance: AxiosInstance
9
-
10
- constructor() {
11
- this.axiosInstance = axios.create({
12
- baseURL: process.env.VUE_APP_BACKEND,
13
- headers: {
14
- 'Content-Type': 'application/json',
15
- Accept: 'application/json',
16
- },
17
- })
18
-
19
- this.axiosInstance.interceptors.request.use(
20
- (config: InternalAxiosRequestConfig) => {
21
- const token = this.getToken()
22
- if (token && config.headers) {
23
- config.headers.Authorization = `Bearer ${token}`
24
- }
25
- return config
26
- },
27
- (error: AxiosError) => {
28
- return Promise.reject(error)
29
- },
30
- )
31
-
32
- this.axiosInstance.interceptors.response.use(
33
- (response: AxiosResponse) => {
34
- return response.data
35
- },
36
- (error: AxiosError) => {
37
- if (error.response?.status === 401 || error.response?.status === 403) {
38
- this.logout()
39
- }
40
- return Promise.reject(error)
41
- },
42
- )
43
- }
44
-
45
- private getToken() {
46
- return localStorage.getItem('token')
47
- }
48
-
49
- private removeToken() {
50
- localStorage.removeItem('token')
51
- }
52
-
53
- public logout(): void {
54
- this.removeToken()
55
- window.location.href = '/sign-in'
56
- }
57
-
58
- private handleError(error: AxiosError): void {
59
- if (error.response) {
60
- console.error('API Error:', error.response.status, error.response.data)
61
- } else if (error.request) {
62
- console.error('No response received:', error.request)
63
- } else {
64
- console.error('Error during request setup:', error.message)
65
- }
66
- }
67
-
68
- protected async get<T>(url: string, options?: AxiosRequestConfig) {
69
- try {
70
- const response: AxiosResponse<T> = await this.axiosInstance.get<T>(url, options)
71
- if (response?.data === false) return false as unknown as T
72
-
73
- return response?.data ?? (response as unknown as T)
74
- } catch (error) {
75
- const axiosError = error as AxiosError
76
- this.handleError(axiosError)
77
- throw error
78
- }
79
- }
80
-
81
- protected async delete<T>(url: string, options?: AxiosRequestConfig) {
82
- try {
83
- return await this.axiosInstance.delete<T>(url, options)
84
- } catch (error) {
85
- const axiosError = error as AxiosError
86
- this.handleError(axiosError)
87
- throw error
88
- }
89
- }
90
-
91
- protected async post<T1, T2>(url: string, payload: T1, options?: AxiosRequestConfig) {
92
- try {
93
- const response: AxiosResponse<T2> = await this.axiosInstance.post<T1, AxiosResponse<T2>>(url, payload, options)
94
- if (response?.data === false) return false
95
- return response?.data || (response as any)
96
- } catch (error) {
97
- const axiosError = error as AxiosError
98
- this.handleError(axiosError)
99
- throw error
100
- }
101
- }
102
-
103
- protected async patch<T1, T2>(url: string, payload: T1, options?: AxiosRequestConfig): Promise<T2> {
104
- try {
105
- const response: AxiosResponse<T2> = await this.axiosInstance.patch<T1, AxiosResponse<T2>>(url, payload, options)
106
- return response.data
107
- } catch (error) {
108
- const axiosError = error as AxiosError
109
- this.handleError(axiosError)
110
- throw error
111
- }
112
- }
113
-
114
- protected async put<T1, T2>(url: string, payload: T1, options?: AxiosRequestConfig) {
115
- try {
116
- const response: AxiosResponse<T2> = await this.axiosInstance.put<T1, AxiosResponse<T2>>(url, payload, options)
117
- return response.data
118
- } catch (error) {
119
- const axiosError = error as AxiosError
120
- this.handleError(axiosError)
121
- throw error
122
- }
123
- }
124
- }
1
+ import axios, { AxiosError, AxiosInstance, AxiosRequestConfig, AxiosResponse, InternalAxiosRequestConfig } from 'axios'
2
+ import { Api_Auth_Login } from '@/api/types/Api_Auth'
3
+
4
+ // eslint-disable-next-line
5
+ var isRefreshing = false
6
+ // eslint-disable-next-line
7
+ var refreshSubscribers: any[] = []
8
+
9
+ interface Api_Auth_Refresh {
10
+ accessToken: string
11
+ }
12
+
13
+ export enum ApiServiceType {
14
+ SERVICE_AUTH = 'SERVICE_AUTH',
15
+ }
16
+
17
+ export default class ApiService {
18
+ private axiosInstance: AxiosInstance
19
+
20
+ constructor() {
21
+ this.axiosInstance = axios.create({
22
+ baseURL: process.env.VUE_APP_BACKEND,
23
+ headers: {
24
+ 'Content-Type': 'application/json',
25
+ Accept: 'application/json',
26
+ },
27
+ withCredentials: true,
28
+ })
29
+
30
+ this.axiosInstance.interceptors.request.use(
31
+ (config: InternalAxiosRequestConfig) => {
32
+ config.headers.Authorization = `Bearer ${this.getAccessToken()}`
33
+ return config
34
+ },
35
+ (error: AxiosError) => {
36
+ return Promise.reject(error)
37
+ },
38
+ )
39
+
40
+ this.axiosInstance.interceptors.response.use(
41
+ (response: AxiosResponse) => {
42
+ return response.data
43
+ },
44
+ async error => {
45
+ const originalRequest = error.config
46
+
47
+ if (
48
+ error.response?.status !== 401 ||
49
+ originalRequest.url === '/v2/auth/refresh' ||
50
+ originalRequest.url === '/v2/login' ||
51
+ originalRequest._retry
52
+ ) {
53
+ return Promise.reject(error)
54
+ }
55
+
56
+ originalRequest._retry = true
57
+
58
+ if (isRefreshing) {
59
+ return new Promise(resolve => {
60
+ this.subscribeTokenRefresh(() => resolve(this.axiosInstance(originalRequest)))
61
+ })
62
+ }
63
+
64
+ isRefreshing = true
65
+
66
+ try {
67
+ const response = await this.refresh()
68
+
69
+ const newToken = response.accessToken
70
+ if (!newToken) {
71
+ this.logoutUser()
72
+ return Promise.reject(error)
73
+ }
74
+
75
+ this.setAccessToken(newToken)
76
+ this.onRefreshed()
77
+ isRefreshing = false
78
+ return this.axiosInstance(originalRequest)
79
+ } catch (e) {
80
+ this.logoutUser()
81
+ return Promise.reject(e)
82
+ }
83
+ },
84
+ )
85
+ }
86
+
87
+ private setAccessToken(token: string) {
88
+ localStorage.setItem('token', token)
89
+ }
90
+ private getAccessToken() {
91
+ return localStorage.getItem('token')
92
+ }
93
+
94
+ private removeToken() {
95
+ localStorage.removeItem('token')
96
+ }
97
+
98
+ private subscribeTokenRefresh(cb: any) {
99
+ refreshSubscribers.push(cb)
100
+ }
101
+
102
+ private refresh(): Promise<Api_Auth_Refresh> {
103
+ return this.post<null, Api_Auth_Login>(`/v2/auth/refresh`, null)
104
+ }
105
+
106
+ private onRefreshed() {
107
+ refreshSubscribers.forEach(cb => cb())
108
+ refreshSubscribers = []
109
+ }
110
+
111
+ public logoutUser(): any {
112
+ isRefreshing = false
113
+ this.post<any, any>(`/v2/logout`, {})
114
+ this.removeToken()
115
+ window.location.href = '/sign-in'
116
+ }
117
+
118
+ private handleError(error: AxiosError): void {
119
+ if (error.response) {
120
+ console.error('API Error:', error.response.status, error.response.data)
121
+ } else if (error.request) {
122
+ console.error('No response received:', error.request)
123
+ } else {
124
+ console.error('Error during request setup:', error.message)
125
+ }
126
+ }
127
+
128
+ protected async get<T>(url: string, options?: AxiosRequestConfig) {
129
+ try {
130
+ const response: AxiosResponse<T> = await this.axiosInstance.get<T>(url, options)
131
+ if (response?.data === false) return false as unknown as T
132
+
133
+ return response?.data ?? (response as unknown as T)
134
+ } catch (error) {
135
+ const axiosError = error as AxiosError
136
+ this.handleError(axiosError)
137
+ throw error
138
+ }
139
+ }
140
+
141
+ protected async delete<T>(url: string, options?: AxiosRequestConfig) {
142
+ try {
143
+ return await this.axiosInstance.delete<T>(url, options)
144
+ } catch (error) {
145
+ const axiosError = error as AxiosError
146
+ this.handleError(axiosError)
147
+ throw error
148
+ }
149
+ }
150
+
151
+ protected async post<T1, T2>(url: string, payload: T1, options?: AxiosRequestConfig) {
152
+ try {
153
+ const response: AxiosResponse<T2> = await this.axiosInstance.post<T1, AxiosResponse<T2>>(url, payload, options)
154
+ if (response?.data === false) return false
155
+ return response?.data || (response as any)
156
+ } catch (error) {
157
+ const axiosError = error as AxiosError
158
+ this.handleError(axiosError)
159
+ throw error
160
+ }
161
+ }
162
+
163
+ protected async patch<T1, T2>(url: string, payload: T1, options?: AxiosRequestConfig): Promise<T2> {
164
+ try {
165
+ const response: AxiosResponse<T2> = await this.axiosInstance.patch<T1, AxiosResponse<T2>>(url, payload, options)
166
+ return response.data
167
+ } catch (error) {
168
+ const axiosError = error as AxiosError
169
+ this.handleError(axiosError)
170
+ throw error
171
+ }
172
+ }
173
+
174
+ protected async put<T1, T2>(url: string, payload: T1, options?: AxiosRequestConfig) {
175
+ try {
176
+ const response: AxiosResponse<T2> = await this.axiosInstance.put<T1, AxiosResponse<T2>>(url, payload, options)
177
+ return response.data
178
+ } catch (error) {
179
+ const axiosError = error as AxiosError
180
+ this.handleError(axiosError)
181
+ throw error
182
+ }
183
+ }
184
+ }
@@ -1,105 +1,121 @@
1
- import { Api_User } from '@/api/types/Api_User'
2
-
3
- export type LoginPayload = {
4
- email: string
5
- password: string
6
- }
7
-
8
- export type Api_Auth_User_Education = {
9
- created_at: string
10
- display_name: string
11
- id: string
12
- name: string
13
- }
14
-
15
- export type Api_Auth_User_Photo = {
16
- id: string
17
- name: string
18
- path: string
19
- type: string
20
- }
21
-
22
- export type Api_Auth_User_Position = {
23
- description: string
24
- display_name: string
25
- id: string
26
- name: string
27
- }
28
-
29
- export type Api_User_Roles_Permissions = {
30
- created_at: string
31
- description: string
32
- display_name: string
33
- id: string
34
- name: string
35
- updated_at: string
36
- }
37
-
38
- export type Api_Auth_User_Role = {
39
- display_name: string
40
- id: string
41
- name: string
42
- permissions: Api_User_Roles_Permissions[]
43
- }
44
-
45
- export type Api_Auth_User_Team = {
46
- display_name: string
47
- id: string
48
- name: string
49
- roles: Api_Auth_User_Role[]
50
- }
51
-
52
- export type Api_Auth_User = {
53
- RFID: string
54
- avatar_id: null | string
55
- avatar_path: null | string
56
- dismissal_at: null | string
57
- divisions: string
58
- educations: Api_Auth_User_Education[]
59
- email: string
60
- email_verified_at: string
61
- first_name: string
62
- full_name: string
63
- id: string
64
- last_name: string
65
- passes: any[]
66
- patronymic: string
67
- personnel_number: number
68
- phone: string
69
- photos: Api_Auth_User_Photo[]
70
- positions: Api_Auth_User_Position[]
71
- profession: string
72
- roles: Api_Auth_User_Role[]
73
- security_warnings: any[]
74
- teams: Api_Auth_User_Team[]
75
- }
76
-
77
- export type Api_Auth_Login = {
78
- token: string
79
- user: Api_Auth_User
80
- }
81
-
82
- export type ChangePasswordPayload = {
83
- password: string
84
- password_confirmation: string
85
- }
86
-
87
- export type ChangePasswordResponse = Pick<
88
- Api_User,
89
- | 'id'
90
- | 'archiveHistory'
91
- | 'assigned_tasks'
92
- | 'divisions'
93
- | 'email'
94
- | 'full_name'
95
- | 'passes'
96
- | 'personnel_number'
97
- | 'phone'
98
- | 'photos'
99
- | 'positions'
100
- | 'responsible_tasks'
101
- | 'teams'
102
- | 'warehouses'
103
- >
104
-
105
- export type ConfigResponse = any
1
+ import { Api_User } from '@/api/types/Api_User'
2
+
3
+ export type LoginPayload = {
4
+ email: string
5
+ password: string
6
+ }
7
+
8
+ export type Api_Auth_User_Education = {
9
+ created_at: string
10
+ display_name: string
11
+ id: string
12
+ name: string
13
+ }
14
+
15
+ export type Api_Auth_User_Photo = {
16
+ id: string
17
+ name: string
18
+ path: string
19
+ type: string
20
+ }
21
+
22
+ export type Api_Auth_User_Position = {
23
+ description: string
24
+ display_name: string
25
+ id: string
26
+ name: string
27
+ }
28
+
29
+ export type Api_User_Roles_Permissions = {
30
+ created_at: string
31
+ description: string
32
+ display_name: string
33
+ id: string
34
+ name: string
35
+ updated_at: string
36
+ }
37
+
38
+ export type Api_Auth_User_Role = {
39
+ display_name: string
40
+ id: string
41
+ name: string
42
+ permissions: Api_User_Roles_Permissions[]
43
+ }
44
+
45
+ export type Api_Auth_User_Team = {
46
+ display_name: string
47
+ id: string
48
+ name: string
49
+ roles: Api_Auth_User_Role[]
50
+ }
51
+
52
+ export type Api_Auth_User = {
53
+ RFID: string
54
+ avatar_id: null | string
55
+ avatar_path: null | string
56
+ dismissal_at: null | string
57
+ divisions: string
58
+ educations: Api_Auth_User_Education[]
59
+ email: string
60
+ email_verified_at: string
61
+ first_name: string
62
+ full_name: string
63
+ id: string
64
+ last_name: string
65
+ passes: any[]
66
+ patronymic: string
67
+ personnel_number: number
68
+ phone: string
69
+ photos: Api_Auth_User_Photo[]
70
+ positions: Api_Auth_User_Position[]
71
+ profession: string
72
+ roles: Api_Auth_User_Role[]
73
+ security_warnings: any[]
74
+ teams: Api_Auth_User_Team[]
75
+ avatar: null
76
+ change_password: null
77
+ created_at: string
78
+ deleted_at: null
79
+ face_recognition_id: null
80
+ password_change_available_at: string
81
+ password_change_due_at: string
82
+ password_last_changed_at: string
83
+ updated_at: string
84
+ }
85
+
86
+ export type Api_Auth_Login = {
87
+ token: string
88
+ user: Api_Auth_User
89
+ }
90
+
91
+ export type ChangePasswordPayload = {
92
+ password: string
93
+ password_confirmation: string
94
+ }
95
+
96
+ export type ChangePasswordAndActivatePayload = {
97
+ email: string
98
+ currentPassword: string
99
+ password: string
100
+ passwordConfirmation: string
101
+ }
102
+
103
+ export type ChangePasswordResponse = Pick<
104
+ Api_User,
105
+ | 'id'
106
+ | 'archiveHistory'
107
+ | 'assigned_tasks'
108
+ | 'divisions'
109
+ | 'email'
110
+ | 'full_name'
111
+ | 'passes'
112
+ | 'personnel_number'
113
+ | 'phone'
114
+ | 'photos'
115
+ | 'positions'
116
+ | 'responsible_tasks'
117
+ | 'teams'
118
+ | 'warehouses'
119
+ >
120
+
121
+ export type ConfigResponse = any
@@ -1,26 +1,26 @@
1
- export type Api_Metrics_Unused_Personnel = {
2
- position_name: string | null
3
- brigade_name: string | null
4
- full_name: string | null
5
- }
6
-
7
- export type Api_Metrics_Personnel_Plan_User = {
8
- user_id: string
9
- full_name: string
10
- position_id: string
11
- position_name: string
12
- position_display_name: string
13
- }
14
-
15
- export type Api_Metrics_Personnel_Plan_Position = {
16
- position_id: string
17
- position_name: string
18
- position_display_name: string
19
- count: number
20
- }
21
-
22
- export type Api_Metrics_Personnel_Plan = {
23
- engaged: Api_Metrics_Personnel_Plan_User[]
24
- fixed_repair: Api_Metrics_Personnel_Plan_Position[]
25
- ready: Api_Metrics_Personnel_Plan_User[]
26
- }
1
+ export type Api_Metrics_Unused_Personnel = {
2
+ position_name: string | null
3
+ brigade_name: string | null
4
+ full_name: string | null
5
+ }
6
+
7
+ export type Api_Metrics_Personnel_Plan_User = {
8
+ user_id: string
9
+ full_name: string
10
+ position_id: string
11
+ position_name: string
12
+ position_display_name: string
13
+ }
14
+
15
+ export type Api_Metrics_Personnel_Plan_Position = {
16
+ position_id: string
17
+ position_name: string
18
+ position_display_name: string
19
+ count: number
20
+ }
21
+
22
+ export type Api_Metrics_Personnel_Plan = {
23
+ engaged: Api_Metrics_Personnel_Plan_User[]
24
+ fixed_repair: Api_Metrics_Personnel_Plan_Position[]
25
+ ready: Api_Metrics_Personnel_Plan_User[]
26
+ }