forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Observability] landing page always being displayed (elastic#71494)
* hides overview item when no other obs plugin is available. * reverting tests changes * reverting tests changes * adding overview to observability tests
- Loading branch information
1 parent
6a67ed9
commit 8b9be09
Showing
17 changed files
with
104 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
x-pack/plugins/observability/public/toggle_overview_link_in_nav.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
import { CoreStart } from 'kibana/public'; | ||
|
||
import { toggleOverviewLinkInNav } from './toggle_overview_link_in_nav'; | ||
|
||
describe('toggleOverviewLinkInNav', () => { | ||
const update = jest.fn(); | ||
afterEach(() => { | ||
update.mockClear(); | ||
}); | ||
it('hides overview menu', () => { | ||
const core = ({ | ||
application: { | ||
capabilities: { | ||
navLinks: { | ||
apm: false, | ||
logs: false, | ||
metrics: false, | ||
uptime: false, | ||
}, | ||
}, | ||
}, | ||
chrome: { navLinks: { update } }, | ||
} as unknown) as CoreStart; | ||
toggleOverviewLinkInNav(core); | ||
expect(update).toHaveBeenCalledWith('observability-overview', { hidden: true }); | ||
}); | ||
it('shows overview menu', () => { | ||
const core = ({ | ||
application: { | ||
capabilities: { | ||
navLinks: { | ||
apm: true, | ||
logs: false, | ||
metrics: false, | ||
uptime: false, | ||
}, | ||
}, | ||
}, | ||
chrome: { navLinks: { update } }, | ||
} as unknown) as CoreStart; | ||
toggleOverviewLinkInNav(core); | ||
expect(update).not.toHaveBeenCalled(); | ||
}); | ||
}); |
15 changes: 15 additions & 0 deletions
15
x-pack/plugins/observability/public/toggle_overview_link_in_nav.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
|
||
import { CoreStart } from 'kibana/public'; | ||
|
||
export function toggleOverviewLinkInNav(core: CoreStart) { | ||
const { apm, logs, metrics, uptime } = core.application.capabilities.navLinks; | ||
const someVisible = Object.values({ apm, logs, metrics, uptime }).some((visible) => visible); | ||
if (!someVisible) { | ||
core.chrome.navLinks.update('observability-overview', { hidden: true }); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters