|
@@ -14,32 +14,34 @@
|
|
|
|
|
|
<fullscreen-modal v-if="image" :image="image" :id="'modal-image-' + node.id" />
|
|
<fullscreen-modal v-if="image" :image="image" :id="'modal-image-' + node.id" />
|
|
|
|
|
|
- <b-popover
|
|
|
|
- v-for="note in node.notes" :key="note.number"
|
|
|
|
- custom-class="footnote"
|
|
|
|
- :target="'note-' + 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.parents && link.parents.length ? link.parents[0] : link"
|
|
|
|
- link
|
|
|
|
- @open-node="onFootnoteLinkClick(link, 'note-' + note.number)"
|
|
|
|
- >
|
|
|
|
- <dot-button
|
|
|
|
- :variant="link.variant"
|
|
|
|
- class="mr-2"
|
|
|
|
- active
|
|
|
|
|
|
+ <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-' + note.number)"
|
|
>
|
|
>
|
|
- {{ $t('variants.' + link.variant) }}
|
|
|
|
- </dot-button>
|
|
|
|
- </node-view-title>
|
|
|
|
- </div>
|
|
|
|
- </b-popover>
|
|
|
|
|
|
+ <dot-button
|
|
|
|
+ :variant="link.variant"
|
|
|
|
+ class="mr-2"
|
|
|
|
+ active
|
|
|
|
+ >
|
|
|
|
+ {{ $t('variants.' + link.variant) }}
|
|
|
|
+ </dot-button>
|
|
|
|
+ </node-view-title>
|
|
|
|
+ </div>
|
|
|
|
+ </b-popover>
|
|
|
|
+ </template>
|
|
</slot>
|
|
</slot>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
@@ -76,7 +78,7 @@ export default {
|
|
const number = parseInt(link.hash.replace('#', ''))
|
|
const number = parseInt(link.hash.replace('#', ''))
|
|
if (!isNaN(number)) {
|
|
if (!isNaN(number)) {
|
|
link.classList.add('footnote-link')
|
|
link.classList.add('footnote-link')
|
|
- link.id = 'note-' + number
|
|
|
|
|
|
+ link.id = `note-${this.node.id}-${number}`
|
|
link.innerHTML = link.textContent
|
|
link.innerHTML = link.textContent
|
|
if (link.parentElement.nodeName === 'SUP') {
|
|
if (link.parentElement.nodeName === 'SUP') {
|
|
link.parentElement.replaceWith(link)
|
|
link.parentElement.replaceWith(link)
|
|
@@ -86,6 +88,19 @@ export default {
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
|
|
|
|
+ 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 () {
|
|
mountMedias () {
|
|
const template = document.getElementById('expand-image-tmp')
|
|
const template = document.getElementById('expand-image-tmp')
|
|
this.$el.querySelectorAll('.node-view-body-wrapper img').forEach(img => {
|
|
this.$el.querySelectorAll('.node-view-body-wrapper img').forEach(img => {
|
|
@@ -123,10 +138,10 @@ export default {
|
|
|
|
|
|
mounted () {
|
|
mounted () {
|
|
if (this.mode === 'view') {
|
|
if (this.mode === 'view') {
|
|
- if (this.node.notes) {
|
|
|
|
- this.addFootnotes()
|
|
|
|
- }
|
|
|
|
|
|
+ this.addFootnotes()
|
|
this.mountMedias()
|
|
this.mountMedias()
|
|
|
|
+ } else {
|
|
|
|
+ this.hideFootnotes()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -202,6 +217,10 @@ export default {
|
|
max-height: 1.4em;
|
|
max-height: 1.4em;
|
|
margin: 0 .2em;
|
|
margin: 0 .2em;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ &-card .footnote-link {
|
|
|
|
+ display: none;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
.footnote {
|
|
.footnote {
|