/* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * and the Server Side Public License, v 1; you may not use this file except in * compliance with, at your election, the Elastic License or the Server Side * Public License, v 1. */ import React from 'react'; import { EuiFlexItem, EuiFlexGroup } from '@elastic/eui'; import { EuiText } from '@elastic/eui'; import { EuiAvatar } from '@elastic/eui'; import { EuiIcon } from '@elastic/eui'; import { EuiFlexGrid } from '@elastic/eui'; import { withEmbeddableSubscription, EmbeddableOutput, } from '../../../../src/plugins/embeddable/public'; import { TodoEmbeddable, TodoInput } from './todo_embeddable'; interface Props { embeddable: TodoEmbeddable; input: TodoInput; output: EmbeddableOutput; } function wrapSearchTerms(task: string, search?: string) { if (!search) return task; const parts = task.split(new RegExp(`(${search})`, 'g')); return parts.map((part, i) => part === search ? ( {part} ) : ( part ) ); } export function TodoEmbeddableComponentInner({ input: { icon, title, task, search } }: Props) { return ( {icon ? : }

{wrapSearchTerms(title || '', search)}

{wrapSearchTerms(task, search)}
); } export const TodoEmbeddableComponent = withEmbeddableSubscription< TodoInput, EmbeddableOutput, TodoEmbeddable >(TodoEmbeddableComponentInner);