-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Enterprise Search][Workplace Search] Migrate Groups to Kibana (#78679)
* Initial copying of Groups component tree This commit moves the base component tree from ent-search with the following changes to satisfy pre-commit hooks - All file names changed to camel_case - Copyright comment added to the top of each file - Semicolons and formatting to match Kibana - Default exports removed from components - Placeholder keyboard listener functions added to non-interactive elements with click handlers * Update paths, remove kea typecasting This commit does the following: - Updates the paths of the imports - Removed the need to typecast logic i.e. "as IGroupsLogic" after the Kea hooks - Fixed a few TypeScript errors with events and return values on functions - Finally, this commit does away with the ConfirmModal component (was never copied over), as it only wraps 2 EUI components and we decided it was not needed * Add constants and image * Update types - Adds new types - Moves types needed by server and app to common * Refactor ContentSection and ViewContentHeader With the groups components, we needed to add a header action that was right-aligned to ContentSection. After building what was needed, I realized that the header in the ContentSection was basically a ViewContentHeader with a different sized heading. I refactored ViewContentHeader to have variable sizes and for ContentSection to use that instead. Also added styles from ent-search * Add group routes This is both the server routes and the frontend paths. After conversation with Jonas, we decided to not use the `/org` prefix. Will clean up the other routes as we build out the rest the migration * Update logic files This commit converts the logic files for use in Kibana. This includes: - Using the new Kea 2.2 syntax that uses MakeLogicType to provide types - Uses the Kibana HttpLogic instead of the rails routes/http - Adds return types to Actions interfaces - Adds `path` key to help with debuggin in dev tools - Removes FashMessages in lieu of separate logic. Because of this, we have to manually clear the flash mesages with listeners where reducers used to do it when the messages were local to the logic file - Preplaces promises with async/await & try/catch - Also, in GroupsLogic’s getSearchResults method, we used Kea’s breakpoint functionality and replaced the useDebouce Hook that was used in the component (future commit) - Uses global lodash per Kibana’s new directive * Update routers an indexes This PR configures the routers to work with Kibana - Updates paths to imports - Adds top-level styles For GroupRouter - Removes AppView - Use global flash messages - Remove sidebar and breadcrumbs * Update GroupOverview Adds some changes to facilitate the new design for Kibana - Copy changes - Layout changes to have buttons inline and not conditionally shown * Various updates to components Adds some changes to facilitate the new design for Kibana. - Remove unnecessary TableHeader - Adds pencil in lieu of manage button per design * Update main groups component A previous commit did this for the components, as the intention was to do this for components in one PR and the others an a separate PR. Unfortunately the build does not pass with all the missing imports. This commit does the following: - Updates the paths of the imports - Removed the need to typecast logic i.e. "as IGroupsLogic" after the Kea hooks - Fixed a few TypeScript errors with events and return values on functions - Use global flash messages - Remove debounces filderValue, as it’s now debounces in logic file - Remove legacy isCurated props - Remove legact AppView * Add sub navigation to main nav Also removes redundant search link in sidebar * Update logic file to reset flashmessages correctly Because we have separated concerns with global flash message state, we now have to manually trigger resets of flash messages with listeners in Kea where we used to be able to use a reducer to listen to changes and reset flash messages. * Use navigateToUrl for navigation over history.push Thanks to work by @constance, we can now use the KibanaLogic’s navigateToUrl value to change routes directly from logic files * Fix failing test A previous commit removed the redundant Search link from the sidebar nav because of the one in the header. This commit fixes a filing test and now assets on the number of items as the link addresses will be changing as we migrate more components over * Convert React Router links to our wrappers * Replace anchors with EuiButtonEmpty The original pre-commit hooks failed because the anchors didn’t have key handlers. Pleaceholders were added with TODOs and these have been replaced with EuiButtonEmpty, which satisifies the UI needs and passes linting * Fix a bug where header actions disappearing There was a bug where changing routes would cause the header action, in the case of Workplace Search the “Go to search application” link, to disappear on route changes. Turns out that we didn’t need it in the useEffect and that moving it out keeps the unmount from removing the link from the header. * i18n top-level component and logic files * i18n for components * Fix failing test This was from 3254c62 * Fix broken i18n Had duplicate ids and misnamed value * Fix a bug where manage group not in Flash message There is a button that appears in the Flash Message when a new group is added so that the user can navigate to manage the group and, because the order of setting the new group was before the instantiation of the global flashmessages, the button was not appearing. This commit moves the action after the flash message is set. * Refactor typings * Refactor ContentSection spacing The css was not being used and the bottom padding of 44px (xxl + xs spacer) was being generated with spacers. This has been changed to use only CSS * Remove canCreateInvitations * Remove hasMessages check rendering FlashMessages * snake_case telemetry and path Will convert other paths in a separate PR * Fix failing tests Co-authored-by: Elastic Machine <[email protected]> Co-authored-by: Kibana Machine <[email protected]>
- Loading branch information
1 parent
106ab7e
commit 197510a
Showing
49 changed files
with
3,424 additions
and
93 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
14 changes: 14 additions & 0 deletions
14
x-pack/plugins/enterprise_search/public/applications/shared/constants/default_meta.ts
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,14 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
export const DEFAULT_META = { | ||
page: { | ||
current: 1, | ||
size: 10, | ||
total_pages: 0, | ||
total_results: 0, | ||
}, | ||
}; |
7 changes: 7 additions & 0 deletions
7
x-pack/plugins/enterprise_search/public/applications/shared/constants/index.ts
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,7 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
export { DEFAULT_META } from './default_meta'; |
1 change: 1 addition & 0 deletions
1
.../enterprise_search/public/applications/workplace_search/assets/share_circle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
9 changes: 9 additions & 0 deletions
9
...blic/applications/workplace_search/components/shared/content_section/content_section.scss
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,9 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
.content-section { | ||
padding-bottom: 44px; | ||
} |
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
19 changes: 19 additions & 0 deletions
19
..._search/public/applications/workplace_search/components/shared/source_row/source_row.scss
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,19 @@ | ||
.source-row { | ||
&__icon { | ||
width: 24px; | ||
height: 24px; | ||
} | ||
|
||
&__name { | ||
font-weight: 500; | ||
} | ||
|
||
&__actions { | ||
width: 100px; | ||
} | ||
|
||
&__actions a { | ||
opacity: 1.0; | ||
pointer-events: auto; | ||
} | ||
} |
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
Oops, something went wrong.