summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/notes/placeholder_note.vue
blob: eccba61a8c07eea0d899ad9683519ca36f7e85cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<script>
  /**
   * Common component to render a placeholder note and user information.
   *
   * This component needs to be used with a vuex store.
   * That vuex store needs to have a `getUserData` getter that contains
   * {
   *   path: String,
   *   avatar_url: String,
   *   name: String,
   *   username: String,
   * }
   *
   * @example
   * <placeholder-note
   *   :note="{body: 'This is a note'}"
   *   />
   */
  import { mapGetters } from 'vuex';
  import userAvatarLink from '../user_avatar/user_avatar_link.vue';

  export default {
    name: 'PlaceholderNote',
    components: {
      userAvatarLink,
    },
    props: {
      note: {
        type: Object,
        required: true,
      },
    },
    computed: {
      ...mapGetters([
        'getUserData',
      ]),
    },
  };
</script>

<template>
  <li class="note being-posted fade-in-half timeline-entry">
    <div class="timeline-entry-inner">
      <div class="timeline-icon">
        <user-avatar-link
          :link-href="getUserData.path"
          :img-src="getUserData.avatar_url"
          :img-size="40"
        />
      </div>
      <div
        :class="{ discussion: !note.individual_note }"
        class="timeline-content">
        <div class="note-header">
          <div class="note-header-info">
            <a :href="getUserData.path">
              <span class="d-none d-sm-block">{{ getUserData.name }}</span>
              <span class="note-headline-light">@{{ getUserData.username }}</span>
            </a>
          </div>
        </div>
        <div class="note-body">
          <div class="note-text">
            <p>{{ note.body }}</p>
          </div>
        </div>
      </div>
    </div>
  </li>
</template>