@nixweb/nixloc-ui 0.0.300 → 0.0.301
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/package.json +1 -1
- package/src/App.vue +13 -0
- package/src/component/forms/Button.vue +163 -0
- package/src/component/forms/ButtonFilter.vue +75 -0
- package/src/component/forms/ButtonGroup.vue +67 -0
- package/src/component/forms/ButtonSub.vue +98 -0
- package/src/component/forms/ButtonToggle.vue +77 -0
- package/src/component/forms/CheckboxGroup.vue +69 -0
- package/src/component/forms/CheckboxServer.vue +192 -0
- package/src/component/forms/CheckboxSimple.vue +60 -0
- package/src/component/forms/Color.vue +38 -0
- package/src/component/forms/DateTime.vue +170 -0
- package/src/component/forms/DateYearMonth.vue +193 -0
- package/src/component/forms/Dropdown.vue +236 -0
- package/src/component/forms/EditorHtml.vue +132 -0
- package/src/component/forms/FileUpload.vue +170 -0
- package/src/component/forms/ImageUpload.vue +214 -0
- package/src/component/forms/IncrementDecrement.vue +148 -0
- package/src/component/forms/InputAddressGoogle.vue +171 -0
- package/src/component/forms/InputCallToAction.vue +135 -0
- package/src/component/forms/InputDecimal.vue +153 -0
- package/src/component/forms/InputDecimalDiscount.vue +78 -0
- package/src/component/forms/InputNumber.vue +160 -0
- package/src/component/forms/InputPassword.vue +148 -0
- package/src/component/forms/InputTag.vue +125 -0
- package/src/component/forms/InputText.vue +174 -0
- package/src/component/forms/InputTextEdit.vue +69 -0
- package/src/component/forms/InputWhatsApp.vue +48 -0
- package/src/component/forms/Modal.vue +57 -0
- package/src/component/forms/RadioGroup.vue +91 -0
- package/src/component/forms/Select.vue +378 -0
- package/src/component/forms/SelectStatic.vue +198 -0
- package/src/component/forms/SideBar.vue +100 -0
- package/src/component/forms/Slider.vue +18 -0
- package/src/component/forms/TextArea.vue +138 -0
- package/src/component/forms/Toggle.vue +72 -0
- package/src/component/layout/Account.vue +131 -0
- package/src/component/layout/Alert.vue +88 -0
- package/src/component/layout/Badge.vue +111 -0
- package/src/component/layout/BarFloating.vue +68 -0
- package/src/component/layout/FixedBar.vue +103 -0
- package/src/component/layout/Gantt.vue +128 -0
- package/src/component/layout/Header.vue +56 -0
- package/src/component/layout/HideShow.vue +62 -0
- package/src/component/layout/IconMolded.vue +59 -0
- package/src/component/layout/LoadingFullPage.vue +27 -0
- package/src/component/layout/Menu.vue +287 -0
- package/src/component/layout/Molded.vue +30 -0
- package/src/component/layout/NewAccount.vue +136 -0
- package/src/component/layout/NewHeader.vue +60 -0
- package/src/component/layout/NewIconMolded.vue +71 -0
- package/src/component/layout/NewMenu.vue +456 -0
- package/src/component/layout/Panel.vue +185 -0
- package/src/component/layout/Popover.vue +126 -0
- package/src/component/layout/ScrollBar.vue +57 -0
- package/src/component/layout/Tab.vue +135 -0
- package/src/component/layout/Tag.vue +97 -0
- package/src/component/layout/Wizard.vue +211 -0
- package/src/component/rental/DisplayCalculatePeriod.vue +49 -0
- package/src/component/rental/DisplayPeriodRent.vue +55 -0
- package/src/component/rental/DisplayTotalization.vue +86 -0
- package/src/component/report/Fields.vue +109 -0
- package/src/component/report/Report.vue +314 -0
- package/src/component/report/ReportTable.vue +112 -0
- package/src/component/report/Totalization.vue +34 -0
- package/src/component/shared/CodeEditor.vue +128 -0
- package/src/component/shared/Collapse.vue +131 -0
- package/src/component/shared/Confirmation.vue +74 -0
- package/src/component/shared/DocumentEditor.vue +99 -0
- package/src/component/shared/DocumentPreview.vue +81 -0
- package/src/component/shared/DocumentPublic.vue +33 -0
- package/src/component/shared/ExportExcel.vue +56 -0
- package/src/component/shared/ExportPDF.vue +116 -0
- package/src/component/shared/FullCalendar.vue +174 -0
- package/src/component/shared/HeaderReport.vue +47 -0
- package/src/component/shared/HorizontalFilter.vue +64 -0
- package/src/component/shared/ListNotifications.vue +70 -0
- package/src/component/shared/Loading.vue +107 -0
- package/src/component/shared/LoadingCard.vue +65 -0
- package/src/component/shared/LoadingMoreButton.vue +23 -0
- package/src/component/shared/Messages.vue +109 -0
- package/src/component/shared/PDFViewer.vue +24 -0
- package/src/component/shared/Pagination.vue +108 -0
- package/src/component/shared/ParameterLegend.vue +169 -0
- package/src/component/shared/ProgressBar.vue +25 -0
- package/src/component/shared/QueryButton.vue +66 -0
- package/src/component/shared/Report.vue +200 -0
- package/src/component/shared/SaveCancel.vue +99 -0
- package/src/component/shared/Search.vue +174 -0
- package/src/component/shared/SelectOption.vue +162 -0
- package/src/component/shared/Table.vue +174 -0
- package/src/component/shared/TableButton.vue +36 -0
- package/src/component/shared/TableDraggable.vue +117 -0
- package/src/component/shared/TableImport.vue +93 -0
- package/src/component/shared/TableItem.vue +214 -0
- package/src/component/shared/TableTotalPerPage.vue +78 -0
- package/src/component/shared/TableTotalRecords.vue +44 -0
- package/src/component/shared/TableTotalization.vue +47 -0
- package/src/component/shared/TimeLine.vue +42 -0
- package/src/component/shared/Timer.vue +78 -0
- package/src/component/shared/Tip.vue +42 -0
- package/src/component/shared/Toast.vue +69 -0
- package/src/component/shared/ToggleTheme.vue +128 -0
- package/src/component/shared/TotalizationReport.vue +86 -0
- package/src/component/shared/VerticalFilter.vue +97 -0
- package/src/component/shared/automation/ActivitiesList.vue +44 -0
- package/src/component/shared/automation/AddRule.vue +61 -0
- package/src/component/shared/automation/AutomationBuilder.vue +27 -0
- package/src/component/shared/automation/DynamicComponentList.vue +86 -0
- package/src/component/shared/automation/SelectRule.vue +98 -0
- package/src/component/shared/automation/components/BillingByRent.vue +98 -0
- package/src/component/shared/automation/components/SendEmail.vue +94 -0
- package/src/component/shared/file-manager/FileManager.vue +391 -0
- package/src/component/shared/filter-builder/FilterBuilder.vue +221 -0
- package/src/component/shared/filter-builder/FilterQuery.vue +94 -0
- package/src/component/shared/query-builder/AddRule.vue +203 -0
- package/src/component/shared/query-builder/ConvertToOdata.js +86 -0
- package/src/component/shared/query-builder/DynamicComponent.vue +161 -0
- package/src/component/shared/query-builder/DynamicComponentList.vue +70 -0
- package/src/component/shared/query-builder/Fields.vue +93 -0
- package/src/component/shared/query-builder/QueryBuilder.vue +69 -0
- package/src/component/shared/query-builder/Rules.vue +68 -0
- package/src/component/shared/query-builder/SelectRule.vue +97 -0
- package/src/component/shared/query-builder/Tags.vue +59 -0
- package/src/component/shared/query-builder/utilities.js +22 -0
- package/src/component/signature/Payment.vue +161 -0
- package/src/component/signature/Warning.vue +76 -0
- package/src/component/template/ListViewWithDataHandler.vue +429 -0
- package/src/component/template/ReportCreateUpdate.vue +110 -0
- package/src/component/template/ViewTemplateConfiguration.vue +64 -0
- package/src/component/template/ViewTemplateDocumentView.vue +213 -0
- package/src/component/template/ViewTemplateImportFile.vue +347 -0
- package/src/component/template/ViewTemplateReportList.vue +217 -0
- package/src/component/template/ViewTemplateReportPreview.vue +432 -0
- package/src/component/template/ViewTemplateSelectOption.vue +46 -0
- package/src/component/template/ViewTemplateWithSalveCancel.vue +32 -0
- package/src/component/template/ViewTemplateWithTable.vue +62 -0
- package/src/component/template/model/Report.js +6 -0
- package/src/component/training/Course.vue +344 -0
- package/src/component/training/CourseView.vue +190 -0
- package/src/component/value-objects/Address.js +11 -0
- package/src/component/value-objects/Address.vue +157 -0
- package/src/component/value-objects/Contact.js +7 -0
- package/src/component/value-objects/Contact.vue +106 -0
- package/src/component/value-objects/Person.js +10 -0
- package/src/component/value-objects/Person.vue +129 -0
- package/src/config/axios.js +9 -0
- package/src/config/dicas.js +15 -0
- package/src/config/router.js +14 -0
- package/src/config/token.js +15 -0
- package/src/main.js +23 -0
- package/src/store/modules/automation.js +31 -0
- package/src/store/modules/generic.js +816 -0
- package/src/store/modules/report.js +278 -0
- package/src/store/modules/user.js +67 -0
- package/src/store/modules/util.js +26 -0
- package/src/store/modules/validation.js +39 -0
- package/src/store/store.js +14 -0
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div :class="['panel', { collapsed: menuCollapsed }]">
|
|
3
|
+
<Toast />
|
|
4
|
+
<Loading v-show="isLoading('panel')" />
|
|
5
|
+
<div v-show="!isLoading('panel')">
|
|
6
|
+
<div v-show="showVerticalFilter">
|
|
7
|
+
<VerticalFilter>
|
|
8
|
+
<slot name="content-filter"></slot>
|
|
9
|
+
</VerticalFilter>
|
|
10
|
+
</div>
|
|
11
|
+
<div class="local-container" :class="{ 'layout-small': layout == 'small' }">
|
|
12
|
+
<div v-if="!modal.open && !vodal.open" class="div-message-panel">
|
|
13
|
+
<Messages />
|
|
14
|
+
</div>
|
|
15
|
+
<br>
|
|
16
|
+
<br>
|
|
17
|
+
<div class="row">
|
|
18
|
+
<div class="col-10">
|
|
19
|
+
<div class="div-title">
|
|
20
|
+
<span class="module">
|
|
21
|
+
<span class="icon-panel"><i class="fas fa-compass"></i></span>
|
|
22
|
+
{{ module }} <span v-if="title">|</span></span>
|
|
23
|
+
<span class="title"> {{ title }}</span>
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
<div class="col-2" v-if="currentRoute != 'dashboard'">
|
|
27
|
+
<div class="div-back text-right" @click="back()">
|
|
28
|
+
<i class="fa-solid fa-circle-arrow-left"></i>
|
|
29
|
+
<span> Voltar</span>
|
|
30
|
+
</div>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
<br v-show="showButtons" />
|
|
34
|
+
<div class="row" v-show="showButtons">
|
|
35
|
+
<div class="col-12" v-show="showButtons">
|
|
36
|
+
<slot name="content-buttons"></slot>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
<br v-show="showButtons || showSearch" />
|
|
40
|
+
<div v-show="showButtons || showSearch">
|
|
41
|
+
<div>
|
|
42
|
+
<div v-show="showSearch">
|
|
43
|
+
<Search />
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
</div>
|
|
47
|
+
<br v-show="showSearch" />
|
|
48
|
+
<div>
|
|
49
|
+
<slot name="content-main"></slot>
|
|
50
|
+
</div>
|
|
51
|
+
</div>
|
|
52
|
+
</div>
|
|
53
|
+
<br /><br /><br />
|
|
54
|
+
</div>
|
|
55
|
+
</template>
|
|
56
|
+
|
|
57
|
+
<script>
|
|
58
|
+
import Toast from "../shared/Toast.vue";
|
|
59
|
+
import Messages from "../shared/Messages.vue";
|
|
60
|
+
import Search from "../shared/Search.vue";
|
|
61
|
+
import Loading from "../shared/Loading.vue";
|
|
62
|
+
import VerticalFilter from "../shared/VerticalFilter";
|
|
63
|
+
import Molded from "@nixweb/nixloc-ui/src/component/layout/Molded";
|
|
64
|
+
|
|
65
|
+
import { mapState, mapGetters, mapMutations } from "vuex";
|
|
66
|
+
|
|
67
|
+
export default {
|
|
68
|
+
name: "Panel",
|
|
69
|
+
components: {
|
|
70
|
+
Loading,
|
|
71
|
+
VerticalFilter,
|
|
72
|
+
Search,
|
|
73
|
+
Messages,
|
|
74
|
+
Toast,
|
|
75
|
+
Molded,
|
|
76
|
+
},
|
|
77
|
+
props: {
|
|
78
|
+
module: String,
|
|
79
|
+
title: String,
|
|
80
|
+
showVerticalFilter: Boolean,
|
|
81
|
+
showSearch: Boolean,
|
|
82
|
+
showButtons: Boolean,
|
|
83
|
+
layout: {
|
|
84
|
+
type: String,
|
|
85
|
+
default: "small"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
data() {
|
|
89
|
+
return {
|
|
90
|
+
currentRoute: this.$route.name,
|
|
91
|
+
};
|
|
92
|
+
},
|
|
93
|
+
created() {
|
|
94
|
+
this.addLoading("panel");
|
|
95
|
+
},
|
|
96
|
+
updated() {
|
|
97
|
+
this.currentRoute = this.$route.name;
|
|
98
|
+
},
|
|
99
|
+
computed: {
|
|
100
|
+
...mapGetters("generic", ["isLoading", "event"]),
|
|
101
|
+
...mapState("generic", ["modal", "vodal", "menuCollapsed"]),
|
|
102
|
+
},
|
|
103
|
+
methods: {
|
|
104
|
+
...mapMutations("generic", ["addLoading"]),
|
|
105
|
+
back() {
|
|
106
|
+
window.history.back();
|
|
107
|
+
},
|
|
108
|
+
},
|
|
109
|
+
};
|
|
110
|
+
</script>
|
|
111
|
+
<style scoped>
|
|
112
|
+
.local-container {
|
|
113
|
+
margin: auto;
|
|
114
|
+
padding-left: 100px;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.div-title {
|
|
118
|
+
margin-top: 15px;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.module {
|
|
122
|
+
font-size: 17px;
|
|
123
|
+
font-weight: 400;
|
|
124
|
+
color: #aaaebb;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.title {
|
|
128
|
+
font-size: 20px;
|
|
129
|
+
font-weight: 500;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.icon-panel {
|
|
133
|
+
opacity: 0.8;
|
|
134
|
+
font-size: 20px;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.c-back {
|
|
138
|
+
margin-top: 20px;
|
|
139
|
+
margin-right: 12px;
|
|
140
|
+
font-size: 16px;
|
|
141
|
+
cursor: pointer;
|
|
142
|
+
color: #8ca1b7;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.c-back:hover {
|
|
146
|
+
color: #8ca1b7;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.panel {
|
|
150
|
+
padding-right: 30px;
|
|
151
|
+
margin-left: 130px;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.panel.collapsed {
|
|
155
|
+
margin-left: 10px;
|
|
156
|
+
transition: all 0.3s ease;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.div-back {
|
|
160
|
+
margin-top: 18px;
|
|
161
|
+
font-size: 16px;
|
|
162
|
+
cursor: pointer;
|
|
163
|
+
padding-top: 3px;
|
|
164
|
+
padding-left: 10px;
|
|
165
|
+
padding-right: 30px;
|
|
166
|
+
font-weight: 400;
|
|
167
|
+
color: #242424;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.div-back:hover {
|
|
171
|
+
color: #505050;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.div-message-panel {
|
|
175
|
+
width: calc(100% - 60px);
|
|
176
|
+
position: fixed;
|
|
177
|
+
top: -55px;
|
|
178
|
+
left: 30px;
|
|
179
|
+
right: 30px;
|
|
180
|
+
margin: 0;
|
|
181
|
+
z-index: 2000 !important;
|
|
182
|
+
transition: top 0.5s ease;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
</style>
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<div class="center">
|
|
4
|
+
<span class="qs">? <span class="popover above">Hey bro, cool popover!</span></span>
|
|
5
|
+
</div>
|
|
6
|
+
</div>
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
<script>
|
|
10
|
+
export default {
|
|
11
|
+
name: "Popover",
|
|
12
|
+
props: {
|
|
13
|
+
nome: String,
|
|
14
|
+
width: Number,
|
|
15
|
+
},
|
|
16
|
+
};
|
|
17
|
+
</script>
|
|
18
|
+
<style lang="scss" scoped>
|
|
19
|
+
.center {
|
|
20
|
+
margin: 100px auto;
|
|
21
|
+
width: 30px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/* The element to hover over */
|
|
25
|
+
.qs {
|
|
26
|
+
background-color: #02bdda;
|
|
27
|
+
border-radius: 16px;
|
|
28
|
+
color: #e3fbff;
|
|
29
|
+
cursor: default;
|
|
30
|
+
display: inline-block;
|
|
31
|
+
font-family: "Helvetica", sans-serif;
|
|
32
|
+
font-size: 18px;
|
|
33
|
+
font-weight: bold;
|
|
34
|
+
height: 30px;
|
|
35
|
+
line-height: 30px;
|
|
36
|
+
position: relative;
|
|
37
|
+
text-align: center;
|
|
38
|
+
width: 30px;
|
|
39
|
+
|
|
40
|
+
.popover {
|
|
41
|
+
background-color: rgba(0, 0, 0, 0.85);
|
|
42
|
+
border-radius: 5px;
|
|
43
|
+
bottom: 42px;
|
|
44
|
+
box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
|
|
45
|
+
color: #fff;
|
|
46
|
+
display: none;
|
|
47
|
+
font-size: 12px;
|
|
48
|
+
font-family: "Helvetica", sans-serif;
|
|
49
|
+
left: -95px;
|
|
50
|
+
padding: 7px 10px;
|
|
51
|
+
position: absolute;
|
|
52
|
+
width: 200px;
|
|
53
|
+
z-index: 4;
|
|
54
|
+
|
|
55
|
+
&:before {
|
|
56
|
+
border-top: 7px solid rgba(0, 0, 0, 0.85);
|
|
57
|
+
border-right: 7px solid transparent;
|
|
58
|
+
border-left: 7px solid transparent;
|
|
59
|
+
bottom: -7px;
|
|
60
|
+
content: "";
|
|
61
|
+
display: block;
|
|
62
|
+
left: 50%;
|
|
63
|
+
margin-left: -7px;
|
|
64
|
+
position: absolute;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
&:hover {
|
|
69
|
+
.popover {
|
|
70
|
+
display: block;
|
|
71
|
+
-webkit-animation: fade-in 0.3s linear 1, move-up 0.3s linear 1;
|
|
72
|
+
-moz-animation: fade-in 0.3s linear 1, move-up 0.3s linear 1;
|
|
73
|
+
-ms-animation: fade-in 0.3s linear 1, move-up 0.3s linear 1;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
@-webkit-keyframes fade-in {
|
|
79
|
+
from {
|
|
80
|
+
opacity: 0;
|
|
81
|
+
}
|
|
82
|
+
to {
|
|
83
|
+
opacity: 1;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
@-moz-keyframes fade-in {
|
|
87
|
+
from {
|
|
88
|
+
opacity: 0;
|
|
89
|
+
}
|
|
90
|
+
to {
|
|
91
|
+
opacity: 1;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
@-ms-keyframes fade-in {
|
|
95
|
+
from {
|
|
96
|
+
opacity: 0;
|
|
97
|
+
}
|
|
98
|
+
to {
|
|
99
|
+
opacity: 1;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
@-webkit-keyframes move-up {
|
|
103
|
+
from {
|
|
104
|
+
bottom: 30px;
|
|
105
|
+
}
|
|
106
|
+
to {
|
|
107
|
+
bottom: 42px;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
@-moz-keyframes move-up {
|
|
111
|
+
from {
|
|
112
|
+
bottom: 30px;
|
|
113
|
+
}
|
|
114
|
+
to {
|
|
115
|
+
bottom: 42px;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
@-ms-keyframes move-up {
|
|
119
|
+
from {
|
|
120
|
+
bottom: 30px;
|
|
121
|
+
}
|
|
122
|
+
to {
|
|
123
|
+
bottom: 42px;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
</style>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div :id="id" class="scrollbar" :style="'max-height:' + maxHeight + 'px' + ';' + 'min-height:' + minHeight + 'px'
|
|
3
|
+
">
|
|
4
|
+
<div id="scroll-bar">
|
|
5
|
+
<slot></slot>
|
|
6
|
+
</div>
|
|
7
|
+
</div>
|
|
8
|
+
</template>
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
import { mapMutations } from "vuex";
|
|
12
|
+
|
|
13
|
+
export default {
|
|
14
|
+
name: "ScrollBar",
|
|
15
|
+
props: {
|
|
16
|
+
id: String,
|
|
17
|
+
maxHeight: Number,
|
|
18
|
+
minHeight: Number,
|
|
19
|
+
endScrollBar: Function,
|
|
20
|
+
},
|
|
21
|
+
mounted() {
|
|
22
|
+
const listElm = document.querySelector("#" + this.id);
|
|
23
|
+
if (listElm != null)
|
|
24
|
+
listElm.addEventListener("scroll", (e) => {
|
|
25
|
+
if (listElm.scrollTop + listElm.clientHeight >= listElm.scrollHeight) {
|
|
26
|
+
if (this.endScrollBar) this.endScrollBar();
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
},
|
|
30
|
+
methods: {
|
|
31
|
+
...mapMutations("generic", ["addEvent"]),
|
|
32
|
+
},
|
|
33
|
+
};
|
|
34
|
+
</script>
|
|
35
|
+
|
|
36
|
+
<style scoped>
|
|
37
|
+
.scrollbar {
|
|
38
|
+
overflow-y: visible;
|
|
39
|
+
overflow-x: hidden;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.scrollbar::-webkit-scrollbar-track {
|
|
43
|
+
background-color: white;
|
|
44
|
+
border-radius: 20px;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.scrollbar::-webkit-scrollbar {
|
|
48
|
+
width: 6px;
|
|
49
|
+
background-color: #B9BABB;
|
|
50
|
+
border-radius: 20px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.scrollbar::-webkit-scrollbar-thumb {
|
|
54
|
+
background-color: #B9BABB;
|
|
55
|
+
border-radius: 20px;
|
|
56
|
+
}
|
|
57
|
+
</style>
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<b-tabs v-model="tabIndex" id="custom-tab">
|
|
4
|
+
<template #tabs-start v-if="tabs.length > 8">
|
|
5
|
+
<div class="arrow-left">
|
|
6
|
+
<span class="icon">
|
|
7
|
+
<i class="fa-solid fa-circle-chevron-left" @click="back()"></i>
|
|
8
|
+
</span>
|
|
9
|
+
</div>
|
|
10
|
+
</template>
|
|
11
|
+
<b-tab v-for="i in tabs" :key="'dyn-tab-' + i" :title="title(i).title">
|
|
12
|
+
<slot :name="i"></slot>
|
|
13
|
+
</b-tab>
|
|
14
|
+
<template #tabs-end v-if="tabs.length > 8">
|
|
15
|
+
<div class="arrow-right">
|
|
16
|
+
<span class="icon">
|
|
17
|
+
<i class="fa-solid fa-circle-chevron-right" @click="prev()"></i>
|
|
18
|
+
</span>
|
|
19
|
+
</div>
|
|
20
|
+
</template>
|
|
21
|
+
</b-tabs>
|
|
22
|
+
</div>
|
|
23
|
+
</template>
|
|
24
|
+
|
|
25
|
+
<script>
|
|
26
|
+
export default {
|
|
27
|
+
props: {
|
|
28
|
+
initialTabs: Array,
|
|
29
|
+
value: Number,
|
|
30
|
+
},
|
|
31
|
+
data() {
|
|
32
|
+
return {
|
|
33
|
+
tabIndex: 0,
|
|
34
|
+
};
|
|
35
|
+
},
|
|
36
|
+
created() {
|
|
37
|
+
this.tabIndex = this.value;
|
|
38
|
+
},
|
|
39
|
+
computed: {
|
|
40
|
+
tabs() {
|
|
41
|
+
let tabs = [];
|
|
42
|
+
this.initialTabs.forEach((item) => {
|
|
43
|
+
tabs.push(item.index);
|
|
44
|
+
});
|
|
45
|
+
return tabs;
|
|
46
|
+
},
|
|
47
|
+
},
|
|
48
|
+
mounted() {
|
|
49
|
+
var container = document.getElementById("custom-tab__BV_tab_controls_");
|
|
50
|
+
container.classList.remove("nav");
|
|
51
|
+
if (this.tabs.length > 8) container.classList.add("nav-custom");
|
|
52
|
+
if (this.tabs.length <= 8) container.classList.add("nav-default");
|
|
53
|
+
},
|
|
54
|
+
methods: {
|
|
55
|
+
title(index) {
|
|
56
|
+
var ret = this.initialTabs.find((x) => x.index == index);
|
|
57
|
+
return ret;
|
|
58
|
+
},
|
|
59
|
+
prev() {
|
|
60
|
+
var container = document.getElementById("custom-tab__BV_tab_controls_");
|
|
61
|
+
this.sideScroll(container, "right", 25, 100, 10);
|
|
62
|
+
},
|
|
63
|
+
back() {
|
|
64
|
+
var container = document.getElementById("custom-tab__BV_tab_controls_");
|
|
65
|
+
this.sideScroll(container, "left", 25, 100, 10);
|
|
66
|
+
},
|
|
67
|
+
sideScroll(element, direction, speed, distance, step) {
|
|
68
|
+
let scrollAmount = 0;
|
|
69
|
+
var slideTimer = setInterval(function () {
|
|
70
|
+
if (direction == "left") {
|
|
71
|
+
element.scrollLeft -= step;
|
|
72
|
+
} else {
|
|
73
|
+
element.scrollLeft += step;
|
|
74
|
+
}
|
|
75
|
+
scrollAmount += step;
|
|
76
|
+
if (scrollAmount >= distance) {
|
|
77
|
+
window.clearInterval(slideTimer);
|
|
78
|
+
}
|
|
79
|
+
}, speed);
|
|
80
|
+
},
|
|
81
|
+
},
|
|
82
|
+
watch: {
|
|
83
|
+
tabIndex(tabIndex) {
|
|
84
|
+
this.$emit("input", tabIndex);
|
|
85
|
+
},
|
|
86
|
+
},
|
|
87
|
+
};
|
|
88
|
+
</script>
|
|
89
|
+
<style>
|
|
90
|
+
.arrow-left {
|
|
91
|
+
position: absolute;
|
|
92
|
+
margin-top: 40px;
|
|
93
|
+
left: 50%;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.arrow-right {
|
|
97
|
+
position: absolute;
|
|
98
|
+
margin-top: 40px;
|
|
99
|
+
left: 53%;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.nav-default {
|
|
103
|
+
display: flex;
|
|
104
|
+
flex-wrap: wrap;
|
|
105
|
+
padding-left: 0;
|
|
106
|
+
margin-bottom: 0;
|
|
107
|
+
list-style: none;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.nav-custom {
|
|
111
|
+
display: flex;
|
|
112
|
+
flex-wrap: nowrap !important;
|
|
113
|
+
padding-left: 0;
|
|
114
|
+
margin-bottom: 0;
|
|
115
|
+
list-style: none;
|
|
116
|
+
overflow: auto;
|
|
117
|
+
overflow-y: hidden;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.nav-custom::-webkit-scrollbar {
|
|
121
|
+
width: 10px;
|
|
122
|
+
height: 0px;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.icon {
|
|
126
|
+
color: #c1c1c7;
|
|
127
|
+
font-size: 24px;
|
|
128
|
+
padding-left: 10px;
|
|
129
|
+
cursor: pointer;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.icon:hover {
|
|
133
|
+
color: #577696;
|
|
134
|
+
}
|
|
135
|
+
</style>
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="div-tag">
|
|
3
|
+
<div class="tag" :class="{ 'tag-disabled': disabled }">
|
|
4
|
+
<span class="title-tag" @click="execute()">{{ title }} <span v-if="value">:</span> {{ value }}</span>
|
|
5
|
+
<i v-if="showButtonClose && !disabled" @click="remove()" class="icon-tag fas fa-times-circle"></i>
|
|
6
|
+
</div>
|
|
7
|
+
</div>
|
|
8
|
+
</template>
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
import { mapMutations } from "vuex";
|
|
12
|
+
|
|
13
|
+
export default {
|
|
14
|
+
name: "Tag",
|
|
15
|
+
props: {
|
|
16
|
+
_key: String,
|
|
17
|
+
title: String,
|
|
18
|
+
disabled: Boolean,
|
|
19
|
+
value: String,
|
|
20
|
+
eventName: String,
|
|
21
|
+
eventData: Object,
|
|
22
|
+
clickedRemove: Function,
|
|
23
|
+
clickedBody: Function,
|
|
24
|
+
params: Object,
|
|
25
|
+
showButtonClose: {
|
|
26
|
+
type: Boolean,
|
|
27
|
+
default: true
|
|
28
|
+
},
|
|
29
|
+
tagRemoved: {
|
|
30
|
+
type: Boolean,
|
|
31
|
+
default: true
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
methods: {
|
|
35
|
+
...mapMutations("generic", ["addEvent"]),
|
|
36
|
+
execute() {
|
|
37
|
+
if (this.clickedBody) this.clickedBody(this.params);
|
|
38
|
+
|
|
39
|
+
if (this.eventName)
|
|
40
|
+
this.addEvent({
|
|
41
|
+
nome: this.eventName,
|
|
42
|
+
data: this.eventData,
|
|
43
|
+
});
|
|
44
|
+
},
|
|
45
|
+
remove() {
|
|
46
|
+
if (this.clickedRemove) this.clickedRemove(this.params);
|
|
47
|
+
|
|
48
|
+
if (this.tagRemoved) {
|
|
49
|
+
this.addEvent({
|
|
50
|
+
name: "tagRemoved",
|
|
51
|
+
data: this.eventData ? this.eventData : this._key,
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
},
|
|
56
|
+
};
|
|
57
|
+
</script>
|
|
58
|
+
|
|
59
|
+
<style scoped>
|
|
60
|
+
.tag {
|
|
61
|
+
align-items: center;
|
|
62
|
+
background: #e0e0e0;
|
|
63
|
+
border-radius: 32px;
|
|
64
|
+
box-sizing: border-box;
|
|
65
|
+
display: flex;
|
|
66
|
+
font-size: 13px;
|
|
67
|
+
height: 32px;
|
|
68
|
+
margin: 4px -9px 4px 0;
|
|
69
|
+
outline: none;
|
|
70
|
+
padding: 0 6px 0 16px;
|
|
71
|
+
position: relative;
|
|
72
|
+
white-space: nowrap;
|
|
73
|
+
cursor: pointer;
|
|
74
|
+
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.title-tag {
|
|
78
|
+
max-width: 400px;
|
|
79
|
+
white-space: nowrap;
|
|
80
|
+
overflow: hidden;
|
|
81
|
+
text-overflow: ellipsis;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.div-tag {
|
|
85
|
+
margin-right: 10px;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.icon-tag {
|
|
89
|
+
color: #9e9e9e;
|
|
90
|
+
padding-left: 5px;
|
|
91
|
+
font-size: 20px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.tag-disabled {
|
|
95
|
+
opacity: 0.5;
|
|
96
|
+
}
|
|
97
|
+
</style>
|