shared-ritm 1.3.36 → 1.3.38-alpha.0

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 (83) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/shared-ritm.es.js +15284 -14832
  3. package/dist/shared-ritm.umd.js +564 -564
  4. package/dist/types/api/services/AuthService.d.ts +1 -0
  5. package/dist/types/api/services/ControlsService.d.ts +3 -0
  6. package/dist/types/api/services/EquipmentService.d.ts +15 -5
  7. package/dist/types/api/services/GanttService.d.ts +22 -0
  8. package/dist/types/api/services/InstrumentsService.d.ts +6 -1
  9. package/dist/types/api/services/MetricsService.d.ts +5 -1
  10. package/dist/types/api/services/RepairsService.d.ts +1 -1
  11. package/dist/types/api/services/TasksService.d.ts +3 -2
  12. package/dist/types/api/services/UserIssueService.d.ts +15 -0
  13. package/dist/types/api/services/UserService.d.ts +2 -1
  14. package/dist/types/api/services/VideoService.d.ts +2 -1
  15. package/dist/types/api/settings/ApiService.d.ts +7 -3
  16. package/dist/types/api/types/Api_Auth.d.ts +15 -0
  17. package/dist/types/api/types/Api_Controls.d.ts +1 -0
  18. package/dist/types/api/types/Api_Equipment.d.ts +45 -0
  19. package/dist/types/api/types/Api_Instruments.d.ts +24 -0
  20. package/dist/types/api/types/Api_Metrics.d.ts +69 -0
  21. package/dist/types/api/types/Api_Repairs.d.ts +14 -1
  22. package/dist/types/api/types/Api_Search.d.ts +1 -0
  23. package/dist/types/api/types/Api_Tasks.d.ts +1 -0
  24. package/dist/types/api/types/Api_User.d.ts +12 -0
  25. package/dist/types/api/types/Api_User_Issue.d.ts +33 -0
  26. package/dist/types/api/types/Api_Video.d.ts +5 -4
  27. package/dist/types/common/app-button/Button.stories.d.ts +13 -0
  28. package/dist/types/common/app-checkbox/Checkbox.stories.d.ts +12 -0
  29. package/dist/types/common/app-date-picker/DatePicker.stories.d.ts +7 -0
  30. package/dist/types/common/app-datepicker/Datepicker.stories.d.ts +10 -0
  31. package/dist/types/common/app-dialogs/Confirm.stories.d.ts +8 -0
  32. package/dist/types/common/app-dropdown/Dropdown.stories.d.ts +8 -0
  33. package/dist/types/common/app-file/File.stories.d.ts +8 -0
  34. package/dist/types/common/app-icon/Icon.stories.d.ts +7 -0
  35. package/dist/types/common/app-input/Input.stories.d.ts +9 -0
  36. package/dist/types/common/app-input-new/InputNew.stories.d.ts +12 -0
  37. package/dist/types/common/app-input-search/InputSearch.stories.d.ts +8 -0
  38. package/dist/types/common/app-loader/Loader.stories.d.ts +8 -0
  39. package/dist/types/common/app-select/Select.stories.d.ts +7 -0
  40. package/dist/types/common/app-table/components/ModalSelect.stories.d.ts +10 -0
  41. package/dist/types/common/app-toggle/Toggle.stories.d.ts +12 -0
  42. package/dist/types/configs/storybook.d.ts +1 -0
  43. package/dist/types/index.d.ts +3 -1
  44. package/dist/types/utils/files.d.ts +2 -0
  45. package/package.json +1 -1
  46. package/src/api/services/AuthService.ts +53 -53
  47. package/src/api/services/BrigadesService.ts +32 -32
  48. package/src/api/services/GanttService.ts +23 -23
  49. package/src/api/services/ModulesService.ts +27 -27
  50. package/src/api/services/ProjectsService.ts +83 -83
  51. package/src/api/services/ScheduleService.ts +69 -69
  52. package/src/api/services/SearchService.ts +22 -22
  53. package/src/api/services/TasksService.ts +157 -157
  54. package/src/api/services/VideoService.ts +5 -0
  55. package/src/api/settings/ApiService.ts +125 -124
  56. package/src/api/types/Api_Brigades.ts +36 -36
  57. package/src/api/types/Api_Modules.ts +21 -21
  58. package/src/api/types/Api_Projects.ts +62 -62
  59. package/src/api/types/Api_Schedule.ts +64 -64
  60. package/src/api/types/Api_Tasks.ts +376 -375
  61. package/src/api/types/Api_Video.ts +7 -4
  62. package/src/common/app-checkbox/AppCheckbox.vue +26 -26
  63. package/src/common/app-datepicker/AppDatepicker.vue +218 -218
  64. package/src/common/app-dialogs/AppConfirmDialog.vue +109 -109
  65. package/src/common/app-dropdown/AppDropdown.vue +37 -37
  66. package/src/common/app-icon/AppIcon.vue +108 -108
  67. package/src/common/app-input/AppInput.vue +148 -148
  68. package/src/common/app-layout/AppLayout.vue +84 -84
  69. package/src/common/app-layout/components/AppLayoutHeader.vue +273 -273
  70. package/src/common/app-select/AppSelect.vue +159 -159
  71. package/src/common/app-sidebar/components/SidebarMenuItem.vue +149 -149
  72. package/src/common/app-table/AppTableLayout.vue +137 -137
  73. package/src/common/app-table/components/TableModal.vue +367 -367
  74. package/src/common/app-table/controllers/useBaseTable.ts +45 -45
  75. package/src/common/app-table/controllers/useColumnSelector.ts +45 -45
  76. package/src/common/app-toggle/AppToggle.vue +24 -24
  77. package/src/common/app-wrapper/AppWrapper.vue +28 -28
  78. package/src/icons/dialogs/SafetyIcon.vue +12 -12
  79. package/src/shared/styles/general.css +124 -124
  80. package/src/utils/helpers.ts +59 -59
  81. package/dist/types/api/services/ComentsServise.d.ts +0 -10
  82. package/dist/types/api/services/PhotoService.d.ts +0 -53
  83. package/dist/types/api/types/Api_Users.d.ts +0 -43
@@ -210,8 +210,6 @@ export type Api_Video_Source_Work_Zone_Task = Pick<
210
210
  | 'status'
211
211
  | 'time_to_complete_sec'
212
212
  > & {
213
- power_output_MWh: number | null
214
- cost_per_MWh: number | null
215
213
  project_id: string
216
214
  }
217
215
 
@@ -234,8 +232,13 @@ export type Api_Video_Source_Work_Zone = Pick<
234
232
  | 'type'
235
233
  | 'title'
236
234
  > & {
237
- power_output_MWh: number | null
238
- cost_per_MWh: number | null
239
235
  points: unknown[]
240
236
  tasks: Api_Video_Source_Work_Zone_Task[]
241
237
  }
238
+
239
+ export type Api_Video_Source_Economics_Zone = {
240
+ id: string
241
+ power_output_MWh: number | null
242
+ }
243
+
244
+ export type Api_Video_Source_Economics = Record<string, Api_Video_Source_Economics_Zone[]>
@@ -1,26 +1,26 @@
1
- <template>
2
- <q-checkbox v-model="value" :class="$style['app-checkbox']" />
3
- </template>
4
- <script setup lang="ts">
5
- import { computed } from 'vue'
6
-
7
- interface Props {
8
- modelValue: any
9
- }
10
-
11
- const props = defineProps<Props>()
12
- const emit = defineEmits(['update:modelValue', 'number'])
13
-
14
- const value = computed({
15
- get: () => props.modelValue,
16
- set: (newValue: any) => emit('update:modelValue', newValue),
17
- })
18
- </script>
19
- <style module lang="scss">
20
- .app-checkbox {
21
- :global(.q-checkbox__bg) {
22
- border-radius: 6px;
23
- border-color: white;
24
- }
25
- }
26
- </style>
1
+ <template>
2
+ <q-checkbox v-model="value" :class="$style['app-checkbox']" />
3
+ </template>
4
+ <script setup lang="ts">
5
+ import { computed } from 'vue'
6
+
7
+ interface Props {
8
+ modelValue: any
9
+ }
10
+
11
+ const props = defineProps<Props>()
12
+ const emit = defineEmits(['update:modelValue', 'number'])
13
+
14
+ const value = computed({
15
+ get: () => props.modelValue,
16
+ set: (newValue: any) => emit('update:modelValue', newValue),
17
+ })
18
+ </script>
19
+ <style module lang="scss">
20
+ .app-checkbox {
21
+ :global(.q-checkbox__bg) {
22
+ border-radius: 6px;
23
+ border-color: white;
24
+ }
25
+ }
26
+ </style>
@@ -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>