NodeViewTitle.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <template>
  2. <component
  3. :is="tag"
  4. class="node-view-title"
  5. :class="{ block }"
  6. >
  7. <component
  8. :is="link ? 'a' : 'div'"
  9. @click="onTitleClick(node)"
  10. class="node-view-title-container"
  11. >
  12. <slot name="default" />
  13. <span><strong>{{ toCommaList(node.authors) }}</strong>,</span>
  14. <span>
  15. <span v-if="node.preTitle" v-html="' ' + trim(node.preTitle) + ','" />
  16. <em v-html="' ' + trim(node.italTitle || node.title) || 'pas de titre ital'" />
  17. <span v-if="(edition && node.edition) || (!noDate && node.date)">, </span>
  18. </span>
  19. <span v-if="!noDate && node.date" class="edition">
  20. {{ node.date.start }}
  21. </span>
  22. <div v-if="edition && node.edition" class="edition">
  23. {{ node.edition.map(ed => ed.name).join(' ') }}
  24. </div>
  25. </component>
  26. </component>
  27. </template>
  28. <script>
  29. import { trim, toCommaList } from '@/helpers/common'
  30. export default {
  31. name: 'NodeViewTitle',
  32. props: {
  33. node: { type: Object, required: true },
  34. tag: { type: String, default: 'h6' },
  35. link: { type: Boolean, default: false },
  36. block: { type: Boolean, default: false },
  37. edition: { type: Boolean, default: false },
  38. noDate: { type: Boolean, default: false }
  39. },
  40. data () {
  41. return {
  42. }
  43. },
  44. methods: {
  45. trim,
  46. toCommaList,
  47. onTitleClick (node) {
  48. if (this.link) {
  49. this.$emit('open-node')
  50. }
  51. }
  52. }
  53. }
  54. </script>
  55. <style lang="scss" scoped>
  56. .node-view-title {
  57. font-weight: $font-weight-normal;
  58. a {
  59. text-decoration: none;
  60. cursor: pointer;
  61. }
  62. &.block &-container {
  63. > * {
  64. display: block;
  65. }
  66. }
  67. }
  68. </style>