Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
5996835
refactor: 💡 remove SASS and clean up InspectorView component
streamich Jul 19, 2019
78e1fde
refactor: 💡 clean up inspector, convert .js -> .ts
streamich Jul 29, 2019
6766866
feat: 🎸 add Inspector NP plugin boilerplate
streamich Jul 29, 2019
c0b40fa
feat: 🎸 move view registry to NP, move types, add registerView
streamich Jul 29, 2019
f02deff
docs: ✏️ move inspector README to NP plugin
streamich Jul 29, 2019
055f37c
refactor: 💡 move ui/inspector/ui to NP
streamich Jul 29, 2019
49ce4d1
refactor: 💡 move Inspector adapters to NP
streamich Jul 29, 2019
d4d86b7
refactor: 💡 move Inspector.isAvailable to New Platform
streamich Jul 29, 2019
53fc00d
refactor: 💡 move Inspector.open to New Platform plugin
streamich Jul 29, 2019
d626647
test: 💍 move Inspector tests to NP plugin
streamich Jul 29, 2019
6e1cd4d
chore: 🤖 fix imports
streamich Jul 29, 2019
8974d0f
feat: 🎸 update translations
streamich Jul 29, 2019
1074e14
test: 💍 fix failing translation snapshot
streamich Jul 30, 2019
328d7a6
test: 💍 fix yarn test:browser tests
streamich Jul 30, 2019
423fa3a
Merge branch 'master' into ui-inspector-to-np
streamich Jul 31, 2019
e40b153
Update src/legacy/ui/public/inspector/build_tabular_inspector_data.ts
streamich Jul 31, 2019
151a0e6
[ML] [Job wizards] switching to new kibana context provider
jgowdyelastic Aug 2, 2019
74472ce
Merge remote-tracking branch 'upstream/master' into ui-inspector-to-np
streamich Aug 2, 2019
af75060
Merge remote-tracking branch 'jgowdyelastic/switching-to-new-kibana-c…
streamich Aug 2, 2019
7263157
fix: 🐛 specify translation path directly to the plugin
streamich Aug 2, 2019
4ea86b6
docs: ✏️ add comment about Webpack config fix
streamich Aug 2, 2019
a6dda9e
Update src/legacy/ui/public/inspector/build_tabular_inspector_data.ts
streamich Aug 2, 2019
41ae462
Update src/legacy/ui/public/inspector/build_tabular_inspector_data.ts
streamich Aug 2, 2019
a4e4596
feat: 🎸 improve types as per review
streamich Aug 2, 2019
d5fea29
Merge remote-tracking branch 'origin/ui-inspector-to-np' into ui-insp…
streamich Aug 2, 2019
e63259f
fix: 🐛 remove <InspectorView> comp and fix view layouts
streamich Aug 2, 2019
6daa23b
test: 💍 improve mocks
streamich Aug 2, 2019
3867bca
Merge remote-tracking branch 'upstream/master' into ui-inspector-to-np
streamich Aug 2, 2019
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
3 changes: 2 additions & 1 deletion .i18nrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"timelion": "src/legacy/core_plugins/timelion",
"tagCloud": "src/legacy/core_plugins/tagcloud",
"tsvb": "src/legacy/core_plugins/metrics",
"kbnESQuery": "packages/kbn-es-query"
"kbnESQuery": "packages/kbn-es-query",
"inspector": "src/plugins/inspector"
},
"exclude": ["src/legacy/ui/ui_render/ui_render_mixin.js"],
"translations": []
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,35 +17,11 @@
* under the License.
*/

import { fatalErrorsServiceMock, notificationServiceMock } from '../../../../core/public/mocks';

let modalContents: React.Component;

export const getModalContents = () => modalContents;

jest.doMock('ui/new_platform', () => {
return {
npStart: {
core: {
overlays: {
openFlyout: jest.fn(),
openModal: (component: React.Component) => {
modalContents = component;
return {
close: jest.fn(),
};
},
},
},
},
npSetup: {
core: {
fatalErrors: fatalErrorsServiceMock.createSetupContract(),
notifications: notificationServiceMock.createSetupContract(),
},
},
};
});
jest.mock('ui/new_platform');

jest.doMock('ui/metadata', () => ({
metadata: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,5 @@ jest.doMock('ui/capabilities', () => ({
},
},
}));

jest.mock('ui/new_platform');

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading