Commit 42920455 authored by Daniel Tian's avatar Daniel Tian Committed by Mark Florian

Use provide/inject for groupFullPath instead of props

parent 05c4cd32
......@@ -19,11 +19,8 @@ export default {
GlLoadingIcon,
VulnerabilitiesCountList,
},
inject: ['groupFullPath'],
props: {
groupFullPath: {
type: String,
required: true,
},
vulnerabilitiesExportEndpoint: {
type: String,
required: true,
......@@ -88,7 +85,7 @@ export default {
<template #sticky>
<filters :projects="projects" @filterChange="handleFilterChange" />
</template>
<group-security-vulnerabilities :group-full-path="groupFullPath" :filters="filters" />
<group-security-vulnerabilities :filters="filters" />
</security-dashboard-layout>
</div>
</template>
......@@ -13,11 +13,8 @@ export default {
GlIntersectionObserver,
VulnerabilityList,
},
inject: ['groupFullPath'],
props: {
groupFullPath: {
type: String,
required: true,
},
filters: {
type: Object,
required: false,
......
......@@ -25,9 +25,9 @@ export default {
directives: {
GlTooltip: GlTooltipDirective,
},
inject: ['groupFullPath'],
props: {
query: { type: Object, required: true },
groupFullPath: { type: String, required: false, default: undefined },
},
data() {
return {
......
......@@ -32,6 +32,7 @@ export default {
directives: {
'gl-tooltip': GlTooltipDirective,
},
inject: ['groupFullPath'],
props: {
helpPagePath: {
type: String,
......@@ -42,11 +43,6 @@ export default {
type: Object,
required: true,
},
groupFullPath: {
type: String,
required: false,
default: undefined,
},
},
data() {
return {
......
......@@ -18,12 +18,7 @@ export default {
VulnerabilitySeverities,
VulnerabilityChart,
},
props: {
groupFullPath: {
type: String,
required: true,
},
},
inject: ['groupFullPath'],
apollo: {
projects: {
query: vulnerableProjectsQuery,
......@@ -65,11 +60,8 @@ export default {
<dashboard-not-configured />
</template>
<template v-else-if="shouldShowCharts" #default>
<vulnerability-chart :query="vulnerabilityHistoryQuery" :group-full-path="groupFullPath" />
<vulnerability-severities
:query="vulnerabilityGradesQuery"
:group-full-path="groupFullPath"
/>
<vulnerability-chart :query="vulnerabilityHistoryQuery" />
<vulnerability-severities :query="vulnerabilityGradesQuery" />
</template>
<template v-else #loading>
<gl-loading-icon size="lg" class="gl-mt-6" />
......
......@@ -61,6 +61,7 @@ export default (el, dashboardType) => {
emptyStateSvgPath,
notEnabledScannersHelpPath,
noPipelineRunScannersHelpPath,
groupFullPath,
securityConfigurationPath,
hasVulnerabilities: parseBoolean(hasVulnerabilities),
scanners: scanners ? JSON.parse(scanners) : [],
......@@ -92,7 +93,6 @@ export default (el, dashboardType) => {
provide.autoFixMrsPath = autoFixMrsPath;
} else if (dashboardType === DASHBOARD_TYPES.GROUP) {
component = FirstClassGroupSecurityDashboard;
props.groupFullPath = groupFullPath;
} else if (dashboardType === DASHBOARD_TYPES.INSTANCE) {
provide.instanceDashboardSettingsPath = instanceDashboardSettingsPath;
component = FirstClassInstanceSecurityDashboard;
......
......@@ -32,6 +32,7 @@ export default (el, dashboardType) => {
const provide = {
dashboardDocumentation: el.dataset.dashboardDocumentation,
emptyStateSvgPath: el.dataset.emptyStateSvgPath,
groupFullPath: el.dataset.groupFullPath,
securityConfigurationPath: el.dataset.securityConfigurationPath,
};
......
---
title: Use provide/inject for groupFullPath instead of props
merge_request: 56472
author:
type: other
......@@ -29,9 +29,9 @@ describe('First Class Group Dashboard Component', () => {
propsData: {
dashboardDocumentation,
emptyStateSvgPath,
groupFullPath,
vulnerabilitiesExportEndpoint,
},
provide: { groupFullPath },
data,
stubs: {
SecurityDashboardLayout,
......@@ -66,7 +66,6 @@ describe('First Class Group Dashboard Component', () => {
it('should render correctly', () => {
expect(findGroupVulnerabilities().props()).toEqual({
groupFullPath,
filters: {},
});
});
......
......@@ -24,15 +24,13 @@ describe('First Class Group Dashboard Vulnerabilities Component', () => {
const createWrapper = ({ $apollo = apolloMock, stubs } = {}) => {
return shallowMount(FirstClassGroupVulnerabilities, {
propsData: {
groupFullPath,
},
stubs,
mocks: {
$apollo,
fetchNextPage: () => {},
},
provide: {
groupFullPath,
hasVulnerabilities: true,
hasJiraVulnerabilitiesIntegrationEnabled: false,
},
......
......@@ -21,10 +21,11 @@ describe('First class vulnerability chart component', () => {
const findActiveChartButton = () => findChartButtons().find('.selected');
const find90DaysChartButton = () => findChartButtons().find('[data-days="90"]');
const createComponent = ({ $apollo, propsData, stubs, data } = {}) => {
const createComponent = ({ $apollo, propsData, stubs, data, provide } = {}) => {
const instance = shallowMount(VulnerabilityChart, {
$apollo,
propsData: { query: {}, ...propsData },
provide: { groupFullPath: undefined, ...provide },
stubs: {
...stubChildren(VulnerabilityChart),
...stubs,
......@@ -84,7 +85,7 @@ describe('First class vulnerability chart component', () => {
describe('when loading the history chart for group level dashboard', () => {
beforeEach(() => {
wrapper = createComponent({
propsData: { groupFullPath: 'gitlab-org' },
provide: { groupFullPath: 'gitlab-org' },
$apollo: {
queries: { vulnerabilitiesHistory: { group: responseData } },
},
......
......@@ -33,7 +33,7 @@ describe('Vulnerability Severity component', () => {
return createMockApollo([...queries]);
};
const createComponent = ({ propsData, data, apolloProvider }) => {
const createComponent = ({ propsData, data, apolloProvider, provide }) => {
return shallowMount(VulnerabilitySeverity, {
localVue,
apolloProvider,
......@@ -42,6 +42,7 @@ describe('Vulnerability Severity component', () => {
helpPagePath,
...propsData,
},
provide: { groupFullPath: undefined, ...provide },
stubs: {
Accordion,
AccordionItem,
......@@ -69,7 +70,8 @@ describe('Vulnerability Severity component', () => {
]);
wrapper = createComponent({
propsData: { groupFullPath: 'gitlab-org', query: groupVulnerabilityGradesQuery },
propsData: { query: groupVulnerabilityGradesQuery },
provide: { groupFullPath: 'gitlab-org' },
apolloProvider,
});
......
......@@ -41,7 +41,7 @@ describe('Group Security Charts component', () => {
},
},
},
propsData: { groupFullPath },
provide: { groupFullPath },
stubs: {
SecurityChartsLayout,
},
......@@ -100,11 +100,10 @@ describe('Group Security Charts component', () => {
expect(dashboardNotConfigured.exists()).toBe(false);
expect(loadingIcon.exists()).toBe(false);
expect(vulnerabilityChart.exists()).toBe(true);
expect(vulnerabilityChart.props()).toEqual({ query: vulnerabilityHistoryQuery, groupFullPath });
expect(vulnerabilityChart.props()).toEqual({ query: vulnerabilityHistoryQuery });
expect(vulnerabilitySeverities.exists()).toBe(true);
expect(vulnerabilitySeverities.props()).toEqual({
query: vulnerabilityGradesQuery,
groupFullPath,
helpPagePath: '',
});
});
......
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