Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Core UI] Kibana Overview Page #75827

Merged
merged 37 commits into from
Oct 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
4975bec
Added kibana landing page
cqliu1 Aug 17, 2020
5bcded7
Fixed a11y issues
cqliu1 Sep 29, 2020
bade14f
Made newsfeed optional dep of kibana overview plugin
cqliu1 Sep 29, 2020
de0d5f2
Removed duplicate license copy
cqliu1 Sep 29, 2020
d5a6366
Fixed management security test
cqliu1 Sep 29, 2020
775464c
Added toast to change default route button
cqliu1 Sep 29, 2020
0729edc
Updated snapshots
cqliu1 Sep 29, 2020
617c367
Simplified toast notification
cqliu1 Sep 29, 2020
d2e0485
Fixed i18n error
cqliu1 Sep 29, 2020
1c5b30e
Assigned kibana_overview plugin to Core UI in CODEOWNERS
cqliu1 Sep 29, 2020
d0be4ab
Updated snapshots
cqliu1 Sep 30, 2020
d1d7759
Fix import
cqliu1 Sep 30, 2020
4fc9c42
[Core UI] Kibana Overview Page Style Fixes, Part 3 (#78970)
MichaelMarcialis Sep 30, 2020
55b469c
[Core UI] Kibana Overview Page Style Fixes, Part 4 (#79136)
MichaelMarcialis Oct 2, 2020
f42e962
Adds support for all newsfeed plugin config settings in createNewsFeed$
cqliu1 Oct 2, 2020
75226c5
Merge branch 'master' into kibana-overview
cqliu1 Oct 2, 2020
69f599d
Fixed type
cqliu1 Oct 2, 2020
e1ce3f9
Merge branch 'master' of github.com:elastic/kibana into kibana-overview
cqliu1 Oct 3, 2020
f785107
Updated kibana overview page route
cqliu1 Oct 3, 2020
7284c52
Merge branch 'master' into kibana-overview
cqliu1 Oct 5, 2020
965cdc9
Fixed imports in page_footer and page_header
cqliu1 Oct 5, 2020
49b7d56
Update Kibana overview graphics (#79534)
ryankeairns Oct 5, 2020
b50c676
Updated snapshots
cqliu1 Oct 5, 2020
1071999
Updated snapshots
cqliu1 Oct 5, 2020
d0115ee
Changes newsfeed endpoint to kibana analytics in kibana_overview plugin
cqliu1 Oct 5, 2020
2bfa572
Renamed components
cqliu1 Oct 5, 2020
4802375
Fixed overview page footer and header component class names
cqliu1 Oct 5, 2020
a5c1a0d
Removed extraneous files
cqliu1 Oct 5, 2020
b88d4bc
Merge branch 'master' into kibana-overview
cqliu1 Oct 5, 2020
4043fad
Fixed import
cqliu1 Oct 5, 2020
a6c106a
Replaced SVGs with optimized SVGs
cqliu1 Oct 5, 2020
63e4b75
Fixed header and footer in home and kibana overview pages
cqliu1 Oct 5, 2020
adef3d2
Updated snapshots
cqliu1 Oct 5, 2020
1badd0a
Changed url_forwarding plugin appRoute
cqliu1 Oct 6, 2020
6843756
Fixed aria-labelledby value
cqliu1 Oct 6, 2020
9c98c4f
Updated snapshots
cqliu1 Oct 6, 2020
6660ab7
Added base paths
cqliu1 Oct 6, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@
/src/plugins/home/public @elastic/kibana-core-ui
/src/plugins/home/server/*.ts @elastic/kibana-core-ui
/src/plugins/home/server/services/ @elastic/kibana-core-ui
/src/plugins/kibana_overview/ @elastic/kibana-core-ui
/x-pack/plugins/global_search_bar/ @elastic/kibana-core-ui
#CC# /src/legacy/core_plugins/newsfeed @elastic/kibana-core-ui
#CC# /src/legacy/server/sample_data/ @elastic/kibana-core-ui
Expand Down
1 change: 1 addition & 0 deletions .i18nrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"indexPatternManagement": "src/plugins/index_pattern_management",
"advancedSettings": "src/plugins/advanced_settings",
"kibana_legacy": "src/plugins/kibana_legacy",
"kibanaOverview": "src/plugins/kibana_overview",
"kibana_react": "src/legacy/core_plugins/kibana_react",
"kibana-react": "src/plugins/kibana_react",
"kibana_utils": "src/plugins/kibana_utils",
Expand Down
4 changes: 4 additions & 0 deletions docs/developer/plugin-list.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ in Kibana, e.g. visualizations. It has the form of a flyout panel.
|This plugin contains several helpers and services to integrate pieces of the legacy Kibana app with the new Kibana platform.


|{kib-repo}blob/{branch}/src/plugins/kibana_overview/README.md[kibanaOverview]
|An overview page highlighting Kibana apps


|{kib-repo}blob/{branch}/src/plugins/kibana_react/README.md[kibanaReact]
|Tools for building React applications in Kibana.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,18 @@ export class AdvancedSettingsComponent extends Component<
setTimeout(() => {
const id = hash.replace('#', '');
const element = document.getElementById(id);
const globalNavOffset = document.getElementById('globalHeaderBars')?.offsetHeight || 0;

let globalNavOffset = 0;

const globalNavBars = document
.getElementById('globalHeaderBars')
?.getElementsByClassName('euiHeader');

if (globalNavBars) {
Array.from(globalNavBars).forEach((navBar) => {
globalNavOffset += (navBar as HTMLDivElement).offsetHeight;
});
}

if (element) {
element.scrollIntoView();
Expand Down
5 changes: 5 additions & 0 deletions src/plugins/dashboard/public/plugin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -395,13 +395,18 @@ export class DashboardPlugin
title: i18n.translate('dashboard.featureCatalogue.dashboardTitle', {
defaultMessage: 'Dashboard',
}),
subtitle: i18n.translate('dashboard.featureCatalogue.dashboardSubtitle', {
defaultMessage: 'Analyze data in dashboards.',
}),
description: i18n.translate('dashboard.featureCatalogue.dashboardDescription', {
defaultMessage: 'Display and share a collection of visualizations and saved searches.',
}),
icon: 'dashboardApp',
path: `/app/dashboards#${DashboardConstants.LANDING_PAGE_PATH}`,
showOnHomePage: false,
category: FeatureCatalogueCategory.DATA,
solutionId: 'kibana',
order: 100,
});
}
}
Expand Down
5 changes: 5 additions & 0 deletions src/plugins/discover/public/register_feature.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,17 @@ export function registerFeature(home: HomePublicPluginSetup) {
title: i18n.translate('discover.discoverTitle', {
defaultMessage: 'Discover',
}),
subtitle: i18n.translate('discover.discoverSubtitle', {
defaultMessage: 'Search and find insights.',
}),
description: i18n.translate('discover.discoverDescription', {
defaultMessage: 'Interactively explore your data by querying and filtering raw documents.',
}),
icon: 'discoverApp',
path: '/app/discover#/',
showOnHomePage: false,
category: FeatureCatalogueCategory.DATA,
solutionId: 'kibana',
order: 200,
});
}
Loading