summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipelines/components/pipelines_filtered_search.vue
blob: 8f9c3eb70a2eeb9bb633533b72ea030558b922f4 (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
<script>
import { GlFilteredSearch } from '@gitlab/ui';
import { __, s__ } from '~/locale';
import PipelineTriggerAuthorToken from './tokens/pipeline_trigger_author_token.vue';
import PipelineBranchNameToken from './tokens/pipeline_branch_name_token.vue';
import Api from '~/api';
import createFlash from '~/flash';
import { FETCH_AUTHOR_ERROR_MESSAGE, FETCH_BRANCH_ERROR_MESSAGE } from '../constants';

export default {
  components: {
    GlFilteredSearch,
  },
  props: {
    pipelines: {
      type: Array,
      required: true,
    },
    projectId: {
      type: String,
      required: true,
    },
  },
  data() {
    return {
      projectUsers: null,
      projectBranches: null,
    };
  },
  computed: {
    tokens() {
      return [
        {
          type: 'username',
          icon: 'user',
          title: s__('Pipeline|Trigger author'),
          unique: true,
          token: PipelineTriggerAuthorToken,
          operators: [{ value: '=', description: __('is'), default: 'true' }],
          triggerAuthors: this.projectUsers,
          projectId: this.projectId,
        },
        {
          type: 'ref',
          icon: 'branch',
          title: s__('Pipeline|Branch name'),
          unique: true,
          token: PipelineBranchNameToken,
          operators: [{ value: '=', description: __('is'), default: 'true' }],
          branches: this.projectBranches,
          projectId: this.projectId,
        },
      ];
    },
  },
  created() {
    Api.projectUsers(this.projectId)
      .then(users => {
        this.projectUsers = users;
      })
      .catch(err => {
        createFlash(FETCH_AUTHOR_ERROR_MESSAGE);
        throw err;
      });

    Api.branches(this.projectId)
      .then(({ data }) => {
        this.projectBranches = data.map(branch => branch.name);
      })
      .catch(err => {
        createFlash(FETCH_BRANCH_ERROR_MESSAGE);
        throw err;
      });
  },
  methods: {
    onSubmit(filters) {
      this.$emit('filterPipelines', filters);
    },
  },
};
</script>

<template>
  <div class="row-content-block">
    <gl-filtered-search
      :placeholder="__('Filter pipelines')"
      :available-tokens="tokens"
      @submit="onSubmit"
    />
  </div>
</template>