Newer
Older
<template>
<div class="cw-block cw-block-headline">
<courseware-default-block
:block="block"
:canEdit="canEdit"
:isTeacher="isTeacher"
:preview="true"
@storeEdit="storeText"
@closeEdit="closeEdit"
>
<template #content>
<div
class="cw-block-headline-content"
:class="[currentStyle, currentHeight === 'half' ? 'half' : 'full']"
:style="headlineStyle"
>
<div
class="icon-layer"
:class="['icon-' + currentIconColor + '-' + currentIcon, currentHeight === 'half' ? 'half' : 'full']"
>
</div>
<div class="cw-block-headline-textbox">
<div class="cw-block-headline-title">
<h1 :style="textStyle">{{ currentTitle }}</h1>
</div>
<div class="cw-block-headline-subtitle">
<h2 :style="textStyle">{{ currentSubtitle }}</h2>
</div>
</div>
</div>
</template>
<template v-if="canEdit" #edit>
<form class="default" @submit.prevent="">
<label>
<translate>Layout</translate>
<select v-model="currentStyle">
<option value="heavy"><translate>Große Schrift</translate></option>
<option value="ribbon"><translate>Band</translate></option>
<option value="bigicon_top"><translate>Großes Icon oben</translate></option>
<option value="bigicon_before"><translate>Großes Icon davor</translate></option>
</select>
</label>
<label>
<translate>Höhe</translate>
<select v-model="currentHeight">
<option value="full"><translate>Voll</translate></option>
<option value="half"><translate>Halb</translate></option>
</select>
</label>
<label>
<translate>Haupttitel</translate>
<input type="text" v-model="currentTitle" />
</label>
<label>
<translate>Untertitel</translate>
<input type="text" v-model="currentSubtitle" />
</label>
<label>
<translate>Textfarbe</translate>
<studip-select
:options="colors"
label="hex"
:reduce="color => color.hex"
:clearable="false"
v-model="currentTextColor"
>
<template #open-indicator="selectAttributes">
<span v-bind="selectAttributes"><studip-icon shape="arr_1down" size="10"/></span>
</template>
<template #no-options="{ search, searching, loading }">
</template>
<template #selected-option="{name, hex}">
<span class="vs__option-color" :style="{'background-color': hex}"></span><span>{{name}}</span>
</template>
<template #option="{name, hex}">
<span class="vs__option-color" :style="{'background-color': hex}"></span><span>{{name}}</span>
</template>
</studip-select>
</label>
<label>
<translate>Icon</translate>
<studip-select :clearable="false" :options="icons" v-model="currentIcon">
<template #open-indicator="selectAttributes">
<span v-bind="selectAttributes"><studip-icon shape="arr_1down" size="10"/></span>
</template>
<template #no-options="{ search, searching, loading }">
</template>
<template #selected-option="option">
<studip-icon :shape="option.label"/> <span class="vs__option-with-icon">{{option.label}}</span>
</template>
<template #option="option">
<studip-icon :shape="option.label"/> <span class="vs__option-with-icon">{{option.label}}</span>
</template>
</studip-select>
</label>
<label>
<translate>Icon-Farbe</translate>
<studip-select
:reduce="iconColor => iconColor.class"
:clearable="false"
v-model="currentIconColor"
>
<template #open-indicator="selectAttributes">
<span v-bind="selectAttributes"><studip-icon shape="arr_1down" size="10"/></span>
</template>
<template #no-options="{ search, searching, loading }">
</template>
<template #selected-option="{name, hex}">
<span class="vs__option-color" :style="{'background-color': hex}"></span><span>{{name}}</span>
</template>
<template #option="{name, hex}">
<span class="vs__option-color" :style="{'background-color': hex}"></span><span>{{name}}</span>
</template>
</studip-select>
</label>
<label>
<translate>Hintergrundtyp</translate>
<select v-model="currentBackgroundType">
<option value="color"><translate>Farbe</translate></option>
<option value="image"><translate>Bild</translate></option>
</select>
</label>
<label v-if="currentBackgroundType === 'color'">
<translate>Hintergrundfarbe</translate>
<studip-select
:options="colors"
label="hex"
:reduce="color => color.hex"
v-model="currentBackgroundColor"
:clearable="false"
>
<template #open-indicator="selectAttributes">
<span v-bind="selectAttributes"><studip-icon shape="arr_1down" size="10"/></span>
</template>
<template #no-options="{ search, searching, loading }">
</template>
<template #selected-option="{name, hex}">
<span class="vs__option-color" :style="{'background-color': hex}"></span><span>{{name}}</span>
</template>
<template #option="{name, hex}">
<span class="vs__option-color" :style="{'background-color': hex}"></span><span>{{name}}</span>
</template>
</studip-select>
</label>
<label v-if="currentBackgroundType === 'image'">
<translate>Hintergrundbild</translate>
<courseware-file-chooser
v-model="currentBackgroundImageId"
:isImage="true"
@selectFile="updateCurrentBackgroundImage"
/>
</label>
</form>
</template>
<template #info><translate>Informationen zum Blickfang-Block</translate></template>
</courseware-default-block>
</div>
</template>
<script>
import CoursewareDefaultBlock from './CoursewareDefaultBlock.vue';
import CoursewareFileChooser from './CoursewareFileChooser.vue';
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
import contentIcons from './content-icons.js';
export default {
name: 'courseware-headline-block',
components: {
CoursewareDefaultBlock,
CoursewareFileChooser,
},
props: {
block: Object,
canEdit: Boolean,
isTeacher: Boolean,
},
data() {
return {
currentTitle: '',
currentSubtitle: '',
currentStyle: '',
currentHeight: '',
currentBackgroundColor: '',
currentTextColor: '',
currentIcon: '',
currentIconColor: '',
currentBackgroundType: '',
currentBackgroundImageId: '',
currentBackgroundImage: {},
...mapGetters({
fileRefById: 'file-refs/byId',
urlHelper: 'urlHelper',
relatedTermOfUse: 'terms-of-use/related',
}),
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
title() {
return this.block?.attributes?.payload?.title;
},
subtitle() {
return this.block?.attributes?.payload?.subtitle;
},
style() {
return this.block?.attributes?.payload?.style;
},
height() {
return this.block?.attributes?.payload?.height;
},
backgroundColor() {
return this.block?.attributes?.payload?.background_color;
},
textColor() {
return this.block?.attributes?.payload?.text_color;
},
icon() {
return this.block?.attributes?.payload?.icon;
},
iconColor() {
return this.block?.attributes?.payload?.icon_color;
},
backgroundImageId() {
return this.block?.attributes?.payload?.background_image_id;
},
backgroundImage() {
return this.block?.attributes?.payload?.background_image;
},
backgroundType() {
return this.block?.attributes?.payload?.background_type;
},
complementBackgroundColor() {
return this.calcComplement(this.backgroundColor);
},
icons() {
return contentIcons;
},
colors() {
const colors = [
{name: this.$gettext('Schwarz'), class: 'black', hex: '#000000', level: 100, icon: 'black', darkmode: true},
{name: this.$gettext('Weiß'), class: 'white', hex: '#ffffff', level: 100, icon: 'white', darkmode: false},
{name: this.$gettext('Blau'), class: 'studip-blue', hex: '#28497c', level: 100, icon: 'blue', darkmode: true},
{name: this.$gettext('Hellblau'), class: 'studip-lightblue', hex: '#e7ebf1', level: 40, icon: 'lightblue', darkmode: false},
{name: this.$gettext('Rot'), class: 'studip-red', hex: '#d60000', level: 100, icon: 'red', darkmode: false},
{name: this.$gettext('Grün'), class: 'studip-green', hex: '#008512', level: 100, icon: 'green', darkmode: true},
{name: this.$gettext('Gelb'), class: 'studip-yellow', hex: '#ffbd33', level: 100, icon: 'yellow', darkmode: false},
{name: this.$gettext('Grau'), class: 'studip-gray', hex: '#636a71', level: 100, icon: 'grey', darkmode: true},
{name: this.$gettext('Holzkohle'), class: 'charcoal', hex: '#3c454e', level: 100, icon: false, darkmode: true},
{name: this.$gettext('Königliches Purpur'), class: 'royal-purple', hex: '#8656a2', level: 80, icon: false, darkmode: true},
{name: this.$gettext('Leguangrün'), class: 'iguana-green', hex: '#66b570', level: 60, icon: false, darkmode: true},
{name: this.$gettext('Königin blau'), class: 'queen-blue', hex: '#536d96', level: 80, icon: false, darkmode: true},
{name: this.$gettext('Helles Seegrün'), class: 'verdigris', hex: '#41afaa', level: 80, icon: false, darkmode: true},
{name: this.$gettext('Maulbeere'), class: 'mulberry', hex: '#bf5796', level: 80, icon: false, darkmode: true},
{name: this.$gettext('Kürbis'), class: 'pumpkin', hex: '#f26e00', level: 100, icon: false, darkmode: true},
{name: this.$gettext('Sonnenschein'), class: 'sunglow', hex: '#ffca5c', level: 80, icon: false, darkmode: false},
{name: this.$gettext('Apfelgrün'), class: 'apple-green', hex: '#8bbd40', level: 80, icon: false, darkmode: true},
];
return colors;
},
iconColors() {
const iconColors = [
{name: this.$gettext('Schwarz'), class: 'black', hex: '#000000'},
{name: this.$gettext('Weiß'), class: 'white', hex: '#ffffff'},
{name: this.$gettext('Blau'), class: 'studip-blue', hex: '#28497c'},
{name: this.$gettext('Rot'), class: 'studip-red', hex: '#d60000'},
{name: this.$gettext('Grün'), class: 'studip-green', hex: '#008512'},
{name: this.$gettext('Gelb'), class: 'studip-yellow', hex: '#ffbd33'},
];
return iconColors;
},
textStyle() {
let style = {};
style.color = this.currentTextColor;
return style;
},
headlineStyle() {
let style = {};
if (this.currentBackgroundType === 'color') {
style['background-color'] = this.currentBackgroundColor;
}
if (this.currentBackgroundType === 'image') {
style['background-color'] = this.currentBackgroundColor;
style['background-image'] = 'url(' + this.currentBackgroundURL + ')';
}
return style;
},
mounted() {
this.initCurrentData();
},
methods: {
...mapActions({
updateBlock: 'updateBlockInContainer',
}),
initCurrentData() {
this.currentTitle = this.title;
this.currentSubtitle = this.subtitle;
this.currentStyle = this.style;
this.currentHeight = this.height;
this.currentBackgroundColor = this.backgroundColor;
this.currentTextColor = this.textColor;
this.currentIcon = this.icon;
this.currentIconColor = this.iconColor;
this.currentBackgroundType = this.backgroundType;
this.currentBackgroundImageId = this.backgroundImageId;
if (this.currentBackgroundImageId !== '') {
this.loadFile();
}
},
async loadFile() {
const id = this.currentBackgroundImageId;
const options = { include: 'terms-of-use' };
await this.loadFileRef({ id: id, options });
const fileRef = this.fileRefById({ id: id });
if (fileRef && this.relatedTermOfUse({parent: fileRef, relationship: 'terms-of-use'}).attributes['download-condition'] === 0) {
this.updateCurrentBackgroundImage({
id: fileRef.id,
name: fileRef.attributes.name,
download_url: this.urlHelper.getURL(
'sendfile.php',
{ type: 0, file_id: fileRef.id, file_name: fileRef.attributes.name },
true
),
});
}
},
updateCurrentBackgroundImage(file) {
this.currentBackgroundImage = file;
this.currentBackgroundImageId = file.id;
},
closeEdit() {
this.initCurrentData();
},
storeText() {
let attributes = {};
attributes.payload = {};
attributes.payload.title = this.currentTitle;
attributes.payload.subtitle = this.currentSubtitle;
attributes.payload.style = this.currentStyle;
attributes.payload.height = this.currentHeight;
attributes.payload.text_color = this.currentTextColor;
attributes.payload.icon = this.currentIcon;
attributes.payload.icon_color = this.currentIconColor;
attributes.payload.background_type = this.currentBackgroundType;
attributes.payload.background_color = '';
attributes.payload.background_image_id = '';
if (this.currentBackgroundType === 'color') {
attributes.payload.background_color = this.currentBackgroundColor;
}
if (this.currentBackgroundType === 'image') {
attributes.payload.background_image_id = this.currentBackgroundImageId;
}
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
this.updateBlock({
attributes: attributes,
blockId: this.block.id,
containerId: this.block.relationships.container.data.id,
});
},
calcComplement(color) {
let RGB = this.calcRGB(color);
return '#' + this.compToHex(255 - RGB.r) + this.compToHex(255 - RGB.g) + this.compToHex(255 - RGB.b);
},
calcIconColor(color) {
let RGB = this.calcRGB(color);
return (RGB.r + RGB.g + RGB.b) / 3 > 129 ? 'black' : 'white';
},
calcRGB(color) {
color = color.slice(1); // remove #
let val = parseInt(color, 16);
let r = val >> 16;
let g = (val >> 8) & 0x00ff;
let b = val & 0x0000ff;
if (g > 255) {
g = 255;
} else if (g < 0) {
g = 0;
}
if (b > 255) {
b = 255;
} else if (b < 0) {
b = 0;
}
return { r: r, g: g, b: b };
},
compToHex(comp) {
let hex = comp.toString(16);
return hex.length === 1 ? '0' + hex : hex;
},
},
};
</script>