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.
[URL UPDATE] Change '/app/enterprise_search/app_search' to '/app/app_…
…search' - This needs to be done because App Search and Workplace search *have* to be registered as separate plugins to have 2 distinct nav links - Currently Kibana doesn't support nested app names (see: elastic#59190) but potentially will in the future - To support this change, we need to update applications/index.tsx to NOT handle '/app/enterprise_search' level routing, but instead accept an async imported app component (e.g. AppSearch, WorkplaceSearch). - AppSearch should now treat its router as root '/' instead of '/app_search' - (Addl) Per Josh Dover's recommendation, switch to `<Router history={params.history}>` from `<BrowserRouter basename={params.appBasePath}>` since they're deprecating appBasePath
- Loading branch information
Showing
6 changed files
with
64 additions
and
49 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
26 changes: 0 additions & 26 deletions
26
x-pack/plugins/enterprise_search/public/applications/index.test.ts
This file was deleted.
Oops, something went wrong.
40 changes: 40 additions & 0 deletions
40
x-pack/plugins/enterprise_search/public/applications/index.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,40 @@ | ||
/* | ||
* 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 React from 'react'; | ||
|
||
import { coreMock } from 'src/core/public/mocks'; | ||
import { licensingMock } from '../../../licensing/public/mocks'; | ||
|
||
import { renderApp } from './'; | ||
import { AppSearch } from './app_search'; | ||
|
||
describe('renderApp', () => { | ||
const params = coreMock.createAppMountParamters(); | ||
const core = coreMock.createStart(); | ||
const config = {}; | ||
const plugins = { | ||
licensing: licensingMock.createSetup(), | ||
}; | ||
|
||
beforeEach(() => { | ||
jest.clearAllMocks(); | ||
}); | ||
|
||
it('mounts and unmounts UI', () => { | ||
const MockApp: React.FC = () => <div className="hello-world">Hello world!</div>; | ||
|
||
const unmount = renderApp(MockApp, core, params, config, plugins); | ||
expect(params.element.querySelector('.hello-world')).not.toBeNull(); | ||
unmount(); | ||
expect(params.element.innerHTML).toEqual(''); | ||
}); | ||
|
||
it('renders AppSearch', () => { | ||
renderApp(AppSearch, core, params, config, plugins); | ||
expect(params.element.querySelector('.setup-guide')).not.toBeNull(); | ||
}); | ||
}); |
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