-
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
[Runtime fields editor] Expose editor for consuming apps #82116
Changes from all commits
f7f52f9
e909564
061f16f
8c3f735
1f50413
f7e8022
a969923
58ec343
8246c8f
3727b43
aba171b
7c90cc4
56ab2bc
f210436
af0c638
3f4eae2
14ccc9a
d1147c3
51d5b5c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
# Runtime fields | ||
|
||
Welcome to the home of the runtime field editor and everything related to runtime fields! | ||
|
||
## The runtime field editor | ||
|
||
The runtime field editor is exported in 2 flavours: | ||
|
||
* As the content of a `<EuiFlyout />` | ||
* As a standalone component that you can inline anywhere | ||
|
||
### Content of a `<EuiFlyout />` | ||
|
||
```js | ||
import React, { useState } from 'react'; | ||
import { EuiFlyoutBody, EuiButton } from '@elastic/eui'; | ||
import { RuntimeFieldEditorFlyoutContent, RuntimeField } from '../runtime_fields/public'; | ||
|
||
const MyComponent = () => { | ||
const { docLinksStart } = useCoreContext(); // access the core start service | ||
const [isFlyoutVisilbe, setIsFlyoutVisible] = useState(false); | ||
|
||
const saveRuntimeField = useCallback((field: RuntimeField) => { | ||
// Do something with the field | ||
}, []); | ||
|
||
return ( | ||
<> | ||
<EuiButton onClick={() => setIsFlyoutVisible(true)}>Create field</EuiButton> | ||
|
||
{isFlyoutVisible && ( | ||
<EuiFlyout onClose={() => setIsFlyoutVisible(false)}> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think I recall us talking about something similar to this in the past but why is the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So it can be injected in a flyout when calling There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe renaming There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good idea, I will rename the component 👍 |
||
<RuntimeFieldEditorFlyoutContent | ||
onSave={saveRuntimeField} | ||
onCancel={() => setIsFlyoutVisible(false)} | ||
docLinks={docLinksStart} | ||
defaultValue={/*optional runtime field to edit*/} | ||
/> | ||
</EuiFlyout> | ||
)} | ||
</> | ||
) | ||
} | ||
``` | ||
|
||
#### With the `core.overlays.openFlyout` | ||
|
||
As an alternative you can open the flyout with the `core.overlays.openFlyout`. In this case you will need to wrap the editor with the `Provider` from the "kibana_react" plugin as it is a required dependency for the `<CodeEditor />` component. | ||
|
||
```js | ||
import React, { useRef } from 'react'; | ||
import { EuiButton } from '@elastic/eui'; | ||
import { OverlayRef } from 'src/core/public'; | ||
|
||
import { createKibanaReactContext, toMountPoint } from '../../src/plugins/kibana_react/public'; | ||
import { RuntimeFieldEditorFlyoutContent, RuntimeField } from '../runtime_fields/public'; | ||
|
||
const MyComponent = () => { | ||
// Access the core start service | ||
const { docLinksStart, overlays, uiSettings } = useCoreContext(); | ||
const flyoutEditor = useRef<OverlayRef | null>(null); | ||
|
||
const { openFlyout } = overlays; | ||
|
||
const saveRuntimeField = useCallback((field: RuntimeField) => { | ||
// Do something with the field | ||
}, []); | ||
|
||
const openRuntimeFieldEditor = useCallback(() => { | ||
const { Provider: KibanaReactContextProvider } = createKibanaReactContext({ uiSettings }); | ||
|
||
flyoutEditor.current = openFlyout( | ||
toMountPoint( | ||
<KibanaReactContextProvider> | ||
<RuntimeFieldEditorFlyoutContent | ||
onSave={saveRuntimeField} | ||
onCancel={() => flyoutEditor.current?.close()} | ||
docLinks={docLinksStart} | ||
defaultValue={defaultRuntimeField} | ||
/> | ||
</KibanaReactContextProvider> | ||
) | ||
); | ||
}, [openFlyout, saveRuntimeField, uiSettings]); | ||
|
||
return ( | ||
<> | ||
<EuiButton onClick={openRuntimeFieldEditor}>Create field</EuiButton> | ||
</> | ||
) | ||
} | ||
``` | ||
|
||
### Standalone component | ||
|
||
```js | ||
import React, { useState } from 'react'; | ||
import { EuiButton, EuiSpacer } from '@elastic/eui'; | ||
import { RuntimeFieldEditor, RuntimeField, RuntimeFieldFormState } from '../runtime_fields/public'; | ||
|
||
const MyComponent = () => { | ||
const { docLinksStart } = useCoreContext(); // access the core start service | ||
const [runtimeFieldFormState, setRuntimeFieldFormState] = useState<RuntimeFieldFormState>({ | ||
isSubmitted: false, | ||
isValid: undefined, | ||
submit: async() => Promise.resolve({ isValid: false, data: {} as RuntimeField }) | ||
}); | ||
|
||
const { submit, isValid: isFormValid, isSubmitted } = runtimeFieldFormState; | ||
|
||
const saveRuntimeField = useCallback(async () => { | ||
const { isValid, data } = await submit(); | ||
if (isValid) { | ||
// Do something with the field (data) | ||
} | ||
}, [submit]); | ||
|
||
return ( | ||
<> | ||
<RuntimeFieldEditor | ||
onChange={setRuntimeFieldFormState} | ||
docLinks={docLinksStart} | ||
defaultValue={/*optional runtime field to edit*/} | ||
/> | ||
|
||
<EuiSpacer /> | ||
|
||
<EuiButton | ||
onClick={saveRuntimeField} | ||
disabled={isSubmitted && !isFormValid}> | ||
Save field | ||
</EuiButton> | ||
</> | ||
) | ||
} | ||
``` |
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 { RuntimeFieldEditor } from './runtime_field_editor'; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/* | ||
* 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. | ||
*/ | ||
import { act } from 'react-dom/test-utils'; | ||
import { DocLinksStart } from 'src/core/public'; | ||
|
||
import '../../__jest__/setup_environment'; | ||
import { registerTestBed, TestBed } from '../../test_utils'; | ||
import { RuntimeField } from '../../types'; | ||
import { RuntimeFieldForm, FormState } from '../runtime_field_form/runtime_field_form'; | ||
import { RuntimeFieldEditor, Props } from './runtime_field_editor'; | ||
|
||
const setup = (props?: Props) => | ||
registerTestBed(RuntimeFieldEditor, { | ||
memoryRouter: { | ||
wrapComponent: false, | ||
}, | ||
})(props) as TestBed; | ||
|
||
const docLinks: DocLinksStart = { | ||
ELASTIC_WEBSITE_URL: 'https://jestTest.elastic.co', | ||
DOC_LINK_VERSION: 'jest', | ||
links: {} as any, | ||
}; | ||
|
||
describe('Runtime field editor', () => { | ||
let testBed: TestBed; | ||
let onChange: jest.Mock<Props['onChange']> = jest.fn(); | ||
|
||
const lastOnChangeCall = (): FormState[] => onChange.mock.calls[onChange.mock.calls.length - 1]; | ||
|
||
beforeEach(() => { | ||
onChange = jest.fn(); | ||
}); | ||
|
||
test('should render the <RuntimeFieldForm />', () => { | ||
testBed = setup({ docLinks }); | ||
const { component } = testBed; | ||
|
||
expect(component.find(RuntimeFieldForm).length).toBe(1); | ||
}); | ||
|
||
test('should accept a defaultValue and onChange prop to forward the form state', async () => { | ||
const defaultValue: RuntimeField = { | ||
name: 'foo', | ||
type: 'date', | ||
script: 'test=123', | ||
}; | ||
testBed = setup({ onChange, defaultValue, docLinks }); | ||
|
||
expect(onChange).toHaveBeenCalled(); | ||
|
||
let lastState = lastOnChangeCall()[0]; | ||
expect(lastState.isValid).toBe(undefined); | ||
expect(lastState.isSubmitted).toBe(false); | ||
expect(lastState.submit).toBeDefined(); | ||
|
||
let data; | ||
await act(async () => { | ||
({ data } = await lastState.submit()); | ||
}); | ||
expect(data).toEqual(defaultValue); | ||
|
||
// Make sure that both isValid and isSubmitted state are now "true" | ||
lastState = lastOnChangeCall()[0]; | ||
expect(lastState.isValid).toBe(true); | ||
expect(lastState.isSubmitted).toBe(true); | ||
}); | ||
}); |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
import React from 'react'; | ||
import { DocLinksStart } from 'src/core/public'; | ||
|
||
import { RuntimeField } from '../../types'; | ||
import { getLinks } from '../../lib'; | ||
import { RuntimeFieldForm, Props as FormProps } from '../runtime_field_form/runtime_field_form'; | ||
|
||
export interface Props { | ||
docLinks: DocLinksStart; | ||
defaultValue?: RuntimeField; | ||
onChange?: FormProps['onChange']; | ||
} | ||
|
||
export const RuntimeFieldEditor = ({ defaultValue, onChange, docLinks }: Props) => { | ||
const links = getLinks(docLinks); | ||
|
||
return <RuntimeFieldForm links={links} defaultValue={defaultValue} onChange={onChange} />; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For now, this component only renders the |
||
}; |
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 { RuntimeFieldEditorFlyoutContent } from './runtime_field_editor_flyout_content'; |
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.
You can safely remove the width prop and it will default to 100%
kibana/src/plugins/kibana_react/public/code_editor/code_editor.tsx
Lines 31 to 32 in a49473b