Commit 82fa2525 authored by Sarah Groff Hennigh-Palermo's avatar Sarah Groff Hennigh-Palermo Committed by Fatih Acet

Refactor environment table titles and spacing

parent 31911630
...@@ -43,16 +43,21 @@ export default { ...@@ -43,16 +43,21 @@ export default {
mixins: [environmentItemMixin], mixins: [environmentItemMixin],
props: { props: {
canReadEnvironment: {
type: Boolean,
required: false,
default: false,
},
model: { model: {
type: Object, type: Object,
required: true, required: true,
default: () => ({}), default: () => ({}),
}, },
canReadEnvironment: { tableData: {
type: Boolean, type: Object,
required: false, required: true,
default: false,
}, },
}, },
...@@ -447,9 +452,13 @@ export default { ...@@ -447,9 +452,13 @@ export default {
class="gl-responsive-table-row" class="gl-responsive-table-row"
role="row" role="row"
> >
<div class="table-section section-wrap section-15 text-truncate" role="gridcell"> <div
class="table-section section-wrap text-truncate"
:class="tableData.name.spacing"
role="gridcell"
>
<div v-if="!model.isFolder" class="table-mobile-header" role="rowheader"> <div v-if="!model.isFolder" class="table-mobile-header" role="rowheader">
{{ s__('Environments|Environment') }} {{ tableData.name.title }}
</div> </div>
<span v-if="shouldRenderDeployBoard" class="deploy-board-icon" @click="toggleDeployBoard"> <span v-if="shouldRenderDeployBoard" class="deploy-board-icon" @click="toggleDeployBoard">
...@@ -489,7 +498,8 @@ export default { ...@@ -489,7 +498,8 @@ export default {
</div> </div>
<div <div
class="table-section section-10 deployment-column d-none d-sm-none d-md-block" class="table-section deployment-column d-none d-sm-none d-md-block"
:class="tableData.deploy.spacing"
role="gridcell" role="gridcell"
> >
<span v-if="shouldRenderDeploymentID" class="text-break-word"> <span v-if="shouldRenderDeploymentID" class="text-break-word">
...@@ -508,7 +518,11 @@ export default { ...@@ -508,7 +518,11 @@ export default {
</span> </span>
</div> </div>
<div class="table-section section-15 d-none d-sm-none d-md-block" role="gridcell"> <div
class="table-section d-none d-sm-none d-md-block"
:class="tableData.build.spacing"
role="gridcell"
>
<a v-if="shouldRenderBuildName" :href="buildPath" class="build-link cgray"> <a v-if="shouldRenderBuildName" :href="buildPath" class="build-link cgray">
<tooltip-on-truncate <tooltip-on-truncate
:title="buildName" :title="buildName"
...@@ -522,8 +536,14 @@ export default { ...@@ -522,8 +536,14 @@ export default {
</a> </a>
</div> </div>
<div v-if="!model.isFolder" class="table-section section-20" role="gridcell"> <div
<div role="rowheader" class="table-mobile-header">{{ s__('Environments|Commit') }}</div> v-if="!model.isFolder"
class="table-section"
:class="tableData.commit.spacing"
role="gridcell"
>
<div role="rowheader" class="table-mobile-header">{{ tableData.commit.title }}</div>
<div v-if="hasLastDeploymentKey" class="js-commit-component table-mobile-content"> <div v-if="hasLastDeploymentKey" class="js-commit-component table-mobile-content">
<commit-component <commit-component
:tag="commitTag" :tag="commitTag"
...@@ -539,8 +559,14 @@ export default { ...@@ -539,8 +559,14 @@ export default {
</div> </div>
</div> </div>
<div v-if="!model.isFolder" class="table-section section-10" role="gridcell"> <div
<div role="rowheader" class="table-mobile-header">{{ s__('Environments|Updated') }}</div> v-if="!model.isFolder"
class="table-section"
:class="tableData.date.spacing"
role="gridcell"
>
<div role="rowheader" class="table-mobile-header">{{ tableData.date.title }}</div>
<span v-if="canShowDate" class="environment-created-date-timeago table-mobile-content"> <span v-if="canShowDate" class="environment-created-date-timeago table-mobile-content">
{{ deployedDate }} {{ deployedDate }}
</span> </span>
...@@ -548,7 +574,8 @@ export default { ...@@ -548,7 +574,8 @@ export default {
<div <div
v-if="!model.isFolder && displayEnvironmentActions" v-if="!model.isFolder && displayEnvironmentActions"
class="table-section section-30 table-button-footer" class="table-section table-button-footer"
:class="tableData.actions.spacing"
role="gridcell" role="gridcell"
> >
<div class="btn-group table-action-buttons" role="group"> <div class="btn-group table-action-buttons" role="group">
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
*/ */
import { GlLoadingIcon } from '@gitlab/ui'; import { GlLoadingIcon } from '@gitlab/ui';
import _ from 'underscore'; import _ from 'underscore';
import { s__ } from '~/locale';
import environmentTableMixin from 'ee_else_ce/environments/mixins/environments_table_mixin'; import environmentTableMixin from 'ee_else_ce/environments/mixins/environments_table_mixin';
import EnvironmentItem from './environment_item.vue'; import EnvironmentItem from './environment_item.vue';
...@@ -41,6 +42,34 @@ export default { ...@@ -41,6 +42,34 @@ export default {
: env, : env,
); );
}, },
tableData() {
return {
// percent spacing for cols, should add up to 100
name: {
title: s__('Environments|Environment'),
spacing: 'section-15',
},
deploy: {
title: s__('Environments|Deployment'),
spacing: 'section-10',
},
build: {
title: s__('Environments|Job'),
spacing: 'section-15',
},
commit: {
title: s__('Environments|Commit'),
spacing: 'section-20',
},
date: {
title: s__('Environments|Updated'),
spacing: 'section-10',
},
actions: {
spacing: 'section-30',
},
};
},
}, },
methods: { methods: {
folderUrl(model) { folderUrl(model) {
...@@ -79,20 +108,20 @@ export default { ...@@ -79,20 +108,20 @@ export default {
<template> <template>
<div class="ci-table" role="grid"> <div class="ci-table" role="grid">
<div class="gl-responsive-table-row table-row-header" role="row"> <div class="gl-responsive-table-row table-row-header" role="row">
<div class="table-section section-15 environments-name" role="columnheader"> <div class="table-section" :class="tableData.name.spacing" role="columnheader">
{{ s__('Environments|Environment') }} {{ tableData.name.title }}
</div> </div>
<div class="table-section section-10 environments-deploy" role="columnheader"> <div class="table-section" :class="tableData.deploy.spacing" role="columnheader">
{{ s__('Environments|Deployment') }} {{ tableData.deploy.title }}
</div> </div>
<div class="table-section section-15 environments-build" role="columnheader"> <div class="table-section" :class="tableData.build.spacing" role="columnheader">
{{ s__('Environments|Job') }} {{ tableData.build.title }}
</div> </div>
<div class="table-section section-20 environments-commit" role="columnheader"> <div class="table-section" :class="tableData.commit.spacing" role="columnheader">
{{ s__('Environments|Commit') }} {{ tableData.commit.title }}
</div> </div>
<div class="table-section section-10 environments-date" role="columnheader"> <div class="table-section" :class="tableData.date.spacing" role="columnheader">
{{ s__('Environments|Updated') }} {{ tableData.date.title }}
</div> </div>
</div> </div>
<template v-for="(model, i) in sortedEnvironments" :model="model"> <template v-for="(model, i) in sortedEnvironments" :model="model">
...@@ -101,6 +130,7 @@ export default { ...@@ -101,6 +130,7 @@ export default {
:key="`environment-item-${i}`" :key="`environment-item-${i}`"
:model="model" :model="model"
:can-read-environment="canReadEnvironment" :can-read-environment="canReadEnvironment"
:table-data="tableData"
/> />
<div <div
...@@ -132,6 +162,7 @@ export default { ...@@ -132,6 +162,7 @@ export default {
:key="`env-item-${i}-${index}`" :key="`env-item-${i}-${index}`"
:model="children" :model="children"
:can-read-environment="canReadEnvironment" :can-read-environment="canReadEnvironment"
:table-data="tableData"
/> />
<div :key="`sub-div-${i}`"> <div :key="`sub-div-${i}`">
......
...@@ -2,6 +2,32 @@ import { format } from 'timeago.js'; ...@@ -2,6 +2,32 @@ import { format } from 'timeago.js';
import Vue from 'vue'; import Vue from 'vue';
import environmentItemComp from '~/environments/components/environment_item.vue'; import environmentItemComp from '~/environments/components/environment_item.vue';
const tableData = {
name: {
title: 'Environment',
spacing: 'section-15',
},
deploy: {
title: 'Deployment',
spacing: 'section-10',
},
build: {
title: 'Job',
spacing: 'section-15',
},
commit: {
title: 'Commit',
spacing: 'section-20',
},
date: {
title: 'Updated',
spacing: 'section-10',
},
actions: {
spacing: 'section-25',
},
};
describe('Environment item', () => { describe('Environment item', () => {
let EnvironmentItem; let EnvironmentItem;
...@@ -27,6 +53,7 @@ describe('Environment item', () => { ...@@ -27,6 +53,7 @@ describe('Environment item', () => {
propsData: { propsData: {
model: mockItem, model: mockItem,
canReadEnvironment: true, canReadEnvironment: true,
tableData,
}, },
}).$mount(); }).$mount();
}); });
...@@ -119,6 +146,7 @@ describe('Environment item', () => { ...@@ -119,6 +146,7 @@ describe('Environment item', () => {
propsData: { propsData: {
model: environment, model: environment,
canReadEnvironment: true, canReadEnvironment: true,
tableData,
}, },
}).$mount(); }).$mount();
}); });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment