@5minds/node-red-dashboard-2-processcube-dynamic-table 2.0.1-develop-ac58f3-mccdrc9q → 2.0.1-develop-e72ba6-mcxjmj9u
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/nodes/dynamic-table.html +312 -272
- package/package.json +76 -76
- package/resources/ui-dynamic-table.umd.js +12 -12
- package/ui/components/TitleText.vue +35 -0
- package/ui/components/UIDynamicTable.vue +46 -22
- package/ui/stylesheets/ui-dynamic-table.css +134 -38
|
@@ -1,36 +1,51 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
{{ action.label }}
|
|
2
|
+
<div class="ui-dynamic-table-container">
|
|
3
|
+
<UIDynamicTableTitleText v-if="props.title_text && props.title_text.length > 0" :title="props.title_text"
|
|
4
|
+
:style="props.title_style || 'default'" :customStyles="props.title_custom_text_styling || ''"
|
|
5
|
+
:titleIcon="props.title_icon || ''" />
|
|
6
|
+
<v-data-table :headers="headers" :items="tasks" :search="search" :sort-by="sortBy"
|
|
7
|
+
:items-per-page="itemsPerPage" :items-per-page-options="itemsPerPageOptions" @update:sort-by="updateSortBy"
|
|
8
|
+
@update:items-per-page="updateItemsPerPage" class="full-width-table">
|
|
9
|
+
<template v-slot:top>
|
|
10
|
+
<v-toolbar flat class="pb-4 pt-8">
|
|
11
|
+
<v-text-field class="mx-3 search-input" v-model="search" label="Suchen"
|
|
12
|
+
prepend-inner-icon="mdi-magnify" variant="outlined" hide-details single-line></v-text-field>
|
|
13
|
+
<v-btn class="reload-button ml-2 mr-8" @click="reloadData" :disabled="isReloading" size="small"
|
|
14
|
+
variant="outlined">
|
|
15
|
+
<v-icon left :class="{ 'reload-spin': isReloading }">mdi-refresh</v-icon>
|
|
16
|
+
Neu Laden
|
|
18
17
|
</v-btn>
|
|
18
|
+
</v-toolbar>
|
|
19
|
+
</template>
|
|
20
|
+
<template v-slot:item.actions="{ item }">
|
|
21
|
+
<v-container class="action-button-container">
|
|
22
|
+
<v-container v-for="(action, index) in actions"
|
|
23
|
+
style="padding: 0px; display: inline; width: fit-content; margin: 0px">
|
|
24
|
+
<v-btn style="margin: 0px 2px" class="action-button"
|
|
25
|
+
v-if="conditionCheck(action.condition, item)" :key="index" size="small"
|
|
26
|
+
@click="actionFn(action, item)">
|
|
27
|
+
{{ action.label }}
|
|
28
|
+
</v-btn>
|
|
29
|
+
</v-container>
|
|
19
30
|
</v-container>
|
|
20
|
-
</
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
</
|
|
25
|
-
</
|
|
31
|
+
</template>
|
|
32
|
+
<template v-slot:no-data>
|
|
33
|
+
<v-alert text="No Data" style="margin: 12px"></v-alert>
|
|
34
|
+
</template>
|
|
35
|
+
</v-data-table>
|
|
36
|
+
</div>
|
|
26
37
|
</template>
|
|
27
38
|
|
|
28
39
|
<script>
|
|
29
40
|
import { mapState } from 'vuex';
|
|
41
|
+
import UIDynamicTableTitleText from './TitleText.vue'
|
|
30
42
|
import { debounce } from 'lodash';
|
|
31
43
|
|
|
32
44
|
export default {
|
|
33
45
|
name: 'UIDynamicTable',
|
|
46
|
+
components: {
|
|
47
|
+
UIDynamicTableTitleText
|
|
48
|
+
},
|
|
34
49
|
inject: ['$socket'],
|
|
35
50
|
props: {
|
|
36
51
|
id: { type: String, required: true },
|
|
@@ -58,6 +73,7 @@ export default {
|
|
|
58
73
|
actions: [],
|
|
59
74
|
tasks: [],
|
|
60
75
|
headers: [],
|
|
76
|
+
isReloading: false,
|
|
61
77
|
isInitialized: false,
|
|
62
78
|
sortBy: [],
|
|
63
79
|
itemsPerPage: 10,
|
|
@@ -141,6 +157,14 @@ export default {
|
|
|
141
157
|
return false;
|
|
142
158
|
}
|
|
143
159
|
},
|
|
160
|
+
reloadData() {
|
|
161
|
+
this.isReloading = true;
|
|
162
|
+
this.$socket.emit('widget-load', this.id);
|
|
163
|
+
|
|
164
|
+
setTimeout(() => {
|
|
165
|
+
this.isReloading = false;
|
|
166
|
+
}, 1000);
|
|
167
|
+
},
|
|
144
168
|
updateSearchParam: debounce(function (searchValue) {
|
|
145
169
|
const currentQuery = { ...this.$route.query };
|
|
146
170
|
|
|
@@ -1,96 +1,126 @@
|
|
|
1
1
|
h1 {
|
|
2
|
-
|
|
2
|
+
margin-bottom: 10px;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
h2 {
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
margin-top: 1.5rem;
|
|
7
|
+
margin-bottom: 0.75rem;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
h3 {
|
|
11
|
-
|
|
11
|
+
margin-top: 1rem;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
p {
|
|
15
|
-
|
|
15
|
+
margin-bottom: 5px;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
ul li {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
19
|
+
list-style-type: circle;
|
|
20
|
+
list-style-position: inside;
|
|
21
|
+
margin-left: 15px;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
pre {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
padding: 12px;
|
|
26
|
+
margin: 12px;
|
|
27
|
+
background-color: #eee;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
code {
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
font-size: 0.825rem;
|
|
32
|
+
color: #ae0000;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
input {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
36
|
+
padding: 12px;
|
|
37
|
+
margin: 12px;
|
|
38
|
+
background-color: #eee;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
.task-div {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
42
|
+
padding: 8px;
|
|
43
|
+
margin: 16px;
|
|
44
|
+
border: solid;
|
|
45
|
+
border-radius: 4px;
|
|
46
|
+
border-color: #303030;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
.action-button-container {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
50
|
+
width: 100%;
|
|
51
|
+
display: flex;
|
|
52
|
+
justify-content: center;
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
.full-width-table {
|
|
56
56
|
--v-table-header-height: 40px !important;
|
|
57
|
+
background-color: #fff;
|
|
58
|
+
border-radius: 0px 0px 8px 8px;
|
|
57
59
|
}
|
|
58
60
|
|
|
59
61
|
.full-width-table .v-toolbar {
|
|
60
|
-
|
|
61
|
-
|
|
62
|
+
background: unset !important;
|
|
63
|
+
color: unset !important;
|
|
62
64
|
}
|
|
63
65
|
|
|
64
66
|
.full-width-table .v-table__wrapper .v-alert--variant-flat {
|
|
65
|
-
|
|
66
|
-
|
|
67
|
+
background: unset !important;
|
|
68
|
+
color: unset !important;
|
|
67
69
|
}
|
|
68
70
|
|
|
69
|
-
.full-width-table
|
|
71
|
+
.full-width-table :deep(thead th) {
|
|
70
72
|
border-bottom: 4px solid rgb(var(--v-theme-primary)) !important;
|
|
71
73
|
font-weight: 700 !important;
|
|
72
74
|
font-size: 16px !important;
|
|
73
75
|
}
|
|
74
76
|
|
|
75
|
-
.full-width-table
|
|
76
|
-
background-color:
|
|
77
|
+
.full-width-table :deep(tbody) {
|
|
78
|
+
background-color: unset !important;
|
|
77
79
|
--widget-row-height: 40px !important;
|
|
78
80
|
font-size: 16px;
|
|
79
81
|
}
|
|
80
82
|
|
|
81
|
-
.search-input
|
|
82
|
-
border
|
|
83
|
-
|
|
84
|
-
|
|
83
|
+
.search-input :deep(.v-field__outline__end) {
|
|
84
|
+
border: none !important;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.search-input :deep(.v-field__outline__start) {
|
|
88
|
+
border: none !important;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.search-input :deep(.v-field__outline) {
|
|
92
|
+
display: none !important;
|
|
85
93
|
}
|
|
86
94
|
|
|
87
|
-
.search-input
|
|
95
|
+
.search-input :deep(.v-label) {
|
|
88
96
|
font-size: 14px !important;
|
|
89
97
|
}
|
|
90
98
|
|
|
91
|
-
.search-input
|
|
99
|
+
.search-input :deep(.v-field) {
|
|
92
100
|
border-radius: 0px 0px 0px 8px;
|
|
93
|
-
border-
|
|
101
|
+
border-bottom: 2px solid rgb(var(--v-theme-primary)) !important;
|
|
102
|
+
border-left: 2px solid rgb(var(--v-theme-primary)) !important;
|
|
103
|
+
border-right: none !important;
|
|
104
|
+
border-top: none !important;
|
|
105
|
+
transition: border-width 0.1s ease-in-out;
|
|
106
|
+
margin-bottom: 8px;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.search-input :deep(.v-field__input) {
|
|
110
|
+
font-size: 18px;
|
|
111
|
+
font-weight: 400;
|
|
112
|
+
font-style: normal;
|
|
113
|
+
padding: 4px 8px;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.search-input:focus-within :deep(.v-field) {
|
|
117
|
+
border-bottom: 4px solid rgb(var(--v-theme-primary)) !important;
|
|
118
|
+
border-left: 4px solid rgb(var(--v-theme-primary)) !important;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.search-input:focus-within :deep(.v-field__input) {
|
|
122
|
+
background-color: #f6f5fa;
|
|
123
|
+
border-radius: 0 8px 0px 5px;
|
|
94
124
|
}
|
|
95
125
|
|
|
96
126
|
.action-button {
|
|
@@ -101,3 +131,69 @@ input {
|
|
|
101
131
|
color: rgb(var(--v-theme-primary));
|
|
102
132
|
padding: 8px;
|
|
103
133
|
}
|
|
134
|
+
|
|
135
|
+
.ui-dynamic-table-container {
|
|
136
|
+
border-radius: 8px;
|
|
137
|
+
border-bottom: 4px solid rgb(var(--v-theme-primary));
|
|
138
|
+
box-shadow: 0 4px 16px -3px rgba(0, 0, 0, 0.5);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.ui-dynamic-table-title-default {
|
|
142
|
+
background: linear-gradient(131deg, #18181a 26.76%, #242326 100.16%);
|
|
143
|
+
padding: 32px;
|
|
144
|
+
color: #ffffff;
|
|
145
|
+
font-size: 36px;
|
|
146
|
+
font-weight: 700;
|
|
147
|
+
border-radius: 8px 8px 0px 0px;
|
|
148
|
+
margin-top: 0px;
|
|
149
|
+
border: 2px solid #f6f5fa;
|
|
150
|
+
border-bottom: none;
|
|
151
|
+
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.ui-dynamic-table-title-default hr {
|
|
155
|
+
border: 4px solid rgb(var(--v-theme-primary));
|
|
156
|
+
border-radius: 2px;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.ui-dynamic-table-title-minimal {
|
|
160
|
+
padding: 16px;
|
|
161
|
+
margin-top: 0px;
|
|
162
|
+
border: 2px solid #f6f5fa;
|
|
163
|
+
border-bottom: none;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.ui-dynamic-table-title-outside {
|
|
167
|
+
padding-bottom: 24px;
|
|
168
|
+
padding-top: 24px;
|
|
169
|
+
font-size: 24px;
|
|
170
|
+
font-weight: 700;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.reload-button {
|
|
174
|
+
border-radius: 8px !important;
|
|
175
|
+
background-color: transparent !important;
|
|
176
|
+
border-color: rgb(var(--v-theme-primary)) !important;
|
|
177
|
+
border: 2px solid !important;
|
|
178
|
+
color: rgb(var(--v-theme-primary)) !important;
|
|
179
|
+
padding: 8px !important;
|
|
180
|
+
min-height: 36px !important;
|
|
181
|
+
font-weight: 500 !important;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.reload-button:hover {
|
|
185
|
+
background-color: rgba(var(--v-theme-primary), 0.08) !important;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.reload-button:disabled {
|
|
189
|
+
opacity: 0.6 !important;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.reload-spin {
|
|
193
|
+
animation: spin 1s linear infinite;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
@keyframes spin {
|
|
197
|
+
from { transform: rotate(0deg); }
|
|
198
|
+
to { transform: rotate(360deg); }
|
|
199
|
+
}
|