Add link block
This commit is contained in:
parent
511ff90a98
commit
2fa432b6b8
|
@ -13,6 +13,7 @@
|
||||||
import EmbedBlock from "./EmbedBlock";
|
import EmbedBlock from "./EmbedBlock";
|
||||||
import HeaderBlock from "./HeaderBlock";
|
import HeaderBlock from "./HeaderBlock";
|
||||||
import ImageBlock from "./ImageBlock";
|
import ImageBlock from "./ImageBlock";
|
||||||
|
import LinkBlock from "./LinkBlock";
|
||||||
import ListBlock from "./ListBlock";
|
import ListBlock from "./ListBlock";
|
||||||
import ParagraphBlock from "./ParagraphBlock";
|
import ParagraphBlock from "./ParagraphBlock";
|
||||||
import QuoteBlock from "./QuoteBlock";
|
import QuoteBlock from "./QuoteBlock";
|
||||||
|
@ -22,17 +23,18 @@ const componentTypes = {
|
||||||
embed: EmbedBlock,
|
embed: EmbedBlock,
|
||||||
header: HeaderBlock,
|
header: HeaderBlock,
|
||||||
image: ImageBlock,
|
image: ImageBlock,
|
||||||
|
link: LinkBlock,
|
||||||
list: ListBlock,
|
list: ListBlock,
|
||||||
paragraph: ParagraphBlock,
|
paragraph: ParagraphBlock,
|
||||||
quote: QuoteBlock,
|
quote: QuoteBlock,
|
||||||
warning: WarningBlock,
|
warning: WarningBlock
|
||||||
};
|
};
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: ["content"],
|
props: ["content"],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
blocks: [],
|
blocks: []
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
@ -45,20 +47,20 @@ export default {
|
||||||
if (!this.content.blocks) {
|
if (!this.content.blocks) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.blocks = this.content.blocks.map((block) => ({
|
this.blocks = this.content.blocks.map(block => ({
|
||||||
component: componentTypes[block.type],
|
component: componentTypes[block.type],
|
||||||
type: block.type,
|
type: block.type,
|
||||||
data: block.data,
|
data: block.data
|
||||||
}));
|
}));
|
||||||
},
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
content() {
|
content() {
|
||||||
if (this.content) {
|
if (this.content) {
|
||||||
this.prepareBlocks();
|
this.prepareBlocks();
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
22
src/components/LinkBlock.vue
Normal file
22
src/components/LinkBlock.vue
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
<template>
|
||||||
|
<div class="link-block">
|
||||||
|
<div class="link-block-meta">
|
||||||
|
<div class="link-block-title">{{data.meta.title}}</div>
|
||||||
|
<p class="link-block-description">{{data.meta.description}}</p>
|
||||||
|
<div class="link-block-anchor">{{domain}}</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="link-block-image" :style="{ 'background-image': data.meta.image.url }"></div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
props: ["data"],
|
||||||
|
computed: {
|
||||||
|
domain() {
|
||||||
|
return this.data.link.replace(/(https|http):\/\//, "").split(/[/?#]/)[0];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
Loading…
Reference in New Issue
Block a user