Skip to content
Snippets Groups Projects
Commit 54e6a1d0 authored by Ron Lucke's avatar Ron Lucke
Browse files

TIC #3266

Closes #3266

Merge request studip/studip!2319
parent 13043ff1
No related branches found
No related tags found
No related merge requests found
......@@ -291,7 +291,7 @@ $consum_ribbon_width: calc(100% - 58px);
> .cw-tab {
height: calc(100% - 22px);
padding: 14px 8px 8px 8px;
padding: 8px;
position: relative;
overflow-y: auto;
overflow-x: hidden;
......
......@@ -8,17 +8,7 @@
> li.cw-tree-item {
> .cw-tree-item-wrapper {
border-bottom: solid thin var(--content-color-40);
display: block;
> a.cw-tree-item-link {
display: block;
font-size: 18px;
padding-left: 26px;
@include background-icon(courseware, clickable, 18);
background-repeat: no-repeat;
background-position: 3px 3px;
}
display: none;
}
ol {
......
<template>
<div class="cw-tools cw-tools-contents">
<router-link :to="'/structural_element/' + rootElement.id" :class="{'root-is-current': rootIsCurrent}">
<div v-if="rootElement" class="cw-tools-contents-header">
<div
class="cw-tools-contents-header-image"
:class="[headerImageUrl ? '' : 'default-image']"
:style="headerImageStyle"
></div>
<div class="cw-tools-contents-header-details">
<header>{{ rootElement.attributes.title }}</header>
<p>{{ rootElement.attributes.payload.description }}</p>
</div>
</div>
</router-link>
<courseware-tree v-if="structuralElements.length" />
</div>
</template>
......@@ -16,8 +29,80 @@ export default {
computed: {
...mapGetters({
courseware: 'courseware',
relatedStructuralElement: 'courseware-structural-elements/related',
structuralElements: 'courseware-structural-elements/all',
structuralElementById: 'courseware-structural-elements/byId',
}),
rootElement() {
const root = this.relatedStructuralElement({
parent: { id: this.courseware.id, type: this.courseware.type },
relationship: 'root',
});
return root;
},
headerImageUrl() {
return this.rootElement.relationships?.image?.meta?.['download-url'];
},
headerImageStyle() {
if (this.headerImageUrl) {
return { 'background-image': 'url(' + this.headerImageUrl + ')' };
}
return {};
},
rootIsCurrent() {
const id = this.$route?.params?.id;
return this.rootElement.id === id;
},
},
};
</script>
<style scoped lang="scss">
.cw-tools-contents-header {
display: flex;
flex-direction: row;
height: 100px;
margin-top: 8px;
.cw-tools-contents-header-image {
height: 100px;
width: 150px;
min-width: 150px;
background-size: 100% auto;
background-repeat: no-repeat;
background-position: center;
background-color: var(--content-color-20);
&.default-image {
background-image: url("../images/icons/blue/courseware.svg");
background-size: 64px;
}
}
.cw-tools-contents-header-details {
margin: 0 8px;
display: -webkit-box;
overflow: hidden;
height: 100px;
-webkit-line-clamp: 5;
-webkit-box-orient: vertical;
header {
margin: 0 0 6px 0;
font-size: 16px;
line-height: 16px;
}
p {
margin: 0;
color: var(--black);
}
}
}
.root-is-current {
.cw-tools-contents-header-details {
header {
color: var(--black);
font-weight: 600;
}
}
}
</style>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment