-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into cypress-cucumber
- Loading branch information
Showing
534 changed files
with
5,524 additions
and
2,920 deletions.
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
92 changes: 92 additions & 0 deletions
92
examples/embeddable_examples/public/todo/todo_embeddable_factory.tsx
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,92 @@ | ||
/* | ||
* 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, { useState } from 'react'; | ||
import { EuiModalBody } from '@elastic/eui'; | ||
import { i18n } from '@kbn/i18n'; | ||
import { OverlayStart } from 'kibana/public'; | ||
import { EuiFieldText } from '@elastic/eui'; | ||
import { EuiButton } from '@elastic/eui'; | ||
import { toMountPoint } from '../../../../src/plugins/kibana_react/public'; | ||
import { IContainer, EmbeddableFactory } from '../../../../src/plugins/embeddable/public'; | ||
import { TodoEmbeddable, TODO_EMBEDDABLE, TodoInput, TodoOutput } from './todo_embeddable'; | ||
|
||
function TaskInput({ onSave }: { onSave: (task: string) => void }) { | ||
const [task, setTask] = useState(''); | ||
return ( | ||
<EuiModalBody> | ||
<EuiFieldText | ||
data-test-subj="taskInputField" | ||
value={task} | ||
placeholder="Enter task here" | ||
onChange={e => setTask(e.target.value)} | ||
/> | ||
<EuiButton data-test-subj="createTodoEmbeddable" onClick={() => onSave(task)}> | ||
Save | ||
</EuiButton> | ||
</EuiModalBody> | ||
); | ||
} | ||
|
||
export class TodoEmbeddableFactory extends EmbeddableFactory< | ||
TodoInput, | ||
TodoOutput, | ||
TodoEmbeddable | ||
> { | ||
public readonly type = TODO_EMBEDDABLE; | ||
|
||
constructor(private openModal: OverlayStart['openModal']) { | ||
super(); | ||
} | ||
|
||
public isEditable() { | ||
return true; | ||
} | ||
|
||
public async create(initialInput: TodoInput, parent?: IContainer) { | ||
return new TodoEmbeddable(initialInput, parent); | ||
} | ||
|
||
/** | ||
* This function is used when dynamically creating a new embeddable to add to a | ||
* container. Some input may be inherited from the container, but not all. This can be | ||
* used to collect specific embeddable input that the container will not provide, like | ||
* in this case, the task string. | ||
*/ | ||
public async getExplicitInput() { | ||
return new Promise<{ task: string }>(resolve => { | ||
const onSave = (task: string) => resolve({ task }); | ||
const overlay = this.openModal( | ||
toMountPoint( | ||
<TaskInput | ||
onSave={(task: string) => { | ||
onSave(task); | ||
overlay.close(); | ||
}} | ||
/> | ||
) | ||
); | ||
}); | ||
} | ||
|
||
public getDisplayName() { | ||
return i18n.translate('embeddableExamples.todo.displayName', { | ||
defaultMessage: 'Todo item', | ||
}); | ||
} | ||
} |
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.