summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/project_selector/project_list_item.vue
blob: a51b2a3ab6df8c2486e371c3005cb361d29f8e52 (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
71
72
73
74
<script>
import { GlButton } from '@gitlab/ui';
import { isString } from 'lodash';
import Icon from '~/vue_shared/components/icon.vue';
import ProjectAvatar from '~/vue_shared/components/project_avatar/default.vue';
import highlight from '~/lib/utils/highlight';
import { truncateNamespace } from '~/lib/utils/text_utility';

export default {
  name: 'ProjectListItem',
  components: {
    Icon,
    ProjectAvatar,
    GlButton,
  },
  props: {
    project: {
      type: Object,
      required: true,
      validator: p => Number.isFinite(p.id) && isString(p.name) && isString(p.name_with_namespace),
    },
    selected: {
      type: Boolean,
      required: true,
    },
    matcher: {
      type: String,
      required: false,
      default: '',
    },
  },
  computed: {
    truncatedNamespace() {
      return truncateNamespace(this.project.name_with_namespace);
    },
    highlightedProjectName() {
      return highlight(this.project.name, this.matcher);
    },
  },
  methods: {
    onClick() {
      this.$emit('click');
    },
  },
};
</script>
<template>
  <gl-button
    class="d-flex align-items-center btn pt-1 pb-1 border-0 project-list-item"
    @click="onClick"
  >
    <icon
      class="prepend-left-10 append-right-10 flex-shrink-0 position-top-0 js-selected-icon"
      :class="{ 'js-selected visible': selected, 'js-unselected invisible': !selected }"
      name="mobile-issue-close"
    />
    <project-avatar class="flex-shrink-0 js-project-avatar" :project="project" :size="32" />
    <div class="d-flex flex-wrap project-namespace-name-container">
      <div
        v-if="truncatedNamespace"
        :title="project.name_with_namespace"
        class="text-secondary text-truncate js-project-namespace"
      >
        {{ truncatedNamespace }}
        <span v-if="truncatedNamespace" class="text-secondary">/&nbsp;</span>
      </div>
      <div
        :title="project.name"
        class="js-project-name text-truncate"
        v-html="highlightedProjectName"
      ></div>
    </div>
  </gl-button>
</template>