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

Biest#292

parent f037cde1
No related branches found
No related tags found
No related merge requests found
...@@ -121,8 +121,7 @@ export default { ...@@ -121,8 +121,7 @@ export default {
unlockObject: 'unlockObject', unlockObject: 'unlockObject',
}), }),
initCurrentData() { initCurrentData() {
// clone container to make edit reversible this.currentContainer = _.cloneDeep(this.container);
this.currentContainer = JSON.parse(JSON.stringify(this.container));
let view = this; let view = this;
let sections = this.currentContainer.attributes.payload.sections; let sections = this.currentContainer.attributes.payload.sections;
...@@ -157,6 +156,9 @@ export default { ...@@ -157,6 +156,9 @@ export default {
this.currentContainer.attributes.payload.sections.splice(index, 1); this.currentContainer.attributes.payload.sections.splice(index, 1);
}, },
async storeContainer() { async storeContainer() {
this.currentContainer.attributes.payload.sections.forEach(section => {
section.blocks = section.blocks.map((block) => {return block.id;});
});
await this.updateContainer({ await this.updateContainer({
container: this.currentContainer, container: this.currentContainer,
structuralElementId: this.currentContainer.relationships['structural-element'].data.id, structuralElementId: this.currentContainer.relationships['structural-element'].data.id,
...@@ -165,7 +167,10 @@ export default { ...@@ -165,7 +167,10 @@ export default {
this.initCurrentData(); this.initCurrentData();
}, },
component(block) { component(block) {
return 'courseware-' + block.attributes["block-type"] + '-block'; if (block.attributes) {
return 'courseware-' + block.attributes["block-type"] + '-block';
}
return null;
}, },
updateContent(blockAdder) { updateContent(blockAdder) {
if(blockAdder.container.id === this.container.id) { if(blockAdder.container.id === this.container.id) {
...@@ -173,5 +178,10 @@ export default { ...@@ -173,5 +178,10 @@ export default {
} }
} }
}, },
watch: {
blocks() {
this.initCurrentData();
}
}
}; };
</script> </script>
<template> <template>
<div class="cw-collapsible" :class="{ 'cw-collapsible-open': isOpen }"> <div class="cw-collapsible" :class="{ 'cw-collapsible-open': isOpen }">
<header :class="{ 'cw-collapsible-open': isOpen }" class="cw-collapsible-title" @click="isOpen = !isOpen"> <header :class="{ 'cw-collapsible-open': isOpen }" class="cw-collapsible-title" @click="isOpen = !isOpen">
<studip-icon v-if="icon !== ''" :shape="icon" /> {{ title }} <studip-icon v-if="icon" :shape="icon" /> {{ title }}
</header> </header>
<div class="cw-collapsible-content" :class="{ 'cw-collapsible-content-open': isOpen }"> <div class="cw-collapsible-content" :class="{ 'cw-collapsible-content-open': isOpen }">
<slot></slot> <slot></slot>
......
...@@ -56,6 +56,7 @@ export default { ...@@ -56,6 +56,7 @@ export default {
if (block.attributes["block-type"] !== undefined) { if (block.attributes["block-type"] !== undefined) {
return 'courseware-' + block.attributes["block-type"] + '-block'; return 'courseware-' + block.attributes["block-type"] + '-block';
} }
return null;
}, },
}, },
mounted() {}, mounted() {},
......
...@@ -128,8 +128,7 @@ export default { ...@@ -128,8 +128,7 @@ export default {
unlockObject: 'unlockObject', unlockObject: 'unlockObject',
}), }),
initCurrentData() { initCurrentData() {
// clone container to make edit reversible this.currentContainer = _.cloneDeep(this.container);
this.currentContainer = JSON.parse(JSON.stringify(this.container));
let view = this; let view = this;
let sections = this.currentContainer.attributes.payload.sections; let sections = this.currentContainer.attributes.payload.sections;
...@@ -164,6 +163,10 @@ export default { ...@@ -164,6 +163,10 @@ export default {
this.currentContainer.attributes.payload.sections.splice(index, 1); this.currentContainer.attributes.payload.sections.splice(index, 1);
}, },
async storeContainer() { async storeContainer() {
this.currentContainer.attributes.payload.sections.forEach(section => {
section.blocks = section.blocks.map((block) => {return block.id;});
});
await this.updateContainer({ await this.updateContainer({
container: this.currentContainer, container: this.currentContainer,
structuralElementId: this.currentContainer.relationships['structural-element'].data.id, structuralElementId: this.currentContainer.relationships['structural-element'].data.id,
...@@ -174,9 +177,8 @@ export default { ...@@ -174,9 +177,8 @@ export default {
component(block) { component(block) {
if (block.attributes) { if (block.attributes) {
return 'courseware-' + block.attributes["block-type"] + '-block'; return 'courseware-' + block.attributes["block-type"] + '-block';
} else {
console.debug(block);
} }
return null;
}, },
updateContent(blockAdder) { updateContent(blockAdder) {
if(blockAdder.container.id === this.container.id) { if(blockAdder.container.id === this.container.id) {
......
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