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

Kibana Home page - phase one #14673

Merged
merged 38 commits into from
Nov 2, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
3c26bca
make kibana home app default when defaultAppId not set
nreese Oct 5, 2017
8efaa11
make kibana icon link to home page, add react-router for routing with…
nreese Oct 6, 2017
7dd455f
directory registry
nreese Oct 6, 2017
8f604e2
add href to directory listings
nreese Oct 9, 2017
142ae2b
add tabs to directory page
nreese Oct 9, 2017
8674776
add promo section to home page
nreese Oct 9, 2017
7de3e6e
home page styling
nreese Oct 9, 2017
e913572
use kuiFlex components to display directory in columns
nreese Oct 10, 2017
c78059e
fix react array missing key warning
nreese Oct 10, 2017
da946cf
add icons
nreese Oct 11, 2017
9e67f2b
remove feature directory title from home page, change data sources to…
nreese Oct 11, 2017
f51b149
add tutorials registry
nreese Oct 24, 2017
0ddbb8f
fix rebase mistake
nreese Oct 25, 2017
29796cc
start tutorial component
nreese Oct 25, 2017
cd4cde6
wrap tutorial registration in helper function to hide implemenation d…
nreese Oct 25, 2017
9e5d4fe
add constants for categry and instruction variant ids
nreese Oct 26, 2017
b878c65
filter tutorial directory by tab category
nreese Oct 30, 2017
f20c89c
remove later phase stuff
nreese Oct 30, 2017
9e4dc4f
clean-up feature directory styling
nreese Oct 30, 2017
7784b79
add kbnDirectory to uiExports
nreese Oct 30, 2017
613a37c
remove unused file
nreese Oct 30, 2017
b506059
cleanup timelion plugin definition
nreese Oct 30, 2017
071f7e4
fix lint errors
nreese Oct 31, 2017
879a978
css work recommended by formgeist review
nreese Oct 31, 2017
10080c5
cleanup from pairing session with snide
nreese Oct 31, 2017
d3c715b
rename kbnDirectory registry to featureCatalogue, rename kbnDirectory…
nreese Oct 31, 2017
2fbc4b3
update kibana index uses name to match ui-exports name
nreese Oct 31, 2017
c253a19
remove carot from package versions
nreese Oct 31, 2017
8600edf
remove kuiViewContent--constrainedWidth from feature directory view
nreese Oct 31, 2017
0716c3f
updates from Stacey-Gammon review
nreese Oct 31, 2017
f1aab18
import FeatureCatalogueCategory instead of passing as parameter
nreese Nov 1, 2017
0a1c05c
wrap KuiButton in href to fix button click bug
nreese Nov 1, 2017
627505f
remove conditional check for ADMIN and DATA feature category tabs
nreese Nov 1, 2017
eb06d06
consider apps for the 'OTHER' tab as anything not in ADMIN or DATA
nreese Nov 1, 2017
35e25db
remove temp variable tabs and just store in this
nreese Nov 1, 2017
14b6702
avoid overwriting kui class styles
nreese Nov 1, 2017
470f34e
prefix class names with home
nreese Nov 1, 2017
5576799
updates from timroes review
nreese Nov 2, 2017
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
2 changes: 1 addition & 1 deletion config/kibana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#kibana.index: ".kibana"

# The default application to load.
#kibana.defaultAppId: "discover"
#kibana.defaultAppId: "home"

# If your Elasticsearch is protected with basic authentication, these settings provide
# the username and password that the Kibana server uses to perform maintenance on the Kibana
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,10 @@
"react-input-autosize": "1.1.0",
"react-input-range": "1.2.1",
"react-markdown": "2.4.2",
"react-redux": "4.4.5",
"react-redux": "5.0.5",
"react-router": "2.0.0",
"react-router-redux": "4.0.4",
"react-router-dom": "4.2.2",
"react-select": "1.0.0-rc.5",
"react-sizeme": "2.3.4",
"react-sortable": "1.1.0",
Expand Down
3 changes: 2 additions & 1 deletion src/core_plugins/kibana/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function (kibana) {
config: function (Joi) {
return Joi.object({
enabled: Joi.boolean().default(true),
defaultAppId: Joi.string().default('discover'),
defaultAppId: Joi.string().default('home'),
index: Joi.string().default('.kibana')
}).default();
},
Expand All @@ -47,6 +47,7 @@ export default function (kibana) {
description: 'the kibana you know and love',
main: 'plugins/kibana/kibana',
uses: [
'home',
'visTypes',
'visResponseHandlers',
'visRequestHandlers',
Expand Down
30 changes: 30 additions & 0 deletions src/core_plugins/kibana/public/assets/app_apm.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions src/core_plugins/kibana/public/assets/app_dashboard.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions src/core_plugins/kibana/public/assets/app_devtools.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions src/core_plugins/kibana/public/assets/app_discover.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions src/core_plugins/kibana/public/assets/app_logging.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions src/core_plugins/kibana/public/assets/app_monitoring.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions src/core_plugins/kibana/public/assets/app_security.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions src/core_plugins/kibana/public/assets/app_timelion.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions src/core_plugins/kibana/public/assets/app_visualize.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading