/* * Copyright OpenSearch Contributors * SPDX-License-Identifier: Apache-2.0 */ import React from 'react'; import classNames from 'classnames'; import { EuiToken, EuiTokenProps } from '@elastic/eui'; export interface FieldIconProps extends Omit { type: | 'boolean' | 'conflict' | 'date' | 'geo_point' | 'geo_shape' | 'ip' | 'murmur3' | 'number' | '_source' | 'string' | string | 'nested'; label?: string; scripted?: boolean; } // defaultIcon => a unknown datatype const defaultIcon = { iconType: 'tokenString' }; export const typeToEuiIconMap: Partial> = { boolean: { iconType: 'tokenBoolean' }, // icon for an index pattern mapping conflict in discover conflict: { iconType: 'alert', color: 'euiVisColor9' }, date: { iconType: 'tokenDate' }, geo_point: { iconType: 'tokenGeo' }, geo_shape: { iconType: 'tokenGeo' }, ip: { iconType: 'tokenIP' }, // is a plugin's data type https://www.elastic.co/guide/en/elasticsearch/plugins/current/mapper-murmur3-usage.html murmur3: { iconType: 'tokenFile' }, number: { iconType: 'tokenNumber' }, _source: { iconType: 'editorCodeBlock', color: 'gray' }, string: { iconType: 'tokenString' }, nested: { iconType: 'tokenNested' }, }; /** * Field token icon used across the app */ export function FieldIcon({ type, label, size = 'l', scripted, className, ...rest }: FieldIconProps) { const token = typeToEuiIconMap[type] || defaultIcon; return ( ); }