Welcome to mirror list, hosted at ThFree Co, Russian Federation.

work_item_assignees.vue « components « work_items « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d1c171772e97393e26b426e7903daee29d156f5 (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<script>
import { GlTokenSelector, GlIcon, GlAvatar, GlLink } from '@gitlab/ui';
import { getIdFromGraphQLId } from '~/graphql_shared/utils';
import localUpdateWorkItemMutation from '../graphql/local_update_work_item.mutation.graphql';

function isClosingIcon(el) {
  return el?.classList.contains('gl-token-close');
}

export default {
  components: {
    GlTokenSelector,
    GlIcon,
    GlAvatar,
    GlLink,
  },
  props: {
    workItemId: {
      type: String,
      required: true,
    },
    assignees: {
      type: Array,
      required: true,
    },
  },
  data() {
    return {
      isEditing: false,
      localAssignees: this.assignees.map((assignee) => ({
        ...assignee,
        class: 'gl-bg-transparent!',
      })),
    };
  },
  computed: {
    assigneeIds() {
      return this.localAssignees.map((assignee) => assignee.id);
    },
    assigneeListEmpty() {
      return this.assignees.length === 0;
    },
    containerClass() {
      return !this.isEditing ? 'gl-shadow-none! gl-bg-transparent!' : '';
    },
  },
  methods: {
    getUserId(id) {
      return getIdFromGraphQLId(id);
    },
    setAssignees(e) {
      if (isClosingIcon(e.relatedTarget) || !this.isEditing) return;
      this.isEditing = false;
      this.$apollo.mutate({
        mutation: localUpdateWorkItemMutation,
        variables: {
          input: {
            id: this.workItemId,
            assigneeIds: this.assigneeIds,
          },
        },
      });
    },
    async focusTokenSelector() {
      this.isEditing = true;
      await this.$nextTick();
      this.$refs.tokenSelector.focusTextInput();
    },
  },
};
</script>

<template>
  <div class="gl-display-flex gl-mb-4 work-item-assignees gl-relative">
    <span class="gl-font-weight-bold gl-w-15 gl-pt-2" data-testid="assignees-title">{{
      __('Assignee(s)')
    }}</span>
    <gl-token-selector
      ref="tokenSelector"
      v-model="localAssignees"
      hide-dropdown-with-no-items
      :container-class="containerClass"
      class="gl-w-full gl-border gl-border-white gl-hover-border-gray-200 gl-rounded-base"
      @token-remove="focusTokenSelector"
      @focus="isEditing = true"
      @blur="setAssignees"
    >
      <template #empty-placeholder>
        <div
          class="add-assignees gl-min-w-fit-content gl-display-flex gl-align-items-center gl-text-gray-300 gl-pr-4 gl-top-2"
          data-testid="empty-state"
        >
          <gl-icon name="profile" />
          <span class="gl-ml-2">{{ __('Add assignees') }}</span>
        </div>
      </template>
      <template #token-content="{ token }">
        <gl-link
          :href="token.webUrl"
          :title="token.name"
          :data-user-id="getUserId(token.id)"
          data-placement="top"
          class="gl-text-decoration-none! gl-text-body! gl-display-flex gl-md-display-inline-flex! gl-align-items-center js-user-link"
        >
          <gl-avatar :size="24" :src="token.avatarUrl" />
          <span class="gl-pl-2">{{ token.name }}</span>
        </gl-link>
      </template>
    </gl-token-selector>
  </div>
</template>