comand-component-library 4.1.91 → 4.1.93
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/comand-component-library.js +7185 -6367
- package/dist/style.css +1 -1
- package/package.json +3 -4
- package/src/ComponentLibrary.vue +134 -34
- package/src/assets/data/listOfComponents.json +1 -0
- package/src/assets/data/mail-tool.json +50 -0
- package/src/assets/data/smart-search.json +28 -0
- package/src/assets/data/tabs.json +3 -3
- package/src/componentSettingsDataAndControls.vue +9 -18
- package/src/components/CmdAddressData.vue +3 -2
- package/src/components/CmdBackToTopButton.vue +0 -1
- package/src/components/CmdBasicForm.vue +2 -1
- package/src/components/CmdFlexibleScrollContainer.vue +41 -0
- package/src/components/CmdFormElement.vue +25 -23
- package/src/components/CmdImage.vue +1 -1
- package/src/components/CmdInnerLink.vue +14 -5
- package/src/components/CmdInputGroup.vue +1 -1
- package/src/components/CmdLink.vue +10 -4
- package/src/components/CmdListOfLinks.vue +4 -0
- package/src/components/CmdListOfLinksItem.vue +4 -0
- package/src/components/CmdLoginForm.vue +19 -11
- package/src/components/CmdMailTool.vue +151 -0
- package/src/components/CmdMailToolEntry.vue +230 -0
- package/src/components/CmdMailToolFilter.vue +210 -0
- package/src/components/CmdSiteHeader.vue +1 -1
- package/src/components/CmdSmartSearch.vue +135 -0
- package/src/components/CmdTabs.vue +2 -2
- package/src/mixins/CmdMailToolEntry/DefaultMessageProperties.js +12 -0
- package/src/utils/address.js +29 -0
- package/src/utils/date.js +29 -20
- package/src/utils/string.js +2 -10
@@ -1,7 +1,9 @@
|
|
1
1
|
<template>
|
2
|
-
<
|
2
|
+
<img v-if="image?.src && (image?.position === 'left' || image?.position === 'top' || !image?.position)" :src="image?.src" :alt="image?.alt" />
|
3
|
+
<span v-if="icon?.iconClass && (icon?.position === 'left' || icon?.position === 'top' || !icon?.position)" :class="icon?.iconClass" :title="icon?.tooltip"></span>
|
3
4
|
<span v-if="text">{{ text }}</span>
|
4
|
-
<span v-if="icon
|
5
|
+
<span v-if="icon?.iconClass && (icon?.position === 'right' || icon?.position === 'bottom')" :class="icon?.iconClass" :title="icon?.tooltip"></span>
|
6
|
+
<img v-if="image?.src && (image?.position === 'right' || image?.position === 'bottom' || !image?.position)" :src="imag?.src" :alt="image?.alt" />
|
5
7
|
<!-- begin default-slot -->
|
6
8
|
<slot></slot>
|
7
9
|
<!-- end default-slot -->
|
@@ -12,18 +14,25 @@ export default {
|
|
12
14
|
name: "CmdInnerLink",
|
13
15
|
props: {
|
14
16
|
/**
|
15
|
-
* icon
|
17
|
+
* displayed icon
|
16
18
|
*/
|
17
19
|
icon: {
|
18
20
|
type: Object,
|
19
|
-
|
21
|
+
required: false
|
20
22
|
},
|
21
23
|
/**
|
22
24
|
* displayed text
|
23
25
|
*/
|
24
26
|
text: {
|
25
27
|
type: String,
|
26
|
-
|
28
|
+
required: false
|
29
|
+
},
|
30
|
+
/**
|
31
|
+
* displayed image
|
32
|
+
*/
|
33
|
+
image: {
|
34
|
+
type: Object,
|
35
|
+
required: false
|
27
36
|
}
|
28
37
|
}
|
29
38
|
}
|
@@ -322,7 +322,7 @@ export default {
|
|
322
322
|
/* overwrite default behavior from frontend-framework */
|
323
323
|
> .label-text {
|
324
324
|
display: inline-flex;
|
325
|
-
margin
|
325
|
+
margin: 0;
|
326
326
|
|
327
327
|
> span + a:has([class*="icon-"]) {
|
328
328
|
margin-left: calc(var(--default-margin) / 2);
|
@@ -1,20 +1,26 @@
|
|
1
1
|
<template>
|
2
2
|
<!-- begin CmdLink -->
|
3
3
|
<!-- begin href -->
|
4
|
-
<a v-if="linkType === 'href'"
|
4
|
+
<a v-if="linkType === 'href'"
|
5
|
+
:href="path"
|
6
|
+
:target="target"
|
7
|
+
:class="['cmd-link', {'button': styleAsButton, 'primary': primaryButton, 'box': styleAsBox, 'fancybox': fancybox}]"
|
8
|
+
@click.prevent="emitClick($event, 'href')"
|
9
|
+
:title="icon?.tooltip"
|
10
|
+
>
|
5
11
|
<CmdInnerLink :text="text" :icon="icon">
|
6
12
|
<slot></slot>
|
7
13
|
</CmdInnerLink>
|
8
14
|
</a>
|
9
15
|
<!-- end href -->
|
10
16
|
|
11
|
-
<!-- begin router -->
|
17
|
+
<!-- begin router-link -->
|
12
18
|
<router-link v-else-if="linkType === 'router'" :to="path" :class="['cmd-link', {'button': styleAsButton, 'primary': primaryButton, 'box': styleAsBox, 'fancybox': fancybox}]" @click="emitClick($event, 'router')" :title="icon?.tooltip">
|
13
19
|
<CmdInnerLink :text="text" :icon="icon">
|
14
20
|
<slot></slot>
|
15
21
|
</CmdInnerLink>
|
16
22
|
</router-link>
|
17
|
-
<!-- end router -->
|
23
|
+
<!-- end router-link -->
|
18
24
|
|
19
25
|
<!-- begin button -->
|
20
26
|
<button v-else-if="linkType === 'button'" :class="['cmd-link button', {'primary': primaryButton, 'box': styleAsBox, 'fancybox': fancybox}]" type="submit" @click="emitClick($event, 'button')" :title="icon?.tooltip">
|
@@ -112,7 +118,7 @@ export default {
|
|
112
118
|
},
|
113
119
|
methods: {
|
114
120
|
emitClick(event, linkType) {
|
115
|
-
this.$emit(
|
121
|
+
this.$emit("click", {originalEvent: event, linkType: linkType})
|
116
122
|
}
|
117
123
|
}
|
118
124
|
}
|
@@ -23,6 +23,7 @@
|
|
23
23
|
:key="index"
|
24
24
|
:class="{'active': sectionAnchors && activeSection === index}"
|
25
25
|
:link="link"
|
26
|
+
@click="emitClick($event, linkType)"
|
26
27
|
/>
|
27
28
|
<!-- end CmdListOfLinksItem-->
|
28
29
|
|
@@ -199,6 +200,9 @@ export default {
|
|
199
200
|
}
|
200
201
|
}
|
201
202
|
})
|
203
|
+
},
|
204
|
+
emitClick(event, linkType) {
|
205
|
+
this.$emit("click", {originalEvent: event, linkType: linkType})
|
202
206
|
}
|
203
207
|
}
|
204
208
|
}
|
@@ -14,6 +14,7 @@
|
|
14
14
|
:styleAsButton="link?.styleAsButton"
|
15
15
|
:primaryButton="link?.primaryButton"
|
16
16
|
:styleAsBox="link?.styleAsBox"
|
17
|
+
@click="emitClick($event, linkType)"
|
17
18
|
/>
|
18
19
|
<!-- end CmdLink -->
|
19
20
|
|
@@ -78,6 +79,9 @@ export default {
|
|
78
79
|
props.text = text
|
79
80
|
}
|
80
81
|
})
|
82
|
+
},
|
83
|
+
emitClick(event, linkType) {
|
84
|
+
this.$emit("click", {originalEvent: event, linkType: linkType})
|
81
85
|
}
|
82
86
|
}
|
83
87
|
}
|
@@ -73,21 +73,22 @@
|
|
73
73
|
|
74
74
|
<!-- begin link-type 'button' -->
|
75
75
|
<button
|
76
|
-
v-if="
|
77
|
-
:type="
|
78
|
-
|
76
|
+
v-if="buttonLoginDefaultOptions.linkType === 'button'"
|
77
|
+
:type="buttonLoginDefaultOptions.type === 'submit' ? 'submit' : 'button'"
|
78
|
+
v-bind="buttonLoginOptions"
|
79
|
+
:class="['button', { primary: buttonLoginDefaultOptions.primary }]"
|
79
80
|
@click="onClick"
|
80
81
|
:disabled="buttonLoginDisabled"
|
81
82
|
>
|
82
83
|
<!-- begin CmdIcon -->
|
83
84
|
<CmdIcon
|
84
|
-
v-if="
|
85
|
-
:iconClass="
|
86
|
-
:type="
|
87
|
-
:title="
|
85
|
+
v-if="buttonLoginDefaultOptions.icon.iconClass"
|
86
|
+
:iconClass="buttonLoginDefaultOptions.icon.iconClass"
|
87
|
+
:type="buttonLoginDefaultOptions.icon.iconType"
|
88
|
+
:title="buttonLoginDefaultOptions.icon.tooltip"
|
88
89
|
/>
|
89
90
|
<!-- end CmdIcon -->
|
90
|
-
<span v-if="
|
91
|
+
<span v-if="buttonLoginDefaultOptions.text">{{ buttonLoginDefaultOptions.text }}</span>
|
91
92
|
</button>
|
92
93
|
<!-- begin link-type 'button' -->
|
93
94
|
</div>
|
@@ -138,6 +139,7 @@
|
|
138
139
|
<!-- begin link-type 'button' -->
|
139
140
|
<button
|
140
141
|
v-if="buttonSendLoginOptions.linkType === 'button'"
|
142
|
+
v-bind="buttonSendLoginOptions"
|
141
143
|
:type="buttonSendLoginOptions.type === 'submit' ? 'submit' : 'button'"
|
142
144
|
:class="['button', { primary: buttonSendLoginOptions.primary }]"
|
143
145
|
:disabled="buttonSendLoginDisabled"
|
@@ -222,8 +224,8 @@ export default {
|
|
222
224
|
default() {
|
223
225
|
return {
|
224
226
|
show: true,
|
225
|
-
align:
|
226
|
-
text:
|
227
|
+
align: "right",
|
228
|
+
text: "Forgot login form"
|
227
229
|
}
|
228
230
|
}
|
229
231
|
},
|
@@ -374,7 +376,7 @@ export default {
|
|
374
376
|
...this.cmdFormElementSendLogin
|
375
377
|
}
|
376
378
|
},
|
377
|
-
|
379
|
+
buttonLoginDefaultOptions() {
|
378
380
|
return {
|
379
381
|
linkType: "button", /* href, router, button */
|
380
382
|
type: "submit", /* submit, button */
|
@@ -389,6 +391,12 @@ export default {
|
|
389
391
|
...this.buttonLogin
|
390
392
|
}
|
391
393
|
},
|
394
|
+
buttonLoginOptions() {
|
395
|
+
return {
|
396
|
+
type: "submit",
|
397
|
+
...this.buttonLogin
|
398
|
+
}
|
399
|
+
},
|
392
400
|
buttonSendLoginOptions() {
|
393
401
|
return {
|
394
402
|
linkType: "button", /* href, router, button */
|
@@ -0,0 +1,151 @@
|
|
1
|
+
<template>
|
2
|
+
<CmdTabs class="cmd-mail-tool" v-bind="cmdTabs">
|
3
|
+
<!-- begin tab "inbox" -->
|
4
|
+
<template v-slot:tab-content-0>
|
5
|
+
<!-- begin CmdMailToolFilter (for inbox) -->
|
6
|
+
<CmdMailToolFilter v-bind="cmdMailToolFilterInbox" v-model="searchFilters"/>
|
7
|
+
<!-- end CmdMailToolFilter -->
|
8
|
+
|
9
|
+
<!-- begin CmdMailToolEntry -->
|
10
|
+
<CmdMailToolEntry :mails="filteredMailsInbox"/>
|
11
|
+
<!-- end CmdMailToolEntry (for inbox) -->
|
12
|
+
</template>
|
13
|
+
<!-- end tab "inbox" -->
|
14
|
+
|
15
|
+
<!-- begin tab "outbox" -->
|
16
|
+
<template v-slot:tab-content-1>
|
17
|
+
<!-- begin CmdMailToolFilter (for outbox) -->
|
18
|
+
<CmdMailToolFilter v-bind="cmdMailToolFilterOutbox" boxType="outbox"/>
|
19
|
+
<!-- end CmdMailToolFilter (for outbox) -->
|
20
|
+
|
21
|
+
<!-- begin CmdMailToolEntry -->
|
22
|
+
<CmdMailToolEntry boxType="outbox" :mails="mailsOutbox"/>
|
23
|
+
<!-- end CmdMailToolEntry -->
|
24
|
+
</template>
|
25
|
+
<!-- end tab "outbox" -->
|
26
|
+
</CmdTabs>
|
27
|
+
</template>
|
28
|
+
|
29
|
+
<script>
|
30
|
+
|
31
|
+
export default {
|
32
|
+
name: "CmdMailTool",
|
33
|
+
data() {
|
34
|
+
return {
|
35
|
+
searchFilters: {
|
36
|
+
searchFilterText: "",
|
37
|
+
searchFilterOptions: ["senders", "subjects"]
|
38
|
+
}
|
39
|
+
}
|
40
|
+
},
|
41
|
+
props: {
|
42
|
+
/**
|
43
|
+
* array of mails for inbox
|
44
|
+
*
|
45
|
+
* required-structure for entries:
|
46
|
+
* {
|
47
|
+
* cmdImage: Object (structure for CmdImage-component used for image of contact)
|
48
|
+
* contactFullName: String
|
49
|
+
* subject: String
|
50
|
+
* isoDate: String (formatted as iso-date: YYYY-MM-DD)
|
51
|
+
* time: String (formatted as time: HH:MM)
|
52
|
+
* }
|
53
|
+
*/
|
54
|
+
mailsInbox: {
|
55
|
+
type: Array,
|
56
|
+
required: true
|
57
|
+
},
|
58
|
+
/**
|
59
|
+
* array of mails for outbox
|
60
|
+
*
|
61
|
+
* required-structure for entries:
|
62
|
+
* {
|
63
|
+
* cmdImage: Object (structure for CmdImage-component used for image of contact)
|
64
|
+
* contactFullName: String
|
65
|
+
* subject: String
|
66
|
+
* isoDate: String (formatted as iso-date: YYYY-MM-DD)
|
67
|
+
* time: String (formatted as time: HH:MM)
|
68
|
+
* }
|
69
|
+
*/
|
70
|
+
mailsOutbox: {
|
71
|
+
type: Array,
|
72
|
+
required: true
|
73
|
+
},
|
74
|
+
/**
|
75
|
+
* properties for CmdTabs-component
|
76
|
+
*/
|
77
|
+
cmdTabs: {
|
78
|
+
type: Object,
|
79
|
+
default() {
|
80
|
+
return {
|
81
|
+
tabs: [
|
82
|
+
{
|
83
|
+
"text": "Inbox",
|
84
|
+
"headlineText": "Inbox",
|
85
|
+
"headlineLevel": 4,
|
86
|
+
"iconClass": "icon-inbox"
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"text": "Outbox",
|
90
|
+
"headlineText": "Outbox",
|
91
|
+
"headlineLevel": 4,
|
92
|
+
"iconClass": "icon-outbox"
|
93
|
+
}
|
94
|
+
],
|
95
|
+
useSlot: true,
|
96
|
+
stretchTabs: true,
|
97
|
+
useDefaultPadding: false
|
98
|
+
}
|
99
|
+
}
|
100
|
+
},
|
101
|
+
cmdMailToolFilterInbox: {
|
102
|
+
type: Object,
|
103
|
+
default() {
|
104
|
+
return {}
|
105
|
+
}
|
106
|
+
},
|
107
|
+
/**
|
108
|
+
* define properties for CmdHeadline-component for inbox
|
109
|
+
*/
|
110
|
+
cmdMailToolFilterOutbox: {
|
111
|
+
type: Object,
|
112
|
+
default() {
|
113
|
+
return {
|
114
|
+
headlineText: "Outbox",
|
115
|
+
headlineLevel: 4,
|
116
|
+
}
|
117
|
+
}
|
118
|
+
}
|
119
|
+
},
|
120
|
+
computed: {
|
121
|
+
filteredMailsInbox() {
|
122
|
+
if (this.searchFilters.searchFilterText === "") {
|
123
|
+
return this.mailsInbox
|
124
|
+
}
|
125
|
+
|
126
|
+
if (this.searchFilters.searchFilterOptions.length) {
|
127
|
+
return this.mailsInbox.filter((mail) => {
|
128
|
+
let s1 = false
|
129
|
+
let s2 = false
|
130
|
+
|
131
|
+
if (this.searchFilters?.searchFilterOptions?.includes("senders")) {
|
132
|
+
s1 = mail.contactFullName.toLowerCase().includes(this.searchFilters?.searchFilterText?.toLowerCase())
|
133
|
+
}
|
134
|
+
if (this.searchFilters?.searchFilterOptions?.includes("subjects")) {
|
135
|
+
s2 = mail.subject.toLowerCase().includes(this.searchFilters?.searchFilterText?.toLowerCase())
|
136
|
+
}
|
137
|
+
|
138
|
+
return s1 || s2
|
139
|
+
})
|
140
|
+
}
|
141
|
+
return []
|
142
|
+
}
|
143
|
+
}
|
144
|
+
}
|
145
|
+
</script>
|
146
|
+
|
147
|
+
<style>
|
148
|
+
.cmd-mail-tool {
|
149
|
+
|
150
|
+
}
|
151
|
+
</style>
|
@@ -0,0 +1,230 @@
|
|
1
|
+
<template>
|
2
|
+
<template v-if="mails.length"
|
3
|
+
v-for="(mail, index) in mails"
|
4
|
+
:key="index">
|
5
|
+
<div
|
6
|
+
:class="['cmd-mail-tool-entry flex-container box', { unread : !mailIsRead.has(mail.id)}]"
|
7
|
+
:title="getMessage('mail_tool_entry.tooltip.read_this_mail')"
|
8
|
+
>
|
9
|
+
<dl class="no-flex">
|
10
|
+
<dt class="flex-container align-items-center">
|
11
|
+
{{
|
12
|
+
boxType === "inbox" ? getMessage("mail_tool_entry.description_label.from") : getMessage("mail_tool_entry.description_label.to")
|
13
|
+
}}
|
14
|
+
</dt>
|
15
|
+
<dd class="sender-receiver-wrapper flex-container align-items-center no-flex">
|
16
|
+
<!-- begin CmdImage for contact image -->
|
17
|
+
<CmdImage v-if="mail.cmdImage?.src"
|
18
|
+
:src="mail.cmdImage.src"
|
19
|
+
:alt="mail.cmdImage.alt"
|
20
|
+
:title="mail.cmdImage.title || mail.contactFullName"
|
21
|
+
:useFigureTag="false"
|
22
|
+
/>
|
23
|
+
<!-- end CmdImage for contact image -->
|
24
|
+
<span class="contact-full-name">{{ mail.contactFullName }}</span></dd>
|
25
|
+
<dt>{{ getMessage("mail_tool_entry.description_label.subject") }}</dt>
|
26
|
+
<dd><a href="#" @click.prevent="readMail(mail.id)">{{ mail.subject }}</a></dd>
|
27
|
+
</dl>
|
28
|
+
<div class="flex-container vertical no-flex">
|
29
|
+
<dl class="no-list-items date-time-wrapper">
|
30
|
+
<dt>Received:</dt>
|
31
|
+
<dd>
|
32
|
+
<time :datetime="mail.isoDate">{{ mailFormatDate(mail.isoDate) }}</time>
|
33
|
+
<time :datetime="mail.time">{{ mailFormatTime(mail.time) }}</time>
|
34
|
+
</dd>
|
35
|
+
</dl>
|
36
|
+
<div class="options-wrapper flex-container no-flex">
|
37
|
+
<a href="#" @click.prevent="deleteMail(mail.id)" title="Delete this mail">
|
38
|
+
<span class="icon-delete"></span>
|
39
|
+
</a>
|
40
|
+
<a href="#" @click.prevent="toggleReadStatus(mail.id)"
|
41
|
+
:title="mailIsRead.has(mail.id) ? 'Set status to unread' : 'Set status to read'">
|
42
|
+
<span :class="mailIsRead.has(mail.id) ? 'icon-visible' : 'icon-not-visible'"></span>
|
43
|
+
</a>
|
44
|
+
<a href="#" @click.prevent="toggleExpandMail(mail.id)"
|
45
|
+
:title="expandMail.has(mail.id) ? 'Collapse mail content' : 'Expand mail content'">
|
46
|
+
<span
|
47
|
+
:class="expandMail.has(mail.id) ? 'icon-chevron-one-stripe-up' : 'icon-chevron-one-stripe-down'"></span>
|
48
|
+
</a>
|
49
|
+
</div>
|
50
|
+
</div>
|
51
|
+
</div>
|
52
|
+
|
53
|
+
<div v-if="expandMail.has(mail.id)">
|
54
|
+
<header>
|
55
|
+
mailId: {{ mail.id }}
|
56
|
+
</header>
|
57
|
+
</div>
|
58
|
+
</template>
|
59
|
+
<!-- begin CmdSystemMessage (if no mails exist) -->
|
60
|
+
<CmdSystemMessage v-else v-bind="cmdSystemMessage"/>
|
61
|
+
<!-- end CmdSystemMessage (if no mails exist) -->
|
62
|
+
|
63
|
+
</template>
|
64
|
+
|
65
|
+
<script>
|
66
|
+
// import mixins
|
67
|
+
import I18n from "../mixins/I18n.js"
|
68
|
+
import DefaultMessageProperties from "../mixins/CmdMailToolEntry/DefaultMessageProperties.js"
|
69
|
+
|
70
|
+
// import functions
|
71
|
+
import {formatDate, formatTime} from "../utils/date.js"
|
72
|
+
|
73
|
+
export default {
|
74
|
+
name: "CmdMailToolEntry",
|
75
|
+
mixins: [I18n, DefaultMessageProperties],
|
76
|
+
data() {
|
77
|
+
return {
|
78
|
+
expandMail: new Set(),
|
79
|
+
mailIsRead: new Set()
|
80
|
+
}
|
81
|
+
},
|
82
|
+
props: {
|
83
|
+
/**
|
84
|
+
* define box type
|
85
|
+
*
|
86
|
+
* @allowedValues: inbox, outbox
|
87
|
+
*/
|
88
|
+
boxType: {
|
89
|
+
type: String,
|
90
|
+
default: "inbox"
|
91
|
+
},
|
92
|
+
/**
|
93
|
+
* activate if you want to use the default-slot
|
94
|
+
*/
|
95
|
+
useSlot: {
|
96
|
+
type: Boolean,
|
97
|
+
default: false
|
98
|
+
},
|
99
|
+
/**
|
100
|
+
* array of mails
|
101
|
+
*
|
102
|
+
* required-structure for entries:
|
103
|
+
* {
|
104
|
+
* cmdImage: Object (structure for CmdImage-component used for image of contact)
|
105
|
+
* contactFullName: String
|
106
|
+
* subject: String
|
107
|
+
* isoDate: String (formatted as iso-date: YYYY-MM-DD)
|
108
|
+
* time: String (formatted as time: HH:MM)
|
109
|
+
* }
|
110
|
+
*/
|
111
|
+
mails: {
|
112
|
+
type: Array,
|
113
|
+
required: true
|
114
|
+
},
|
115
|
+
/**
|
116
|
+
* date-format for mails
|
117
|
+
*
|
118
|
+
* @allowedValues: "dmy", "mdy", "ymd"
|
119
|
+
*/
|
120
|
+
dateFormat: {
|
121
|
+
type: String,
|
122
|
+
default: "dmy"
|
123
|
+
},
|
124
|
+
/**
|
125
|
+
* dateSeparator for mails
|
126
|
+
*/
|
127
|
+
dateSeparator: {
|
128
|
+
type: String,
|
129
|
+
default: "."
|
130
|
+
},
|
131
|
+
/**
|
132
|
+
* timeFormat for mails
|
133
|
+
*
|
134
|
+
* @allowedValues: "12", "24"
|
135
|
+
*/
|
136
|
+
timeFormat: {
|
137
|
+
type: String,
|
138
|
+
default: "24"
|
139
|
+
},
|
140
|
+
/**
|
141
|
+
* properties for CmdSystemMessage-component
|
142
|
+
*/
|
143
|
+
cmdSystemMessage: {
|
144
|
+
type: Object,
|
145
|
+
default() {
|
146
|
+
return {
|
147
|
+
validationStatus: "info",
|
148
|
+
systemMessage: "No mails found!",
|
149
|
+
showCloseIcon: false
|
150
|
+
}
|
151
|
+
}
|
152
|
+
}
|
153
|
+
},
|
154
|
+
methods: {
|
155
|
+
mailFormatDate(date) {
|
156
|
+
return formatDate(date, this.dateFormat, this.dateSeparator)
|
157
|
+
},
|
158
|
+
mailFormatTime(time) {
|
159
|
+
return formatTime(time, this.timeFormat)
|
160
|
+
},
|
161
|
+
readMail(id) {
|
162
|
+
this.mailIsRead.add(id)
|
163
|
+
this.expandMail.add(id)
|
164
|
+
},
|
165
|
+
deleteMail(id) {
|
166
|
+
if (confirm("Are you sure you want to delete this mail?")) {
|
167
|
+
this.$emit("deleteMail", id)
|
168
|
+
}
|
169
|
+
},
|
170
|
+
toggleReadStatus(id) {
|
171
|
+
if (this.mailIsRead.has(id)) {
|
172
|
+
this.mailIsRead.delete(id)
|
173
|
+
} else {
|
174
|
+
this.mailIsRead.add(id)
|
175
|
+
}
|
176
|
+
},
|
177
|
+
toggleExpandMail(id) {
|
178
|
+
if (this.expandMail.has(id)) {
|
179
|
+
this.expandMail.delete(id)
|
180
|
+
} else {
|
181
|
+
this.expandMail.add(id)
|
182
|
+
}
|
183
|
+
}
|
184
|
+
}
|
185
|
+
}
|
186
|
+
</script>
|
187
|
+
|
188
|
+
<style>
|
189
|
+
/* begin cmd-mail-tool-entry -------------------------------------------------------------------------------------------- */
|
190
|
+
.cmd-mail-tool-entry {
|
191
|
+
justify-content: space-between;
|
192
|
+
text-decoration: none;
|
193
|
+
border: 0;
|
194
|
+
border-top: var(--default-border);
|
195
|
+
border-radius: 0;
|
196
|
+
|
197
|
+
&:hover, &:active, &:focus {
|
198
|
+
cursor: pointer;
|
199
|
+
background: var(--pure-white);
|
200
|
+
}
|
201
|
+
|
202
|
+
&.unread {
|
203
|
+
* {
|
204
|
+
font-weight: bold;
|
205
|
+
}
|
206
|
+
}
|
207
|
+
|
208
|
+
dl {
|
209
|
+
margin: 0;
|
210
|
+
|
211
|
+
dd {
|
212
|
+
gap: calc(var(--default-gap) / 2);
|
213
|
+
}
|
214
|
+
}
|
215
|
+
|
216
|
+
.cmd-image {
|
217
|
+
width: 3rem;
|
218
|
+
aspect-ratio: 1/1;
|
219
|
+
border: var(--default-border);
|
220
|
+
border-radius: var(--full-circle);
|
221
|
+
margin: 0; /* overwrite "a img"-selector from frontend-framework */
|
222
|
+
}
|
223
|
+
|
224
|
+
.options-wrapper {
|
225
|
+
justify-content: flex-end;
|
226
|
+
}
|
227
|
+
}
|
228
|
+
|
229
|
+
/* end cmd-mail-tool-entry -------------------------------------------------------------------------------------------- */
|
230
|
+
</style>
|