shared-ritm 1.3.82 → 1.3.84
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.
- package/dist/index.css +1 -1
- package/dist/shared-ritm.es.js +12 -12
- package/dist/shared-ritm.umd.js +3 -3
- package/package.json +70 -70
- package/src/App.vue +2461 -2461
- package/src/api/services/AuthService.ts +67 -67
- package/src/api/services/ControlsService.ts +96 -96
- package/src/api/services/EquipmentService.ts +52 -52
- package/src/api/services/MetricsService.ts +143 -143
- package/src/api/services/RepairsService.ts +111 -111
- package/src/api/services/UserIssueService.ts +32 -32
- package/src/api/services/UserService.ts +129 -129
- package/src/api/services/VideoService.ts +118 -118
- package/src/api/settings/ApiService.ts +3 -1
- package/src/api/types/Api_Auth.ts +121 -121
- package/src/api/types/Api_Equipment.ts +13 -13
- package/src/api/types/Api_Metrics.ts +51 -51
- package/src/api/types/Api_Repairs.ts +187 -187
- package/src/api/types/Api_Search.ts +81 -81
- package/src/api/types/Api_Tasks.ts +376 -376
- package/src/api/types/Api_User.ts +157 -157
- package/src/api/types/Api_User_Issue.ts +36 -36
- package/src/api/types/Api_Video.ts +244 -244
- package/src/common/app-button/Button.stories.ts +369 -369
- package/src/common/app-checkbox/AppCheckbox.vue +31 -31
- package/src/common/app-checkbox/Checkbox.stories.ts +252 -252
- package/src/common/app-date-picker/DatePicker.stories.ts +66 -66
- package/src/common/app-datepicker/Datepicker.stories.ts +145 -145
- package/src/common/app-dialogs/AppConfirmDialog.vue +109 -109
- package/src/common/app-dialogs/Confirm.stories.ts +93 -93
- package/src/common/app-dropdown/Dropdown.stories.ts +94 -94
- package/src/common/app-file/File.stories.ts +104 -104
- package/src/common/app-icon/AppIcon.vue +110 -110
- package/src/common/app-icon/Icon.stories.ts +91 -91
- package/src/common/app-input/Input.stories.ts +160 -160
- package/src/common/app-input-new/AppInputNew.vue +181 -181
- package/src/common/app-input-new/InputNew.stories.ts +240 -240
- package/src/common/app-input-search/InputSearch.stories.ts +149 -149
- package/src/common/app-layout/components/AppLayoutHeader.vue +289 -289
- package/src/common/app-loader/Loader.stories.ts +114 -114
- package/src/common/app-select/AppSelect.vue +159 -159
- package/src/common/app-select/Select.stories.ts +155 -155
- package/src/common/app-sidebar/AppSidebar.vue +174 -174
- package/src/common/app-table/AppTable.vue +313 -313
- package/src/common/app-table/components/ModalSelect.stories.ts +323 -323
- package/src/common/app-table/components/ModalSelect.vue +302 -302
- package/src/common/app-table/components/TableModal.vue +367 -367
- package/src/common/app-table/controllers/useColumnSelector.ts +45 -45
- package/src/common/app-table/controllers/useTableModel.ts +97 -97
- package/src/common/app-toggle/AppToggle.vue +12 -12
- package/src/common/app-toggle/Toggle.stories.ts +245 -245
- package/src/common/app-wrapper/AppWrapper.vue +31 -31
- package/src/configs/storybook.ts +14 -14
- package/src/icons/sidebar/user-requests-icon.vue +23 -23
- package/src/index.ts +134 -134
- package/src/shared/styles/general.css +140 -140
- package/src/styles/variables.sass +12 -12
- package/src/utils/files.ts +38 -38
- package/src/utils/helpers.ts +59 -59
- package/dist/types/api/services/PhotoService.d.ts +0 -40
- package/dist/types/stories/Button.stories.d.ts +0 -13
- package/dist/types/stories/Checkbox.stories.d.ts +0 -7
- package/dist/types/stories/Confirm.stories.d.ts +0 -8
- package/dist/types/stories/DatePicker.stories.d.ts +0 -8
- package/dist/types/stories/Dropdown.stories.d.ts +0 -8
- package/dist/types/stories/File.stories.d.ts +0 -8
- package/dist/types/stories/Icon.stories.d.ts +0 -7
- package/dist/types/stories/Input.stories.d.ts +0 -11
- package/dist/types/stories/InputNew.stories.d.ts +0 -12
- package/dist/types/stories/InputSearch.stories.d.ts +0 -10
- package/dist/types/stories/Loader.stories.d.ts +0 -8
- package/dist/types/stories/Select.stories.d.ts +0 -7
- package/dist/types/stories/Toggle.stories.d.ts +0 -8
|
@@ -1,181 +1,181 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="app-input-new">
|
|
3
|
-
<label v-if="label" class="app-input-new__label">
|
|
4
|
-
{{ label }}
|
|
5
|
-
<span v-if="required" class="required">*</span>
|
|
6
|
-
</label>
|
|
7
|
-
|
|
8
|
-
<q-input
|
|
9
|
-
v-model="model"
|
|
10
|
-
filled
|
|
11
|
-
:type="inputType"
|
|
12
|
-
:rules="rules"
|
|
13
|
-
:placeholder="placeholder"
|
|
14
|
-
:disable="disable"
|
|
15
|
-
:readonly="readonly"
|
|
16
|
-
:class="inputClass"
|
|
17
|
-
:error="error"
|
|
18
|
-
:autocomplete="autocomplete"
|
|
19
|
-
:debounce="debounce"
|
|
20
|
-
:loading="loading"
|
|
21
|
-
:maxlength="maxlength"
|
|
22
|
-
:counter="counter"
|
|
23
|
-
@blur="emit('blur')"
|
|
24
|
-
>
|
|
25
|
-
<slot />
|
|
26
|
-
<template #append>
|
|
27
|
-
<slot name="append" />
|
|
28
|
-
<q-icon
|
|
29
|
-
v-if="type === 'password'"
|
|
30
|
-
:name="isVisiblePass ? 'visibility' : 'visibility_off'"
|
|
31
|
-
color="primary"
|
|
32
|
-
class="cursor-pointer"
|
|
33
|
-
@click="isVisiblePass = !isVisiblePass"
|
|
34
|
-
/>
|
|
35
|
-
<q-icon
|
|
36
|
-
v-if="clearable && (model || model === 0)"
|
|
37
|
-
name="close"
|
|
38
|
-
class="cursor-pointer clear-input"
|
|
39
|
-
@click="model = null"
|
|
40
|
-
/>
|
|
41
|
-
<q-btn
|
|
42
|
-
v-if="uuid && !disable && !readonly"
|
|
43
|
-
flat
|
|
44
|
-
no-caps
|
|
45
|
-
label="UUID"
|
|
46
|
-
size="sm"
|
|
47
|
-
class="q-ml-sm uuid-btn"
|
|
48
|
-
@click="model = uuidv4()"
|
|
49
|
-
/>
|
|
50
|
-
<q-icon
|
|
51
|
-
v-if="copyable"
|
|
52
|
-
name="content_copy"
|
|
53
|
-
class="cursor-pointer q-ml-sm copy-icon"
|
|
54
|
-
color="primary"
|
|
55
|
-
:disable="!model"
|
|
56
|
-
@click="copyToClipboard"
|
|
57
|
-
/>
|
|
58
|
-
</template>
|
|
59
|
-
</q-input>
|
|
60
|
-
</div>
|
|
61
|
-
</template>
|
|
62
|
-
|
|
63
|
-
<script setup lang="ts">
|
|
64
|
-
import { defineEmits, defineProps, computed, ref } from 'vue'
|
|
65
|
-
import { uuidv4 } from '@/utils/helpers'
|
|
66
|
-
import { notificationSettings } from '@/utils/notification'
|
|
67
|
-
import { QInputProps, useQuasar } from 'quasar'
|
|
68
|
-
|
|
69
|
-
const props = defineProps<
|
|
70
|
-
QInputProps & {
|
|
71
|
-
modelValue?: string | number | null
|
|
72
|
-
label?: string
|
|
73
|
-
placeholder?: string
|
|
74
|
-
rules?: ((val: string | number | null | undefined) => boolean | string)[]
|
|
75
|
-
inputClass?: string
|
|
76
|
-
required?: boolean
|
|
77
|
-
readonly?: boolean
|
|
78
|
-
disable?: boolean
|
|
79
|
-
uuid?: boolean
|
|
80
|
-
clearable?: boolean
|
|
81
|
-
copyable?: boolean
|
|
82
|
-
error?: boolean
|
|
83
|
-
autocomplete?: string
|
|
84
|
-
debounce?: number
|
|
85
|
-
loading?: boolean
|
|
86
|
-
}
|
|
87
|
-
>()
|
|
88
|
-
|
|
89
|
-
const emit = defineEmits<{
|
|
90
|
-
(e: 'update:modelValue', val?: string | number | null): void
|
|
91
|
-
(e: 'blur', val?: string | number | null): void
|
|
92
|
-
}>()
|
|
93
|
-
|
|
94
|
-
const $q = useQuasar()
|
|
95
|
-
|
|
96
|
-
const isVisiblePass = ref(false)
|
|
97
|
-
|
|
98
|
-
const model = computed({
|
|
99
|
-
get: () => getValue(props.modelValue),
|
|
100
|
-
set: (newValue?: string | number | null) => emit('update:modelValue', getValue(newValue)),
|
|
101
|
-
})
|
|
102
|
-
|
|
103
|
-
const inputType = computed(() => (props.type === 'password' && isVisiblePass.value ? 'text' : props.type))
|
|
104
|
-
|
|
105
|
-
const getValue = (value?: string | number | null) => {
|
|
106
|
-
if (props.type === 'number') return value ? +value : value
|
|
107
|
-
|
|
108
|
-
return value
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
const copyToClipboard = () => {
|
|
112
|
-
if (!model.value && model.value !== 0) return
|
|
113
|
-
|
|
114
|
-
navigator.clipboard.writeText(model.value.toString()).then(() => {
|
|
115
|
-
$q.notify(notificationSettings('success', 'Данные скопированы'))
|
|
116
|
-
})
|
|
117
|
-
}
|
|
118
|
-
</script>
|
|
119
|
-
|
|
120
|
-
<style scoped lang="scss">
|
|
121
|
-
.app-input-new {
|
|
122
|
-
display: flex;
|
|
123
|
-
flex-direction: column;
|
|
124
|
-
margin-bottom: 15px;
|
|
125
|
-
|
|
126
|
-
&__label {
|
|
127
|
-
font-size: 14px;
|
|
128
|
-
font-weight: 700;
|
|
129
|
-
color: #7d8592;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
.required {
|
|
133
|
-
color: #f65160;
|
|
134
|
-
font-weight: bold;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
.clear-input {
|
|
138
|
-
color: #d8e0f0;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
.uuid-btn {
|
|
142
|
-
height: 32px;
|
|
143
|
-
padding: 0 10px;
|
|
144
|
-
border: 1px solid #3f8cff;
|
|
145
|
-
color: #3f8cff;
|
|
146
|
-
font-weight: 700;
|
|
147
|
-
font-size: 14px;
|
|
148
|
-
background: white;
|
|
149
|
-
border-radius: 6px;
|
|
150
|
-
|
|
151
|
-
:deep(.block) {
|
|
152
|
-
line-height: normal;
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
:deep(.q-placeholder) {
|
|
157
|
-
color: #7d8592;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
:deep(.q-field__control) {
|
|
161
|
-
min-height: 58px;
|
|
162
|
-
border-radius: 8px;
|
|
163
|
-
border: 1px solid #d8e0f0;
|
|
164
|
-
background: #fff;
|
|
165
|
-
box-shadow: 0 1px 2px 0 rgba(184, 200, 224, 0.22);
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
:deep(.q-field--filled .q-field__control:before) {
|
|
169
|
-
background: #fff !important;
|
|
170
|
-
border: none;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
:deep(.q-field--with-bottom) {
|
|
174
|
-
padding-bottom: 0;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
:deep(.q-field__bottom) {
|
|
178
|
-
padding: 0;
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="app-input-new">
|
|
3
|
+
<label v-if="label" class="app-input-new__label">
|
|
4
|
+
{{ label }}
|
|
5
|
+
<span v-if="required" class="required">*</span>
|
|
6
|
+
</label>
|
|
7
|
+
|
|
8
|
+
<q-input
|
|
9
|
+
v-model="model"
|
|
10
|
+
filled
|
|
11
|
+
:type="inputType"
|
|
12
|
+
:rules="rules"
|
|
13
|
+
:placeholder="placeholder"
|
|
14
|
+
:disable="disable"
|
|
15
|
+
:readonly="readonly"
|
|
16
|
+
:class="inputClass"
|
|
17
|
+
:error="error"
|
|
18
|
+
:autocomplete="autocomplete"
|
|
19
|
+
:debounce="debounce"
|
|
20
|
+
:loading="loading"
|
|
21
|
+
:maxlength="maxlength"
|
|
22
|
+
:counter="counter"
|
|
23
|
+
@blur="emit('blur')"
|
|
24
|
+
>
|
|
25
|
+
<slot />
|
|
26
|
+
<template #append>
|
|
27
|
+
<slot name="append" />
|
|
28
|
+
<q-icon
|
|
29
|
+
v-if="type === 'password'"
|
|
30
|
+
:name="isVisiblePass ? 'visibility' : 'visibility_off'"
|
|
31
|
+
color="primary"
|
|
32
|
+
class="cursor-pointer"
|
|
33
|
+
@click="isVisiblePass = !isVisiblePass"
|
|
34
|
+
/>
|
|
35
|
+
<q-icon
|
|
36
|
+
v-if="clearable && (model || model === 0)"
|
|
37
|
+
name="close"
|
|
38
|
+
class="cursor-pointer clear-input"
|
|
39
|
+
@click="model = null"
|
|
40
|
+
/>
|
|
41
|
+
<q-btn
|
|
42
|
+
v-if="uuid && !disable && !readonly"
|
|
43
|
+
flat
|
|
44
|
+
no-caps
|
|
45
|
+
label="UUID"
|
|
46
|
+
size="sm"
|
|
47
|
+
class="q-ml-sm uuid-btn"
|
|
48
|
+
@click="model = uuidv4()"
|
|
49
|
+
/>
|
|
50
|
+
<q-icon
|
|
51
|
+
v-if="copyable"
|
|
52
|
+
name="content_copy"
|
|
53
|
+
class="cursor-pointer q-ml-sm copy-icon"
|
|
54
|
+
color="primary"
|
|
55
|
+
:disable="!model"
|
|
56
|
+
@click="copyToClipboard"
|
|
57
|
+
/>
|
|
58
|
+
</template>
|
|
59
|
+
</q-input>
|
|
60
|
+
</div>
|
|
61
|
+
</template>
|
|
62
|
+
|
|
63
|
+
<script setup lang="ts">
|
|
64
|
+
import { defineEmits, defineProps, computed, ref } from 'vue'
|
|
65
|
+
import { uuidv4 } from '@/utils/helpers'
|
|
66
|
+
import { notificationSettings } from '@/utils/notification'
|
|
67
|
+
import { QInputProps, useQuasar } from 'quasar'
|
|
68
|
+
|
|
69
|
+
const props = defineProps<
|
|
70
|
+
QInputProps & {
|
|
71
|
+
modelValue?: string | number | null
|
|
72
|
+
label?: string
|
|
73
|
+
placeholder?: string
|
|
74
|
+
rules?: ((val: string | number | null | undefined) => boolean | string)[]
|
|
75
|
+
inputClass?: string
|
|
76
|
+
required?: boolean
|
|
77
|
+
readonly?: boolean
|
|
78
|
+
disable?: boolean
|
|
79
|
+
uuid?: boolean
|
|
80
|
+
clearable?: boolean
|
|
81
|
+
copyable?: boolean
|
|
82
|
+
error?: boolean
|
|
83
|
+
autocomplete?: string
|
|
84
|
+
debounce?: number
|
|
85
|
+
loading?: boolean
|
|
86
|
+
}
|
|
87
|
+
>()
|
|
88
|
+
|
|
89
|
+
const emit = defineEmits<{
|
|
90
|
+
(e: 'update:modelValue', val?: string | number | null): void
|
|
91
|
+
(e: 'blur', val?: string | number | null): void
|
|
92
|
+
}>()
|
|
93
|
+
|
|
94
|
+
const $q = useQuasar()
|
|
95
|
+
|
|
96
|
+
const isVisiblePass = ref(false)
|
|
97
|
+
|
|
98
|
+
const model = computed({
|
|
99
|
+
get: () => getValue(props.modelValue),
|
|
100
|
+
set: (newValue?: string | number | null) => emit('update:modelValue', getValue(newValue)),
|
|
101
|
+
})
|
|
102
|
+
|
|
103
|
+
const inputType = computed(() => (props.type === 'password' && isVisiblePass.value ? 'text' : props.type))
|
|
104
|
+
|
|
105
|
+
const getValue = (value?: string | number | null) => {
|
|
106
|
+
if (props.type === 'number') return value ? +value : value
|
|
107
|
+
|
|
108
|
+
return value
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
const copyToClipboard = () => {
|
|
112
|
+
if (!model.value && model.value !== 0) return
|
|
113
|
+
|
|
114
|
+
navigator.clipboard.writeText(model.value.toString()).then(() => {
|
|
115
|
+
$q.notify(notificationSettings('success', 'Данные скопированы'))
|
|
116
|
+
})
|
|
117
|
+
}
|
|
118
|
+
</script>
|
|
119
|
+
|
|
120
|
+
<style scoped lang="scss">
|
|
121
|
+
.app-input-new {
|
|
122
|
+
display: flex;
|
|
123
|
+
flex-direction: column;
|
|
124
|
+
margin-bottom: 15px;
|
|
125
|
+
|
|
126
|
+
&__label {
|
|
127
|
+
font-size: 14px;
|
|
128
|
+
font-weight: 700;
|
|
129
|
+
color: #7d8592;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.required {
|
|
133
|
+
color: #f65160;
|
|
134
|
+
font-weight: bold;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.clear-input {
|
|
138
|
+
color: #d8e0f0;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.uuid-btn {
|
|
142
|
+
height: 32px;
|
|
143
|
+
padding: 0 10px;
|
|
144
|
+
border: 1px solid #3f8cff;
|
|
145
|
+
color: #3f8cff;
|
|
146
|
+
font-weight: 700;
|
|
147
|
+
font-size: 14px;
|
|
148
|
+
background: white;
|
|
149
|
+
border-radius: 6px;
|
|
150
|
+
|
|
151
|
+
:deep(.block) {
|
|
152
|
+
line-height: normal;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
:deep(.q-placeholder) {
|
|
157
|
+
color: #7d8592;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
:deep(.q-field__control) {
|
|
161
|
+
min-height: 58px;
|
|
162
|
+
border-radius: 8px;
|
|
163
|
+
border: 1px solid #d8e0f0;
|
|
164
|
+
background: #fff;
|
|
165
|
+
box-shadow: 0 1px 2px 0 rgba(184, 200, 224, 0.22);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
:deep(.q-field--filled .q-field__control:before) {
|
|
169
|
+
background: #fff !important;
|
|
170
|
+
border: none;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
:deep(.q-field--with-bottom) {
|
|
174
|
+
padding-bottom: 0;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
:deep(.q-field__bottom) {
|
|
178
|
+
padding: 0;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
</style>
|