2017-08-17 22:00:37 +05:30
|
|
|
<script>
|
2019-07-07 11:18:12 +05:30
|
|
|
import folderMixin from 'ee_else_ce/environments/mixins/environments_folder_view_mixin';
|
2018-12-13 13:39:08 +05:30
|
|
|
import environmentsMixin from '../mixins/environments_mixin';
|
|
|
|
import CIPaginationMixin from '../../vue_shared/mixins/ci_pagination_api_mixin';
|
|
|
|
import StopEnvironmentModal from '../components/stop_environment_modal.vue';
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
StopEnvironmentModal,
|
|
|
|
},
|
2018-11-18 11:00:15 +05:30
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
mixins: [environmentsMixin, CIPaginationMixin, folderMixin],
|
2018-11-18 11:00:15 +05:30
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
props: {
|
|
|
|
endpoint: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
folderName: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
cssContainerClass: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
canReadEnvironment: {
|
|
|
|
type: Boolean,
|
|
|
|
required: true,
|
2017-09-10 17:25:29 +05:30
|
|
|
},
|
2018-12-13 13:39:08 +05:30
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
successCallback(resp) {
|
|
|
|
this.saveData(resp);
|
2017-09-10 17:25:29 +05:30
|
|
|
},
|
2018-12-13 13:39:08 +05:30
|
|
|
},
|
|
|
|
};
|
2017-08-17 22:00:37 +05:30
|
|
|
</script>
|
|
|
|
<template>
|
|
|
|
<div :class="cssContainerClass">
|
2018-11-18 11:00:15 +05:30
|
|
|
<stop-environment-modal :environment="environmentInStopModal" />
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
<h4 class="js-folder-name environments-folder-name">
|
|
|
|
{{ s__('Environments|Environments') }} /
|
|
|
|
<b>{{ folderName }}</b>
|
|
|
|
</h4>
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
<div class="top-area">
|
|
|
|
<tabs v-if="!isLoading" :tabs="tabs" scope="environments" @onChangeTab="onChangeTab" />
|
2017-08-17 22:00:37 +05:30
|
|
|
</div>
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
<container
|
|
|
|
:is-loading="isLoading"
|
|
|
|
:environments="state.environments"
|
|
|
|
:pagination="state.paginationInformation"
|
|
|
|
:can-read-environment="canReadEnvironment"
|
2019-07-07 11:18:12 +05:30
|
|
|
:canary-deployment-feature-id="canaryDeploymentFeatureId"
|
|
|
|
:show-canary-deployment-callout="showCanaryDeploymentCallout"
|
|
|
|
:user-callouts-path="userCalloutsPath"
|
|
|
|
:lock-promotion-svg-path="lockPromotionSvgPath"
|
|
|
|
:help-canary-deployments-path="helpCanaryDeploymentsPath"
|
2018-03-17 18:26:18 +05:30
|
|
|
@onChangePage="onChangePage"
|
|
|
|
/>
|
2017-08-17 22:00:37 +05:30
|
|
|
</div>
|
|
|
|
</template>
|