comand-component-library 4.1.91 → 4.1.92

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.
@@ -449,16 +449,15 @@ data() {
449
449
  ]
450
450
  },
451
451
  cmdLoginFormSettingsData: {
452
- legendLoginForm: {
453
- show: true,
454
- align: "left",
455
- text: "Login form"
452
+ cmdHeadlineLoginForm: {
453
+ headlineText: "Login",
454
+ headlineLevel: 4
456
455
  },
457
- legendForgotLoginForm: {
458
- show: true,
459
- align: "right",
460
- text: "Forgot login form"
461
- }
456
+ cmdHeadlineSendLoginForm: {
457
+ headlineText: "Send Login",
458
+ headlineLevel: 4
459
+ },
460
+ orientation: "horizontal",
462
461
  },
463
462
  cmdLoginFormSettingsControls: {
464
463
  orientation: [
@@ -509,10 +508,6 @@ data() {
509
508
  },
510
509
  cmdNewsletterSubscriptionSettingsData: {
511
510
  buttonType: "submit",
512
- legend: {
513
- show: true,
514
- text: "Stay up-to-date"
515
- },
516
511
  cmdInputGroup: {
517
512
  inputElements: [
518
513
  {
@@ -615,11 +610,7 @@ data() {
615
610
  ],
616
611
  },
617
612
  cmdSiteSearchSettingsData: {
618
- useFilters: true,
619
- legend: {
620
- show: true,
621
- text: "Search"
622
- }
613
+ useFilters: true
623
614
  },
624
615
  cmdSlideshowSettingsData: {
625
616
  useSlot: false,
@@ -172,10 +172,11 @@
172
172
  </template>
173
173
 
174
174
  <script>
175
- import EditMode from "../mixins/EditMode.vue"
176
- import {buildComponentPath, updateHandlerProvider} from "../utils/editmode.js";
175
+ // import functions
176
+ import {buildComponentPath, updateHandlerProvider} from "../utils/editmode.js"
177
177
 
178
178
  // import mixins
179
+ import EditMode from "../mixins/EditMode.vue"
179
180
 
180
181
  export default {
181
182
  name: "CmdAddressData",
@@ -11,7 +11,6 @@
11
11
  </template>
12
12
 
13
13
  <script>
14
-
15
14
  export default {
16
15
  name: "CmdBackToTopButton",
17
16
  data() {
@@ -263,8 +263,9 @@
263
263
  // import mixins
264
264
  import I18n from "../mixins/I18n.js"
265
265
  import DefaultMessageProperties from "../mixins/CmdBasicForm/DefaultMessageProperties.js"
266
- import {ContactFormValidator} from "../utils/ContactFormValidation.js"
267
266
 
267
+ // import functions
268
+ import {ContactFormValidator} from "../utils/ContactFormValidation.js"
268
269
  import {openFancyBox} from "./CmdFancyBox.vue"
269
270
 
270
271
  export default {
@@ -71,7 +71,6 @@
71
71
  <!-- begin inputfield -->
72
72
  <template v-if="element === 'input' && $attrs.type !== 'search'">
73
73
  <input
74
- v-bind="elementAttributes"
75
74
  :id="htmlId"
76
75
  :class="inputClass"
77
76
  @focus="tooltip = true"
@@ -83,8 +82,10 @@
83
82
  :autocomplete="autocomplete"
84
83
  :list="datalist ? datalist.id : null"
85
84
  :value="modelValue"
85
+ :minlength="$attrs.type === 'password' ? '8' : null"
86
86
  :maxlength="getMaxLength()"
87
87
  ref="input"
88
+ v-bind="elementAttributes"
88
89
  />
89
90
  </template>
90
91
  <!-- end inputfield -->
@@ -829,8 +830,11 @@ export default {
829
830
  const useValidation = event.target.closest("form")?.dataset.useValidation === "true"
830
831
 
831
832
  if (useValidation) {
833
+ // get value from input-element
834
+ const value = event.target.value
835
+
832
836
  // if input is filled, set status to success (expect for checkboxes and radiobuttons)
833
- if (!["checkbox", "radio"].includes(this.$attrs.type) && this.modelValue) {
837
+ if (!["checkbox", "radio"].includes(this.$attrs.type) && value) {
834
838
  this.validationStatus = "success"
835
839
  }
836
840
 
@@ -840,7 +844,7 @@ export default {
840
844
  if (this.customRequirements) {
841
845
  // check if customRequirement returns invalid result
842
846
  const invalidCustomRequirement = this.customRequirements.some(requirement => {
843
- return !requirement.valid(this.modelValue)
847
+ return !requirement.valid(value)
844
848
  })
845
849
 
846
850
  // set validation-status if invalidCustomRequirement returns at least one invalid entry
@@ -105,7 +105,7 @@
105
105
  <!-- end image with figure/figcaption -->
106
106
 
107
107
  <!-- begin image without figure/figcaption -->
108
- <img v-else :src="imageSource" :alt="image?.alt" :title="image?.tooltip" @load="onImageLoaded"/>
108
+ <img v-else class="cmd-image" :src="imageSource" :alt="image?.alt" :title="image?.tooltip" @load="onImageLoaded"/>
109
109
  <!-- end image without figure/figcaption -->
110
110
  <!-- end default-view -->
111
111
  </template>
@@ -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-bottom: calc(var(--default-margin) / 2);
325
+ margin: 0;
326
326
 
327
327
  > span + a:has([class*="icon-"]) {
328
328
  margin-left: calc(var(--default-margin) / 2);
@@ -73,21 +73,22 @@
73
73
 
74
74
  <!-- begin link-type 'button' -->
75
75
  <button
76
- v-if="buttonLoginOptions.linkType === 'button'"
77
- :type="buttonLoginOptions.type === 'submit' ? 'submit' : 'button'"
78
- :class="['button', { primary: buttonLoginOptions.primary }]"
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="buttonLoginOptions.icon.iconClass"
85
- :iconClass="buttonLoginOptions.icon.iconClass"
86
- :type="buttonLoginOptions.icon.iconType"
87
- :title="buttonLoginOptions.icon.tooltip"
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="buttonLoginOptions.text">{{ buttonLoginOptions.text }}</span>
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: 'right"',
226
- text: 'Forgot login form'
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
- buttonLoginOptions() {
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>