debian-mirror-gitlab/app/assets/javascripts/environments/components/new_environment_folder.vue

83 lines
2.1 KiB
Vue
Raw Normal View History

2021-12-11 22:18:48 +05:30
<script>
2022-01-26 12:08:38 +05:30
import { GlButton, GlCollapse, GlIcon, GlBadge, GlLink } from '@gitlab/ui';
import { __, s__ } from '~/locale';
2021-12-11 22:18:48 +05:30
import folderQuery from '../graphql/queries/folder.query.graphql';
export default {
components: {
2022-01-26 12:08:38 +05:30
GlButton,
2021-12-11 22:18:48 +05:30
GlCollapse,
GlIcon,
GlBadge,
GlLink,
},
props: {
nestedEnvironment: {
type: Object,
required: true,
},
},
data() {
return { visible: false };
},
apollo: {
folder: {
query: folderQuery,
variables() {
return { environment: this.nestedEnvironment.latest };
},
},
},
2022-01-26 12:08:38 +05:30
i18n: {
collapse: __('Collapse'),
expand: __('Expand'),
link: s__('Environments|Show all'),
},
2021-12-11 22:18:48 +05:30
computed: {
icons() {
return this.visible
? { caret: 'angle-down', folder: 'folder-open' }
: { caret: 'angle-right', folder: 'folder-o' };
},
2022-01-26 12:08:38 +05:30
label() {
return this.visible ? this.$options.i18n.collapse : this.$options.i18n.expand;
},
2021-12-11 22:18:48 +05:30
count() {
return this.folder?.availableCount ?? 0;
},
folderClass() {
return { 'gl-font-weight-bold': this.visible };
},
folderPath() {
return this.nestedEnvironment.latest.folderPath;
},
},
methods: {
toggleCollapse() {
this.visible = !this.visible;
},
},
};
</script>
<template>
<div class="gl-border-b-solid gl-border-gray-100 gl-border-1 gl-px-3 gl-pt-3 gl-pb-5">
2022-01-26 12:08:38 +05:30
<div class="gl-w-full gl-display-flex gl-align-items-center">
<gl-button
class="gl-mr-4 gl-fill-current-color gl-text-gray-500"
:aria-label="label"
:icon="icons.caret"
size="small"
category="tertiary"
@click="toggleCollapse"
2021-12-11 22:18:48 +05:30
/>
<gl-icon class="gl-mr-2 gl-fill-current-color gl-text-gray-500" :name="icons.folder" />
<div class="gl-mr-2 gl-text-gray-500" :class="folderClass">
{{ nestedEnvironment.name }}
</div>
<gl-badge size="sm" class="gl-mr-auto">{{ count }}</gl-badge>
2022-01-26 12:08:38 +05:30
<gl-link v-if="visible" :href="folderPath">{{ $options.i18n.link }}</gl-link>
2021-12-11 22:18:48 +05:30
</div>
<gl-collapse :visible="visible" />
</div>
</template>