shared-ritm 1.3.25 → 1.3.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 (55) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/shared-ritm.es.js +8778 -8704
  3. package/dist/shared-ritm.umd.js +324 -324
  4. package/dist/types/api/services/PhotoService.d.ts +38 -51
  5. package/dist/types/api/services/RepairsService.d.ts +1 -1
  6. package/dist/types/api/settings/ApiService.d.ts +1 -1
  7. package/dist/types/api/types/Api_Repairs.d.ts +12 -0
  8. package/package.json +65 -65
  9. package/src/App.vue +2461 -2461
  10. package/src/api/services/BrigadesService.ts +32 -32
  11. package/src/api/services/ControlsService.ts +96 -96
  12. package/src/api/services/EquipmentService.ts +29 -29
  13. package/src/api/services/InstrumentsService.ts +68 -68
  14. package/src/api/services/MetricsService.ts +123 -123
  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 +111 -111
  18. package/src/api/services/ScheduleService.ts +69 -69
  19. package/src/api/services/SearchService.ts +22 -22
  20. package/src/api/services/UserService.ts +119 -119
  21. package/src/api/services/VideoService.ts +108 -108
  22. package/src/api/settings/ApiService.ts +124 -124
  23. package/src/api/types/Api_Auth.ts +105 -105
  24. package/src/api/types/Api_Brigades.ts +36 -36
  25. package/src/api/types/Api_Controls.ts +111 -111
  26. package/src/api/types/Api_Equipment.ts +3 -3
  27. package/src/api/types/Api_Instruments.ts +156 -156
  28. package/src/api/types/Api_Metrics.ts +5 -5
  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 +152 -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 +372 -372
  35. package/src/api/types/Api_User.ts +146 -146
  36. package/src/api/types/Api_Video.ts +198 -198
  37. package/src/common/app-datepicker/AppDatepicker.vue +218 -218
  38. package/src/common/app-dropdown/AppDropdown.vue +37 -37
  39. package/src/common/app-input-new/AppInputNew.vue +179 -179
  40. package/src/common/app-layout/AppLayout.vue +84 -84
  41. package/src/common/app-modal/index.vue +96 -96
  42. package/src/common/app-sheet-new/AppSheetNew.vue +244 -244
  43. package/src/common/app-sidebar/AppSidebar.vue +174 -174
  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/TableModal.vue +356 -356
  48. package/src/common/app-table/controllers/useBaseTable.ts +45 -45
  49. package/src/common/app-table/controllers/useTableModel.ts +102 -102
  50. package/src/icons/dialogs/SafetyIcon.vue +12 -12
  51. package/src/index.ts +131 -131
  52. package/src/styles/variables.sass +12 -12
  53. package/src/utils/files.ts +19 -19
  54. package/dist/types/api/services/ComentsServise.d.ts +0 -10
  55. package/dist/types/api/types/Api_Users.d.ts +0 -43
@@ -1,218 +1,218 @@
1
- <template>
2
- <div class="datepicker">
3
- <app-input-new
4
- v-model="model"
5
- readonly
6
- input-class="cursor-pointer"
7
- :label="label"
8
- :required="required"
9
- :rules="rules"
10
- :error="error"
11
- :disable="disabled"
12
- placeholder="Выберите дату"
13
- >
14
- <q-popup-proxy v-if="!disabled" class="datepicker__wrapper" @update:model-value="updateError">
15
- <q-date
16
- :model-value="model"
17
- :mask="time ? `DD.MM.YYYY ${timeFormat}` : 'DD.MM.YYYY'"
18
- :options="disablePastDates"
19
- @update:model-value="updateDate"
20
- />
21
- <q-time
22
- v-if="time"
23
- v-model="model"
24
- :mask="`DD.MM.YYYY ${timeFormat}`"
25
- format24h
26
- :hour-options="hourOptions()"
27
- :minute-options="minuteOptions()"
28
- />
29
- </q-popup-proxy>
30
- <template #append>
31
- <q-icon name="event" class="cursor-pointer"></q-icon>
32
- </template>
33
- </app-input-new>
34
- </div>
35
- </template>
36
-
37
- <script setup lang="ts">
38
- import AppInputNew from '@/common/app-input-new/AppInputNew.vue'
39
- import { ref, withDefaults, defineEmits, defineProps, defineModel } from 'vue'
40
- import { date } from 'quasar'
41
-
42
- interface Props {
43
- label?: string
44
- modelValue?: string
45
- rules?: ((val?: string | number | null) => boolean | string)[]
46
- disableRuleDates?: string | string[]
47
- time?: boolean
48
- noPastDates?: boolean
49
- disabled?: boolean
50
- required?: boolean
51
- timeFormat?: string
52
- }
53
- const props = withDefaults(defineProps<Props>(), {
54
- label: '',
55
- timeFormat: 'HH:mm',
56
- rules: () => [],
57
- disableRuleDates: undefined,
58
- modelValue: undefined,
59
- })
60
-
61
- defineEmits(['update:modelValue'])
62
-
63
- const model = defineModel<string | null | undefined>()
64
-
65
- const error = ref(false)
66
-
67
- const updateError = (state: boolean) => {
68
- if (props.required && !error.value && !model.value && !state) {
69
- error.value = true
70
- }
71
- }
72
-
73
- const updateDate = (value: string) => {
74
- error.value = false
75
-
76
- if (!props.noPastDates) {
77
- model.value = value
78
- return
79
- }
80
-
81
- const today = new Date()
82
- const todayStr = today.toLocaleDateString('ru-RU').slice(0, 10)
83
- const selectedDate = getSelectedDate(value)
84
-
85
- if (selectedDate !== todayStr) {
86
- model.value = value
87
- return
88
- }
89
-
90
- const selectedHour = getSelectedHour(value)
91
- const selectedMinutes = getSelectedMinutes(value)
92
- const currentHour = today.getHours()
93
- const currentMinutes = today.getMinutes()
94
-
95
- if (
96
- (selectedHour || selectedHour === 0) &&
97
- (selectedMinutes || selectedMinutes === 0) &&
98
- (selectedHour < currentHour || (selectedHour === currentHour && selectedMinutes < currentMinutes))
99
- ) {
100
- today.setHours(currentHour, currentMinutes, 0)
101
- model.value = date.formatDate(today, `DD.MM.YYYY ${props.timeFormat}`)
102
- } else {
103
- model.value = value
104
- }
105
- }
106
-
107
- const disablePastDates = (date: string) => {
108
- if (!props.noPastDates && !props.disableRuleDates) return true
109
-
110
- const [year, month, day] = date.split('/')
111
- const currentDate = new Date(Number(year), Number(month) - 1, Number(day))
112
- currentDate.setHours(0, 0, 0, 0)
113
-
114
- if (props.disableRuleDates) {
115
- if (Array.isArray(props.disableRuleDates)) {
116
- const firstDate = props.disableRuleDates[0] ? new Date(props.disableRuleDates[0]) : null
117
- firstDate?.setHours(0, 0, 0, 0)
118
- const lastDate = props.disableRuleDates[1] ? new Date(props.disableRuleDates[1]) : null
119
- lastDate?.setHours(0, 0, 0, 0)
120
-
121
- return (!firstDate || currentDate >= firstDate) && (!lastDate || currentDate <= lastDate)
122
- } else {
123
- const firstDate = new Date(props.disableRuleDates)
124
- return currentDate >= firstDate
125
- }
126
- }
127
-
128
- const today = new Date()
129
- const todayDate = new Date(today.getFullYear(), today.getMonth(), today.getDate())
130
-
131
- return currentDate >= todayDate
132
- }
133
-
134
- function getSelectedDate(value = model.value) {
135
- if (!value) return null
136
-
137
- return value.toString().substring(0, 10)
138
- }
139
-
140
- function getSelectedHour(value = model.value) {
141
- if (!value) return null
142
-
143
- const timePart = value.toString().split(' ')[1]
144
- return timePart ? Number(timePart.split(':')[0]) : null
145
- }
146
-
147
- function getSelectedMinutes(value = model.value) {
148
- if (!value) return null
149
-
150
- const timePart = value.toString().split(' ')[1]
151
- return timePart ? Number(timePart.split(':')[1]) : null
152
- }
153
-
154
- function hourOptions(): number[] {
155
- const today = new Date()
156
- const selectedDate = getSelectedDate()
157
- const todayStr = today.toLocaleDateString('ru-RU').slice(0, 10)
158
-
159
- if (selectedDate !== todayStr) {
160
- return Array.from({ length: 24 }, (_, i) => i)
161
- }
162
-
163
- const currentHour = today.getHours()
164
- return Array.from({ length: 24 - currentHour }, (_, i) => currentHour + i)
165
- }
166
-
167
- function minuteOptions(): number[] {
168
- const today = new Date()
169
- const selectedDate = getSelectedDate()
170
- const todayStr = today.toLocaleDateString('ru-RU').slice(0, 10)
171
- const selectedHour = getSelectedHour()
172
-
173
- if (selectedDate !== todayStr) {
174
- return Array.from({ length: 60 }, (_, i) => i)
175
- }
176
-
177
- if (selectedHour === today.getHours()) {
178
- const currentMinutes = today.getMinutes()
179
- return Array.from({ length: 60 - currentMinutes }, (_, i) => currentMinutes + i)
180
- }
181
-
182
- return Array.from({ length: 60 }, (_, i) => i)
183
- }
184
- </script>
185
-
186
- <style scoped lang="scss">
187
- .datepicker {
188
- :deep(input),
189
- :deep(.q-field--readonly.q-field--float .q-field__native) {
190
- cursor: pointer;
191
- }
192
-
193
- &__label {
194
- font-size: 14px;
195
- font-weight: 700;
196
- color: #7d8592;
197
-
198
- .required {
199
- color: #f65160;
200
- font-weight: bold;
201
- }
202
- }
203
- }
204
- </style>
205
-
206
- <style lang="scss">
207
- .datepicker {
208
- &__wrapper {
209
- display: flex;
210
-
211
- .q-time,
212
- .q-date {
213
- box-shadow: none;
214
- border-radius: 0;
215
- }
216
- }
217
- }
218
- </style>
1
+ <template>
2
+ <div class="datepicker">
3
+ <app-input-new
4
+ v-model="model"
5
+ readonly
6
+ input-class="cursor-pointer"
7
+ :label="label"
8
+ :required="required"
9
+ :rules="rules"
10
+ :error="error"
11
+ :disable="disabled"
12
+ placeholder="Выберите дату"
13
+ >
14
+ <q-popup-proxy v-if="!disabled" class="datepicker__wrapper" @update:model-value="updateError">
15
+ <q-date
16
+ :model-value="model"
17
+ :mask="time ? `DD.MM.YYYY ${timeFormat}` : 'DD.MM.YYYY'"
18
+ :options="disablePastDates"
19
+ @update:model-value="updateDate"
20
+ />
21
+ <q-time
22
+ v-if="time"
23
+ v-model="model"
24
+ :mask="`DD.MM.YYYY ${timeFormat}`"
25
+ format24h
26
+ :hour-options="hourOptions()"
27
+ :minute-options="minuteOptions()"
28
+ />
29
+ </q-popup-proxy>
30
+ <template #append>
31
+ <q-icon name="event" class="cursor-pointer"></q-icon>
32
+ </template>
33
+ </app-input-new>
34
+ </div>
35
+ </template>
36
+
37
+ <script setup lang="ts">
38
+ import AppInputNew from '@/common/app-input-new/AppInputNew.vue'
39
+ import { ref, withDefaults, defineEmits, defineProps, defineModel } from 'vue'
40
+ import { date } from 'quasar'
41
+
42
+ interface Props {
43
+ label?: string
44
+ modelValue?: string
45
+ rules?: ((val?: string | number | null) => boolean | string)[]
46
+ disableRuleDates?: string | string[]
47
+ time?: boolean
48
+ noPastDates?: boolean
49
+ disabled?: boolean
50
+ required?: boolean
51
+ timeFormat?: string
52
+ }
53
+ const props = withDefaults(defineProps<Props>(), {
54
+ label: '',
55
+ timeFormat: 'HH:mm',
56
+ rules: () => [],
57
+ disableRuleDates: undefined,
58
+ modelValue: undefined,
59
+ })
60
+
61
+ defineEmits(['update:modelValue'])
62
+
63
+ const model = defineModel<string | null | undefined>()
64
+
65
+ const error = ref(false)
66
+
67
+ const updateError = (state: boolean) => {
68
+ if (props.required && !error.value && !model.value && !state) {
69
+ error.value = true
70
+ }
71
+ }
72
+
73
+ const updateDate = (value: string) => {
74
+ error.value = false
75
+
76
+ if (!props.noPastDates) {
77
+ model.value = value
78
+ return
79
+ }
80
+
81
+ const today = new Date()
82
+ const todayStr = today.toLocaleDateString('ru-RU').slice(0, 10)
83
+ const selectedDate = getSelectedDate(value)
84
+
85
+ if (selectedDate !== todayStr) {
86
+ model.value = value
87
+ return
88
+ }
89
+
90
+ const selectedHour = getSelectedHour(value)
91
+ const selectedMinutes = getSelectedMinutes(value)
92
+ const currentHour = today.getHours()
93
+ const currentMinutes = today.getMinutes()
94
+
95
+ if (
96
+ (selectedHour || selectedHour === 0) &&
97
+ (selectedMinutes || selectedMinutes === 0) &&
98
+ (selectedHour < currentHour || (selectedHour === currentHour && selectedMinutes < currentMinutes))
99
+ ) {
100
+ today.setHours(currentHour, currentMinutes, 0)
101
+ model.value = date.formatDate(today, `DD.MM.YYYY ${props.timeFormat}`)
102
+ } else {
103
+ model.value = value
104
+ }
105
+ }
106
+
107
+ const disablePastDates = (date: string) => {
108
+ if (!props.noPastDates && !props.disableRuleDates) return true
109
+
110
+ const [year, month, day] = date.split('/')
111
+ const currentDate = new Date(Number(year), Number(month) - 1, Number(day))
112
+ currentDate.setHours(0, 0, 0, 0)
113
+
114
+ if (props.disableRuleDates) {
115
+ if (Array.isArray(props.disableRuleDates)) {
116
+ const firstDate = props.disableRuleDates[0] ? new Date(props.disableRuleDates[0]) : null
117
+ firstDate?.setHours(0, 0, 0, 0)
118
+ const lastDate = props.disableRuleDates[1] ? new Date(props.disableRuleDates[1]) : null
119
+ lastDate?.setHours(0, 0, 0, 0)
120
+
121
+ return (!firstDate || currentDate >= firstDate) && (!lastDate || currentDate <= lastDate)
122
+ } else {
123
+ const firstDate = new Date(props.disableRuleDates)
124
+ return currentDate >= firstDate
125
+ }
126
+ }
127
+
128
+ const today = new Date()
129
+ const todayDate = new Date(today.getFullYear(), today.getMonth(), today.getDate())
130
+
131
+ return currentDate >= todayDate
132
+ }
133
+
134
+ function getSelectedDate(value = model.value) {
135
+ if (!value) return null
136
+
137
+ return value.toString().substring(0, 10)
138
+ }
139
+
140
+ function getSelectedHour(value = model.value) {
141
+ if (!value) return null
142
+
143
+ const timePart = value.toString().split(' ')[1]
144
+ return timePart ? Number(timePart.split(':')[0]) : null
145
+ }
146
+
147
+ function getSelectedMinutes(value = model.value) {
148
+ if (!value) return null
149
+
150
+ const timePart = value.toString().split(' ')[1]
151
+ return timePart ? Number(timePart.split(':')[1]) : null
152
+ }
153
+
154
+ function hourOptions(): number[] {
155
+ const today = new Date()
156
+ const selectedDate = getSelectedDate()
157
+ const todayStr = today.toLocaleDateString('ru-RU').slice(0, 10)
158
+
159
+ if (selectedDate !== todayStr) {
160
+ return Array.from({ length: 24 }, (_, i) => i)
161
+ }
162
+
163
+ const currentHour = today.getHours()
164
+ return Array.from({ length: 24 - currentHour }, (_, i) => currentHour + i)
165
+ }
166
+
167
+ function minuteOptions(): number[] {
168
+ const today = new Date()
169
+ const selectedDate = getSelectedDate()
170
+ const todayStr = today.toLocaleDateString('ru-RU').slice(0, 10)
171
+ const selectedHour = getSelectedHour()
172
+
173
+ if (selectedDate !== todayStr) {
174
+ return Array.from({ length: 60 }, (_, i) => i)
175
+ }
176
+
177
+ if (selectedHour === today.getHours()) {
178
+ const currentMinutes = today.getMinutes()
179
+ return Array.from({ length: 60 - currentMinutes }, (_, i) => currentMinutes + i)
180
+ }
181
+
182
+ return Array.from({ length: 60 }, (_, i) => i)
183
+ }
184
+ </script>
185
+
186
+ <style scoped lang="scss">
187
+ .datepicker {
188
+ :deep(input),
189
+ :deep(.q-field--readonly.q-field--float .q-field__native) {
190
+ cursor: pointer;
191
+ }
192
+
193
+ &__label {
194
+ font-size: 14px;
195
+ font-weight: 700;
196
+ color: #7d8592;
197
+
198
+ .required {
199
+ color: #f65160;
200
+ font-weight: bold;
201
+ }
202
+ }
203
+ }
204
+ </style>
205
+
206
+ <style lang="scss">
207
+ .datepicker {
208
+ &__wrapper {
209
+ display: flex;
210
+
211
+ .q-time,
212
+ .q-date {
213
+ box-shadow: none;
214
+ border-radius: 0;
215
+ }
216
+ }
217
+ }
218
+ </style>
@@ -1,37 +1,37 @@
1
- <template>
2
- <q-btn-dropdown
3
- v-model="model"
4
- :color="color"
5
- :content-style="{ width: width || '200px', minWidth: height || '200px' }"
6
- >
7
- <template #label>
8
- <slot name="label">
9
- {{ label }}
10
- </slot>
11
- </template>
12
- <template #default>
13
- <slot name="content" />
14
- </template>
15
- </q-btn-dropdown>
16
- </template>
17
-
18
- <script setup lang="ts">
19
- interface Props {
20
- label?: string
21
- color?: string
22
- width?: number
23
- height?: number
24
- }
25
-
26
- const props = defineProps<Props>()
27
-
28
- const model = defineModel<boolean>()
29
- </script>
30
-
31
- <style scoped lang="scss">
32
- .q-btn {
33
- &:before {
34
- box-shadow: none;
35
- }
36
- }
37
- </style>
1
+ <template>
2
+ <q-btn-dropdown
3
+ v-model="model"
4
+ :color="color"
5
+ :content-style="{ width: width || '200px', minWidth: height || '200px' }"
6
+ >
7
+ <template #label>
8
+ <slot name="label">
9
+ {{ label }}
10
+ </slot>
11
+ </template>
12
+ <template #default>
13
+ <slot name="content" />
14
+ </template>
15
+ </q-btn-dropdown>
16
+ </template>
17
+
18
+ <script setup lang="ts">
19
+ interface Props {
20
+ label?: string
21
+ color?: string
22
+ width?: number
23
+ height?: number
24
+ }
25
+
26
+ const props = defineProps<Props>()
27
+
28
+ const model = defineModel<boolean>()
29
+ </script>
30
+
31
+ <style scoped lang="scss">
32
+ .q-btn {
33
+ &:before {
34
+ box-shadow: none;
35
+ }
36
+ }
37
+ </style>