-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
Add SearchStrategyRegistry and defaultSearchStrategy to support existing search behavior, and integrate it with CallClient. #20497
Merged
cjcenizal
merged 32 commits into
elastic:master
from
cjcenizal:search-strategy-registry
Jul 18, 2018
Merged
Changes from 30 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
2bd4962
Add SearchStrategyRegistry and defaultSearchStrategy to support exist…
cjcenizal 1c1b99a
Fix typo.
cjcenizal a0386ea
Move fetch param logic from CallClient into defaultSearchStrategy.
cjcenizal ebd3544
Move defaultSearchStrategy configuration into kibana plugin via searc…
cjcenizal 27ba85c
Fix typo in comment.
cjcenizal 8a7e05f
Fix bug where Dashboard Only Mode was broken.
cjcenizal 0a8442b
Don't throw ABORTED.
cjcenizal 9777a60
Add comments and refactor for clarity.
cjcenizal 31925d5
Refactor strategy interface to be more flexible with the arguments it…
cjcenizal b74224c
Add call-out react directive.
cjcenizal 9d02ff2
Show error in Discover if user tries to access a rollup index pattern…
cjcenizal d48f65b
Improve logic for resolving an early response if all searchRequests h…
cjcenizal bcce546
Merge branch 'master' of github.com:elastic/kibana into search-strate…
cjcenizal 5c7666c
Fix bugs in callClient using the tests as a guide.
cjcenizal 6b97760
Fix bug caused by typo in defaultSearchStrategy.
cjcenizal 3964b3a
Improve appearance of Discover when an unsupported rollup index patte…
cjcenizal 596a8c9
Remove unnecessary if.
cjcenizal dcddc1c
Return separate searching and abort properties from strategy.search().
cjcenizal 00a8fe5
Simplify isViable to only expect an indexPattern.
cjcenizal ae033f2
Remove duplicate call to respondToSearchRequests().
cjcenizal 5bd4b01
Send responses in original order to respondToSearchRequests.
cjcenizal d867a3f
Fix Jest tests.
cjcenizal 714990c
Add tests with multiple searchStrategies and fix errors in logic.
cjcenizal 683a2f3
Merge branch 'master' of github.com:elastic/kibana into search-strate…
cjcenizal 5ad6a55
Rename describe block.
cjcenizal 464b568
Rename describe block.
cjcenizal 6d4fc57
Merge branch 'master' of github.com:elastic/kibana into search-strate…
cjcenizal 4aba1fa
Check for default type index pattern instead of rollup type.
cjcenizal 4c51a51
CallClient now expects search to resolve with responses array.
cjcenizal 1c4e668
Fix tests.
cjcenizal ff73efb
Tweak copy.
cjcenizal e6379d8
Merge branch 'master' of github.com:elastic/kibana into search-strate…
cjcenizal File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
50 changes: 50 additions & 0 deletions
50
src/core_plugins/kibana/public/discover/directives/unsupported_index_pattern.js
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,50 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
import React, { Fragment } from 'react'; | ||
|
||
import { | ||
EuiCallOut, | ||
EuiFlexGroup, | ||
EuiFlexItem, | ||
EuiSpacer, | ||
} from '@elastic/eui'; | ||
|
||
export const DiscoverUnsupportedIndexPattern = ({ unsupportedType }) => { | ||
// This message makes the assumption that X-Pack will support this type, as is the case with | ||
// rollup index patterns. | ||
const message = `Index patterns based on ${unsupportedType} indices require the` + | ||
` ${unsupportedType} plugin from X-Pack which is either not installed or disabled`; | ||
|
||
return ( | ||
<Fragment> | ||
<EuiSpacer size="xl" /> | ||
|
||
<EuiFlexGroup justifyContent="center"> | ||
<EuiFlexItem grow={false} className="discoverNoResults"> | ||
<EuiCallOut | ||
title={message} | ||
color="danger" | ||
iconType="alert" | ||
/> | ||
</EuiFlexItem> | ||
</EuiFlexGroup> | ||
</Fragment> | ||
); | ||
}; |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
references to rollup message can be removed with implementation of
renderUnsupportedIndexPatternMessage
or similar