Commit 3aeef74f authored by Clement Ho's avatar Clement Ho

Merge branch '216065-Hide-fields-not-implemented-on-BE-side' into 'master'

Hide not implemented on BE side fields from list view

See merge request gitlab-org/gitlab!31489
parents e81e51d5 f78ba962
...@@ -5,7 +5,6 @@ import { ...@@ -5,7 +5,6 @@ import {
GlLoadingIcon, GlLoadingIcon,
GlTable, GlTable,
GlAlert, GlAlert,
GlIcon,
GlNewDropdown, GlNewDropdown,
GlNewDropdownItem, GlNewDropdownItem,
GlTabs, GlTabs,
...@@ -15,7 +14,7 @@ import { ...@@ -15,7 +14,7 @@ import {
import { s__ } from '~/locale'; import { s__ } from '~/locale';
import TimeAgo from '~/vue_shared/components/time_ago_tooltip.vue'; import TimeAgo from '~/vue_shared/components/time_ago_tooltip.vue';
import getAlerts from '../graphql/queries/getAlerts.query.graphql'; import getAlerts from '../graphql/queries/getAlerts.query.graphql';
import { ALERTS_STATUS, ALERTS_STATUS_TABS, ALERTS_SEVERITY_LABELS } from '../constants'; import { ALERTS_STATUS, ALERTS_STATUS_TABS } from '../constants';
import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin'; import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
const tdClass = 'table-col d-flex d-md-table-cell align-items-center'; const tdClass = 'table-col d-flex d-md-table-cell align-items-center';
...@@ -30,11 +29,6 @@ export default { ...@@ -30,11 +29,6 @@ export default {
), ),
}, },
fields: [ fields: [
{
key: 'severity',
label: s__('AlertManagement|Severity'),
tdClass: `${tdClass} rounded-top text-capitalize`,
},
{ {
key: 'startedAt', key: 'startedAt',
label: s__('AlertManagement|Start time'), label: s__('AlertManagement|Start time'),
...@@ -68,7 +62,6 @@ export default { ...@@ -68,7 +62,6 @@ export default {
[ALERTS_STATUS.ACKNOWLEDGED]: s__('AlertManagement|Acknowledged'), [ALERTS_STATUS.ACKNOWLEDGED]: s__('AlertManagement|Acknowledged'),
[ALERTS_STATUS.RESOLVED]: s__('AlertManagement|Resolved'), [ALERTS_STATUS.RESOLVED]: s__('AlertManagement|Resolved'),
}, },
severityLabels: ALERTS_SEVERITY_LABELS,
statusTabs: ALERTS_STATUS_TABS, statusTabs: ALERTS_STATUS_TABS,
components: { components: {
GlEmptyState, GlEmptyState,
...@@ -79,7 +72,6 @@ export default { ...@@ -79,7 +72,6 @@ export default {
TimeAgo, TimeAgo,
GlNewDropdown, GlNewDropdown,
GlNewDropdownItem, GlNewDropdownItem,
GlIcon,
GlTabs, GlTabs,
GlTab, GlTab,
GlBadge, GlBadge,
...@@ -185,21 +177,6 @@ export default { ...@@ -185,21 +177,6 @@ export default {
fixed fixed
stacked="md" stacked="md"
> >
<template #cell(severity)="{ item }">
<div
class="d-inline-flex align-items-center justify-content-between"
data-testid="severityField"
>
<gl-icon
class="mr-2"
:size="12"
:name="`severity-${item.severity.toLowerCase()}`"
:class="`icon-${item.severity.toLowerCase()}`"
/>
{{ $options.severityLabels[item.severity] }}
</div>
</template>
<template #cell(startedAt)="{ item }"> <template #cell(startedAt)="{ item }">
<time-ago v-if="item.startedAt" :time="item.startedAt" /> <time-ago v-if="item.startedAt" :time="item.startedAt" />
</template> </template>
...@@ -213,7 +190,7 @@ export default { ...@@ -213,7 +190,7 @@ export default {
</template> </template>
<template #cell(status)="{ item }"> <template #cell(status)="{ item }">
<gl-new-dropdown class="w-100" :text="item.status"> <gl-new-dropdown :text="item.status">
<gl-new-dropdown-item v-for="(label, field) in $options.statuses" :key="field"> <gl-new-dropdown-item v-for="(label, field) in $options.statuses" :key="field">
{{ label }} {{ label }}
</gl-new-dropdown-item> </gl-new-dropdown-item>
......
...@@ -1774,9 +1774,6 @@ msgstr "" ...@@ -1774,9 +1774,6 @@ msgstr ""
msgid "AlertManagement|Resolved" msgid "AlertManagement|Resolved"
msgstr "" msgstr ""
msgid "AlertManagement|Severity"
msgstr ""
msgid "AlertManagement|Start time" msgid "AlertManagement|Start time"
msgstr "" msgstr ""
......
...@@ -6,7 +6,6 @@ import { ...@@ -6,7 +6,6 @@ import {
GlLoadingIcon, GlLoadingIcon,
GlNewDropdown, GlNewDropdown,
GlBadge, GlBadge,
GlIcon,
GlTab, GlTab,
} from '@gitlab/ui'; } from '@gitlab/ui';
import TimeAgo from '~/vue_shared/components/time_ago_tooltip.vue'; import TimeAgo from '~/vue_shared/components/time_ago_tooltip.vue';
...@@ -26,7 +25,6 @@ describe('AlertManagementList', () => { ...@@ -26,7 +25,6 @@ describe('AlertManagementList', () => {
const findStatusFilterTabs = () => wrapper.findAll(GlTab); const findStatusFilterTabs = () => wrapper.findAll(GlTab);
const findNumberOfAlertsBadge = () => wrapper.findAll(GlBadge); const findNumberOfAlertsBadge = () => wrapper.findAll(GlBadge);
const findDateFields = () => wrapper.findAll(TimeAgo); const findDateFields = () => wrapper.findAll(TimeAgo);
const findSeverityFields = () => wrapper.findAll('[data-testid="severityField"]');
function mountComponent({ function mountComponent({
props = { props = {
...@@ -185,37 +183,6 @@ describe('AlertManagementList', () => { ...@@ -185,37 +183,6 @@ describe('AlertManagementList', () => {
expect(findStatusDropdown().exists()).toBe(true); expect(findStatusDropdown().exists()).toBe(true);
}); });
it('shows correct severity icons', () => {
mountComponent({
props: { alertManagementEnabled: true, userCanEnableAlertManagement: true },
data: { alerts: mockAlerts, errored: false },
loading: false,
});
return wrapper.vm.$nextTick().then(() => {
expect(wrapper.find(GlTable).exists()).toBe(true);
expect(
findAlertsTable()
.find(GlIcon)
.classes('icon-critical'),
).toBe(true);
});
});
it('Internationalizes severity text', () => {
mountComponent({
props: { alertManagementEnabled: true, userCanEnableAlertManagement: true },
data: { alerts: mockAlerts, errored: false },
loading: false,
});
expect(
findSeverityFields()
.at(0)
.text(),
).toBe('Critical');
});
describe('handle date fields', () => { describe('handle date fields', () => {
it('should display time ago dates when values provided', () => { it('should display time ago dates when values provided', () => {
mountComponent({ mountComponent({
...@@ -226,7 +193,6 @@ describe('AlertManagementList', () => { ...@@ -226,7 +193,6 @@ describe('AlertManagementList', () => {
iid: 1, iid: 1,
startedAt: '2020-03-17T23:18:14.996Z', startedAt: '2020-03-17T23:18:14.996Z',
endedAt: '2020-04-17T23:18:14.996Z', endedAt: '2020-04-17T23:18:14.996Z',
severity: 'high',
}, },
], ],
errored: false, errored: false,
...@@ -245,7 +211,6 @@ describe('AlertManagementList', () => { ...@@ -245,7 +211,6 @@ describe('AlertManagementList', () => {
iid: 1, iid: 1,
startedAt: null, startedAt: null,
endedAt: null, endedAt: null,
severity: 'high',
}, },
], ],
errored: false, errored: false,
......
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