102 lines
2.6 KiB
Vue
102 lines
2.6 KiB
Vue
<script>
|
|
import { GlButton, GlCollapse, GlIcon, GlBadge, GlLink } from '@gitlab/ui';
|
|
import { __, s__ } from '~/locale';
|
|
import folderQuery from '../graphql/queries/folder.query.graphql';
|
|
import EnvironmentItem from './new_environment_item.vue';
|
|
|
|
export default {
|
|
components: {
|
|
EnvironmentItem,
|
|
GlButton,
|
|
GlCollapse,
|
|
GlIcon,
|
|
GlBadge,
|
|
GlLink,
|
|
},
|
|
props: {
|
|
nestedEnvironment: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
data() {
|
|
return { visible: false };
|
|
},
|
|
apollo: {
|
|
folder: {
|
|
query: folderQuery,
|
|
variables() {
|
|
return { environment: this.nestedEnvironment.latest };
|
|
},
|
|
},
|
|
},
|
|
i18n: {
|
|
collapse: __('Collapse'),
|
|
expand: __('Expand'),
|
|
link: s__('Environments|Show all'),
|
|
},
|
|
computed: {
|
|
icons() {
|
|
return this.visible
|
|
? { caret: 'angle-down', folder: 'folder-open' }
|
|
: { caret: 'angle-right', folder: 'folder-o' };
|
|
},
|
|
label() {
|
|
return this.visible ? this.$options.i18n.collapse : this.$options.i18n.expand;
|
|
},
|
|
count() {
|
|
return this.folder?.availableCount ?? 0;
|
|
},
|
|
folderClass() {
|
|
return { 'gl-font-weight-bold': this.visible };
|
|
},
|
|
folderPath() {
|
|
return this.nestedEnvironment.latest.folderPath;
|
|
},
|
|
environments() {
|
|
return this.folder?.environments;
|
|
},
|
|
},
|
|
methods: {
|
|
toggleCollapse() {
|
|
this.visible = !this.visible;
|
|
},
|
|
isFirstEnvironment(index) {
|
|
return index === 0;
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<template>
|
|
<div
|
|
:class="{ 'gl-pb-5': !visible }"
|
|
class="gl-border-b-solid gl-border-gray-100 gl-border-1 gl-pt-3"
|
|
>
|
|
<div class="gl-w-full gl-display-flex gl-align-items-center gl-px-3">
|
|
<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"
|
|
/>
|
|
<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>
|
|
<gl-link v-if="visible" :href="folderPath">{{ $options.i18n.link }}</gl-link>
|
|
</div>
|
|
<gl-collapse :visible="visible">
|
|
<environment-item
|
|
v-for="(environment, index) in environments"
|
|
:key="environment.name"
|
|
:environment="environment"
|
|
:class="{ 'gl-mt-5': isFirstEnvironment(index) }"
|
|
class="gl-border-gray-100 gl-border-t-solid gl-border-1 gl-pt-3"
|
|
in-folder
|
|
/>
|
|
</gl-collapse>
|
|
</div>
|
|
</template>
|