Files
enfrancais-app/src/components/nodes/NodeViewBody.vue
T

251 lines
6.0 KiB
Vue

<template>
<div
class="node-view-body"
:class="['node-view-body-' + mode, 'node-view-body-' + type]"
>
<slot name="default">
<node-view-figure
v-if="mode === 'view' && type === 'prod' && node.title"
@expand-image="image = $event"
:node="node"
/>
<div class="node-view-body-wrapper" v-html="node.content" />
<fullscreen-modal v-if="image" :image="image" :id="'modal-image-' + node.id" />
<template v-if="mode === 'view'">
<b-popover
v-for="note in node.notes" :key="`note-${mode}-${node.id}-${note.number}`"
custom-class="footnote"
:target="`note-${node.id}-${note.number}`" :container="`node-${mode}-${node.id}`"
placement="top" :fallback-placement="['bottom', 'right', 'left']"
:triggers="['focus']"
>
<div class="footnote-content" v-html="note.content" />
<div class="footnote-child-list" v-if="note.links">
<node-view-title
v-for="link in note.links" :key="link.id"
:node="link.type === 'prod' && link.parents && link.parents.length ? link.parents[0] : link"
link
@open-node="onFootnoteLinkClick(link, `note-${node.id}-${note.number}`)"
>
<dot-button
:variant="link.variant"
class="mr-2"
active
>
{{ $t('variants.' + link.variant) }}
</dot-button>
</node-view-title>
</div>
</b-popover>
</template>
</slot>
</div>
</template>
<script>
import { getRelation } from '@/store/utils'
import { NodeViewTitle, NodeViewFigure } from '@/components/nodes'
export default {
name: 'NodeViewBody',
components: {
NodeViewTitle,
NodeViewFigure
},
props: {
node: { type: Object, required: true },
type: { type: String, required: true },
mode: { type: String, required: true }
},
data () {
return {
image: { id: '', url: '', alt: '' }
}
},
methods: {
addFootnotes () {
const links = this.$el.querySelectorAll('a')
links.forEach((link, i) => {
const number = parseInt(link.hash.replace('#', ''))
if (!isNaN(number)) {
link.classList.add('footnote-link')
link.id = `note-${this.node.id}-${number}`
link.innerHTML = link.textContent
if (link.parentElement.nodeName === 'SUP') {
link.parentElement.replaceWith(link)
}
link.setAttribute('href', 'javascript:;')
}
})
},
hideFootnotes () {
const links = this.$el.querySelectorAll('a')
links.forEach((link, i) => {
const number = parseInt(link.hash.replace('#', ''))
if (!isNaN(number)) {
link.classList.add('footnote-link')
if (link.parentElement.nodeName === 'SUP') {
link.parentElement.replaceWith(link)
}
}
})
},
mountMedias () {
const template = document.getElementById('expand-image-tmp')
this.$el.querySelectorAll('.node-view-body-wrapper img').forEach(img => {
const image = { id: img.dataset.entityUuid, url: img.src, alt: img.alt }
const clone = document.importNode(template.content, true)
const cloneImg = clone.querySelector('img')
cloneImg.setAttribute('src', image.url)
cloneImg.setAttribute('alt', image.alt)
cloneImg.setAttribute('id', image.id)
clone.querySelector('button').onclick = () => {
this.image = image
this.$bvModal.show('modal-image-' + this.node.id)
}
img.parentElement.replaceWith(clone)
})
},
onFootnoteLinkClick (node, popoverBtnId) {
this.$root.$emit('bv::hide::popover', popoverBtnId)
this.$parent.$emit('open-node', getRelation(node))
}
},
created () {
if (this.mode === 'view' && this.node.notes) {
// Query partial data for linked nodes in notes
const ids = this.node.notes.filter(note => (note.links)).reduce((ids, note) => {
return [...ids, ...note.links.map(link => link.id)]
}, [])
this.$store.dispatch('GET_NODES', { ids, dataLevel: 'initial' })
}
},
mounted () {
if (this.mode === 'view') {
this.addFootnotes()
this.mountMedias()
} else {
this.hideFootnotes()
}
}
}
</script>
<style lang="scss">
.node-view-body {
width: 100%;
img {
display: block;
max-width: 100%;
max-height: 80vh;
}
font: {
family: $font-family-text;
line-height: inherit;
}
@include media-breakpoint-up($size-bp) {
font-size: 2rem;
}
&-view {
padding: 0 $node-view-spacer-sm-x;
font-size: 1.25rem;
word-wrap: break-word;
@include media-breakpoint-up($size-bp) {
padding: 0 $node-view-spacer-x;
&.node-view-body-ref {
font-size: 2.6rem;
}
&.node-view-body-prod {
font-size: 1.5rem;
}
}
}
&-card {
padding: 0 $node-card-spacer-sm-x;
font-size: 1.1rem;
word-wrap: anywhere;
@include media-breakpoint-up($size-bp) {
font-size: 2rem;
padding: 0 $node-card-spacer-x;
}
}
&-card &-wrapper {
@include line-clamp(3, 1.5em);
}
&-card#{&}-prod &-wrapper {
@include line-clamp(4, 1.5em);
}
.footnote-link {
display: inline-block;
text-align: center;
background-color: $black;
color: $white;
font-family: $font-family-text;
font-weight: $font-weight-bold;
font-size: 0.8em;
text-decoration: none;
border-radius: 1em;
padding: 0 .5em;
min-width: 1.25em;
max-height: 1.4em;
margin: 0 .2em;
}
&-card .footnote-link {
display: none;
}
}
.footnote {
background-color: $black !important;
color: $white;
font-size: 1.25rem;
@include media-breakpoint-up($size-bp) {
font-size: 1.5rem;
}
h6 {
font-size: inherit;
}
&-content,
&-child-list {
> :last-child {
margin-bottom: 0;
}
}
&-child-list {
margin-top: .5rem;
}
}
</style>