summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/members/components/app.vue
blob: 585fabdf3ff34d8bd4825467c1f00146eeba8270 (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
<script>
import { GlAlert } from '@gitlab/ui';
import { mapState, mapMutations } from 'vuex';
import { scrollToElement } from '~/lib/utils/common_utils';
import { HIDE_ERROR } from '../store/mutation_types';
import FilterSortContainer from './filter_sort/filter_sort_container.vue';
import MembersTable from './table/members_table.vue';

export default {
  name: 'MembersApp',
  components: { MembersTable, FilterSortContainer, GlAlert },
  inject: ['namespace'],
  computed: {
    ...mapState({
      showError(state) {
        return state[this.namespace].showError;
      },
      errorMessage(state) {
        return state[this.namespace].errorMessage;
      },
    }),
  },
  watch: {
    showError(value) {
      if (value) {
        this.$nextTick(() => {
          scrollToElement(this.$refs.errorAlert.$el);
        });
      }
    },
  },
  methods: {
    ...mapMutations({
      hideError(commit) {
        return commit(`${this.namespace}/${HIDE_ERROR}`);
      },
    }),
  },
};
</script>

<template>
  <div>
    <gl-alert v-if="showError" ref="errorAlert" variant="danger" @dismiss="hideError">{{
      errorMessage
    }}</gl-alert>
    <filter-sort-container />
    <members-table />
  </div>
</template>