Skip to content
代码片段 群组 项目
未验证 提交 f7658c86 编辑于 作者: Savas Vedova's avatar Savas Vedova 提交者: GitLab
浏览文件

Merge branch 'gitlab-ui-integration-ek-add-include-toolbox-prop-to-charts' into 'master'

Replace `getToolboxOptions` usages with `option.toolbox.show` attribute

See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/159188



Merged-by: default avatarSavas Vedova <svedova@gitlab.com>
Approved-by: default avatarSavas Vedova <svedova@gitlab.com>
Reviewed-by: default avatarEzekiel Kigbo <3397881-ekigbo@users.noreply.gitlab.com>
Co-authored-by: default avatarEzekiel Kigbo <ekigbo@gitlab.com>
No related branches found
No related tags found
无相关合并请求
...@@ -5,7 +5,6 @@ import projectsHistoryQuery from 'ee/security_dashboard/graphql/queries/project_ ...@@ -5,7 +5,6 @@ import projectsHistoryQuery from 'ee/security_dashboard/graphql/queries/project_
import severitiesCountQuery from 'ee/security_dashboard/graphql/queries/vulnerability_severities_count.query.graphql'; import severitiesCountQuery from 'ee/security_dashboard/graphql/queries/vulnerability_severities_count.query.graphql';
import SecurityTrainingPromoBanner from 'ee/security_dashboard/components/project/security_training_promo_banner.vue'; import SecurityTrainingPromoBanner from 'ee/security_dashboard/components/project/security_training_promo_banner.vue';
import { PROJECT_LOADING_ERROR_MESSAGE } from 'ee/security_dashboard/helpers'; import { PROJECT_LOADING_ERROR_MESSAGE } from 'ee/security_dashboard/helpers';
import { getToolboxOptions } from '~/lib/utils/chart_utils';
import { createAlert } from '~/alert'; import { createAlert } from '~/alert';
import { formatDate, getDateInPast } from '~/lib/utils/datetime_utility'; import { formatDate, getDateInPast } from '~/lib/utils/datetime_utility';
import { s__, __ } from '~/locale'; import { s__, __ } from '~/locale';
...@@ -80,7 +79,6 @@ export default { ...@@ -80,7 +79,6 @@ export default {
return { return {
chartWidth: 0, chartWidth: 0,
trendsByDay: [], trendsByDay: [],
toolboxOptions: {},
}; };
}, },
computed: { computed: {
...@@ -153,13 +151,12 @@ export default { ...@@ -153,13 +151,12 @@ export default {
startValue: this.chartStartDate, startValue: this.chartStartDate,
}, },
], ],
...this.toolboxOptions, toolbox: {
show: true,
},
}; };
}, },
}, },
async created() {
this.toolboxOptions = await getToolboxOptions();
},
}; };
</script> </script>
......
<script> <script>
import { GlAreaChart } from '@gitlab/ui/dist/charts'; import { GlAreaChart } from '@gitlab/ui/dist/charts';
import { GlSkeletonLoader } from '@gitlab/ui'; import { GlSkeletonLoader } from '@gitlab/ui';
import { isEmpty } from 'lodash';
import { s__, __ } from '~/locale'; import { s__, __ } from '~/locale';
import { numberToHumanSize } from '~/lib/utils/number_utils'; import { numberToHumanSize } from '~/lib/utils/number_utils';
import { getToolboxOptions } from '~/lib/utils/chart_utils';
import { USAGE_BY_MONTH_HEADER } from '../../constants'; import { USAGE_BY_MONTH_HEADER } from '../../constants';
export default { export default {
...@@ -59,16 +57,15 @@ export default { ...@@ -59,16 +57,15 @@ export default {
}, },
}, },
}, },
...this.toolboxOptions, toolbox: {
show: true,
},
}; };
}, },
shouldRenderSkeletonLoader() { shouldRenderSkeletonLoader() {
return this.loading || isEmpty(this.toolboxOptions); return this.loading;
}, },
}, },
async created() {
this.toolboxOptions = await getToolboxOptions();
},
methods: { methods: {
formatTooltipText({ seriesData }) { formatTooltipText({ seriesData }) {
if (!seriesData?.[0]?.value) { if (!seriesData?.[0]?.value) {
......
...@@ -14,10 +14,6 @@ import { mockProjectSecurityChartsWithData, mockSeverityCountsWithData } from '. ...@@ -14,10 +14,6 @@ import { mockProjectSecurityChartsWithData, mockSeverityCountsWithData } from '.
Vue.use(VueApollo); Vue.use(VueApollo);
jest.mock('~/lib/utils/icon_utils', () => ({
getSvgIconPathContent: jest.fn().mockResolvedValue('mockSvgPathContent'),
}));
describe('Project Security Dashboard component', () => { describe('Project Security Dashboard component', () => {
let wrapper; let wrapper;
let severitiesCountQueryHandler; let severitiesCountQueryHandler;
...@@ -116,16 +112,9 @@ describe('Project Security Dashboard component', () => { ...@@ -116,16 +112,9 @@ describe('Project Security Dashboard component', () => {
expect(findLoadingIcon().exists()).toBe(false); expect(findLoadingIcon().exists()).toBe(false);
}); });
it.each([['restore'], ['saveAsImage']])('should contain %i icon', (icon) => { it('sets the contains `toolbox.show` option', () => {
const option = findLineChart().props('option').toolbox.feature; const { toolbox } = findLineChart().props('option');
expect(toolbox).toMatchObject({ show: true });
expect(option[icon].icon).toBe('path://mockSvgPathContent');
});
it('contains dataZoom config', () => {
const option = findLineChart().props('option').toolbox.feature;
expect(option.dataZoom.icon.zoom).toBe('path://mockSvgPathContent');
expect(option.dataZoom.icon.back).toBe('path://mockSvgPathContent');
}); });
it('contains the timeline slider', () => { it('contains the timeline slider', () => {
......
...@@ -5,12 +5,6 @@ import waitForPromises from 'helpers/wait_for_promises'; ...@@ -5,12 +5,6 @@ import waitForPromises from 'helpers/wait_for_promises';
import UsageByMonth from 'ee/usage_quotas/transfer/components/usage_by_month.vue'; import UsageByMonth from 'ee/usage_quotas/transfer/components/usage_by_month.vue';
import { USAGE_BY_MONTH_HEADER } from 'ee/usage_quotas/constants'; import { USAGE_BY_MONTH_HEADER } from 'ee/usage_quotas/constants';
jest.mock('~/lib/utils/icon_utils', () => ({
getSvgIconPathContent: jest
.fn()
.mockImplementation((name) => Promise.resolve(`${name}-svg-path-mock`)),
}));
describe('UsageByMonth', () => { describe('UsageByMonth', () => {
let wrapper; let wrapper;
...@@ -73,20 +67,7 @@ describe('UsageByMonth', () => { ...@@ -73,20 +67,7 @@ describe('UsageByMonth', () => {
axisLabel: { formatter: expect.any(Function) }, axisLabel: { formatter: expect.any(Function) },
}, },
toolbox: { toolbox: {
feature: { show: true,
dataZoom: {
icon: {
zoom: 'path://marquee-selection-svg-path-mock',
back: 'path://redo-svg-path-mock',
},
},
restore: {
icon: 'path://repeat-svg-path-mock',
},
saveAsImage: {
icon: 'path://download-svg-path-mock',
},
},
}, },
}, },
}); });
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册