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

90 lines
2.5 KiB
Vue
Raw Normal View History

2017-08-17 22:00:37 +05:30
<script>
/**
* Render environments table.
*/
2019-02-15 15:39:39 +05:30
import { GlLoadingIcon } from '@gitlab/ui';
2019-05-30 16:15:17 +05:30
import environmentItem from './environment_item.vue';
2017-08-17 22:00:37 +05:30
export default {
components: {
2019-05-30 16:15:17 +05:30
environmentItem,
2018-12-13 13:39:08 +05:30
GlLoadingIcon,
2017-08-17 22:00:37 +05:30
},
2019-05-30 16:15:17 +05:30
2017-08-17 22:00:37 +05:30
props: {
environments: {
type: Array,
required: true,
2018-11-18 11:00:15 +05:30
default: () => [],
2017-08-17 22:00:37 +05:30
},
2019-05-30 16:15:17 +05:30
2017-08-17 22:00:37 +05:30
canReadEnvironment: {
type: Boolean,
required: false,
default: false,
},
},
methods: {
folderUrl(model) {
return `${window.location.pathname}/folders/${model.folderName}`;
},
2018-03-17 18:26:18 +05:30
shouldRenderFolderContent(env) {
2018-11-18 11:00:15 +05:30
return env.isFolder && env.isOpen && env.children && env.children.length > 0;
2018-03-17 18:26:18 +05:30
},
2017-08-17 22:00:37 +05:30
},
};
</script>
<template>
2019-02-15 15:39:39 +05:30
<div class="ci-table" role="grid">
<div class="gl-responsive-table-row table-row-header" role="row">
<div class="table-section section-15 environments-name" role="columnheader">
{{ s__('Environments|Environment') }}
2017-09-10 17:25:29 +05:30
</div>
2019-02-15 15:39:39 +05:30
<div class="table-section section-10 environments-deploy" role="columnheader">
{{ s__('Environments|Deployment') }}
2017-09-10 17:25:29 +05:30
</div>
2019-02-15 15:39:39 +05:30
<div class="table-section section-15 environments-build" role="columnheader">
{{ s__('Environments|Job') }}
2017-09-10 17:25:29 +05:30
</div>
2019-02-15 15:39:39 +05:30
<div class="table-section section-20 environments-commit" role="columnheader">
{{ s__('Environments|Commit') }}
2017-09-10 17:25:29 +05:30
</div>
2019-02-15 15:39:39 +05:30
<div class="table-section section-10 environments-date" role="columnheader">
{{ s__('Environments|Updated') }}
2017-09-10 17:25:29 +05:30
</div>
</div>
2019-05-30 16:15:17 +05:30
<template v-for="(model, i) in environments" :model="model">
2017-09-10 17:25:29 +05:30
<div
is="environment-item"
2018-12-05 23:21:45 +05:30
:key="`environment-item-${i}`"
2017-09-10 17:25:29 +05:30
:model="model"
:can-read-environment="canReadEnvironment"
2018-03-17 18:26:18 +05:30
/>
2017-08-17 22:00:37 +05:30
2019-02-15 15:39:39 +05:30
<template v-if="shouldRenderFolderContent(model)">
<div v-if="model.isLoadingFolderContent" :key="`loading-item-${i}`">
<gl-loading-icon :size="2" class="prepend-top-16" />
2017-09-10 17:25:29 +05:30
</div>
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
<template v-else>
<div
is="environment-item"
2018-03-17 18:26:18 +05:30
v-for="(children, index) in model.children"
2018-12-05 23:21:45 +05:30
:key="`env-item-${i}-${index}`"
2017-09-10 17:25:29 +05:30
:model="children"
:can-read-environment="canReadEnvironment"
2018-03-17 18:26:18 +05:30
/>
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
<div :key="`sub-div-${i}`">
2017-09-10 17:25:29 +05:30
<div class="text-center prepend-top-10">
2019-05-30 16:15:17 +05:30
<a :href="folderUrl(model)" class="btn btn-default">{{
s__('Environments|Show all')
}}</a>
2017-09-10 17:25:29 +05:30
</div>
</div>
2017-08-17 22:00:37 +05:30
</template>
</template>
2017-09-10 17:25:29 +05:30
</template>
</div>
2017-08-17 22:00:37 +05:30
</template>