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

mr_collapsible_extension.vue « components « vue_merge_request_widget « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ae1d9368008af1c58f677ceb8e6ba2fd74721435 (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
<script>
import { GlButton, GlLink, GlLoadingIcon } from '@gitlab/ui';
import { __ } from '~/locale';
import Icon from '~/vue_shared/components/icon.vue';

export default {
  components: {
    GlButton,
    GlLink,
    GlLoadingIcon,
    Icon,
  },
  props: {
    title: {
      type: String,
      required: true,
    },
    isLoading: {
      type: Boolean,
      required: false,
      default: false,
    },
    hasError: {
      type: Boolean,
      required: false,
      default: false,
    },
  },
  data() {
    return {
      isCollapsed: true,
    };
  },

  computed: {
    arrowIconName() {
      return this.isCollapsed ? 'angle-right' : 'angle-down';
    },
    ariaLabel() {
      return this.isCollapsed ? __('Expand') : __('Collapse');
    },
    isButtonDisabled() {
      return this.isLoading || this.hasError;
    },
  },
  methods: {
    toggleCollapsed() {
      this.isCollapsed = !this.isCollapsed;
    },
  },
};
</script>
<template>
  <div>
    <div class="mr-widget-extension d-flex align-items-center pl-3">
      <gl-button
        class="btn-blank btn s32 square append-right-default"
        :aria-label="ariaLabel"
        :disabled="isButtonDisabled"
        @click="toggleCollapsed"
      >
        <gl-loading-icon v-if="isLoading" />
        <icon v-else :name="arrowIconName" class="js-icon" />
      </gl-button>
      <gl-button
        variant="link"
        class="js-title"
        :disabled="isButtonDisabled"
        :class="{ 'border-0': isButtonDisabled }"
        @click="toggleCollapsed"
      >
        <template v-if="isCollapsed">{{ title }}</template>
        <template v-else>{{ __('Collapse') }}</template>
      </gl-button>
    </div>

    <div v-if="!isCollapsed" class="border-top js-slot-container">
      <slot></slot>
    </div>
  </div>
</template>