TextCard.vue 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <template>
  2. <text-card-base v-bind="$attrs">
  3. <template v-slot:header-extra="{ text }">
  4. <nav class="nav-list ml-auto">
  5. <ul>
  6. <template v-if="children">
  7. <li v-for="child in text.children" :key="child.id">
  8. <dot-button
  9. @click="onChildOpen($event, text.id, child.id)"
  10. :active="children.includes(child.id)" :variant="child.variant"
  11. >
  12. {{ $t('variants.' + child.variant) }}
  13. </dot-button>
  14. </li>
  15. </template>
  16. <li>
  17. <b-button-close size="sm" @click="onSelfClose($event, text.id)" />
  18. </li>
  19. </ul>
  20. </nav>
  21. </template>
  22. <template v-slot:footer-extra="{ text, toCommaList }">
  23. <b-button
  24. v-if="text.siblings"
  25. :id="'siblings-' + text.id"
  26. size="sm"
  27. >
  28. {{ $t('siblings') }}
  29. </b-button>
  30. <b-popover
  31. v-if="text.siblings"
  32. :target="'siblings-' + text.id" triggers="hover" placement="top"
  33. >
  34. <div v-for="sibling in text.siblings" :key="sibling.id">
  35. <h6 @click="onSiblingOpen($event, sibling.id)" class="clickable">
  36. <span class="text-authors d-block">{{ toCommaList(sibling.authors) }},</span>
  37. <span class="text-title d-block">{{ sibling.title }},</span>
  38. <span class="text-edition d-block">{{ text.edition ? text.edition.name : text.edition }}</span>
  39. </h6>
  40. </div>
  41. </b-popover>
  42. </template>
  43. </text-card-base>
  44. </template>
  45. <script>
  46. import TextCardBase from './TextCardBase'
  47. export default {
  48. name: 'TextCard',
  49. components: {
  50. TextCardBase
  51. },
  52. props: {
  53. children: { type: Array, default: null }
  54. },
  55. methods: {
  56. onChildOpen (_, id, childId) {
  57. this.$emit('open', id, childId)
  58. },
  59. onSiblingOpen (_, id) {
  60. this.$emit('open', id)
  61. },
  62. onSelfClose (e, id) {
  63. // stop the click event propagation to avoid other listeners to interact with a soon to be deleted element.
  64. e.stopPropagation()
  65. this.$emit('close', id)
  66. }
  67. }
  68. }
  69. </script>
  70. <style lang="scss" scoped>
  71. </style>