123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- import {Fragment, useMemo} from 'react';
- import {useTheme} from '@emotion/react';
- import styled from '@emotion/styled';
- import {Tooltip} from 'sentry/components/tooltip';
- import {TokenType} from 'sentry/views/metrics/formulaParser/types';
- import grammar from './formulaFormatting.pegjs';
- const operatorTokens = new Set([
- TokenType.PLUS,
- TokenType.MINUS,
- TokenType.MULTIPLY,
- TokenType.DIVIDE,
- ]);
- interface FormularFormatterProps {
- formula: string;
- errors?: {
- message: string;
- start: number;
- end?: number;
- }[];
- }
- export function FormularFormatter({formula, errors}: FormularFormatterProps) {
- const theme = useTheme();
- const tokens = useMemo(() => {
- try {
- return grammar.parse(formula);
- } catch (err) {
- return undefined;
- }
- }, [formula]);
- if (!tokens) {
- // If the formula cannot be parsed, we simply return it without any highlighting
- return <Fragment>{formula}</Fragment>;
- }
- const findMatchingError = (charCount: number) => {
- if (!errors || errors.length === 0) {
- return null;
- }
- return errors.find(
- error => error.start <= charCount && (!error.end || error.end >= charCount)
- );
- };
- let charCount = 0;
- let hasActiveTooltip = false;
- const renderedTokens = (
- <Fragment>
- {tokens.map((token, index) => {
- const error = findMatchingError(charCount);
- charCount += token.content.length;
- if (error) {
- const content = (
- <Token key={index} style={{color: theme.errorText}}>
- {token.content}
- </Token>
- );
- // Only show one tooltip at a time
- const showTooltip = !hasActiveTooltip;
- hasActiveTooltip = true;
- return showTooltip ? (
- <Tooltip title={error.message} key={index} forceVisible>
- {content}
- </Tooltip>
- ) : (
- content
- );
- }
- if (token.type === TokenType.VARIABLE) {
- return (
- <Token key={index} style={{color: theme.yellow400, fontWeight: 'bold'}}>
- {token.content}
- </Token>
- );
- }
- if (operatorTokens.has(token.type)) {
- return (
- <Token key={index} style={{color: theme.blue300}}>
- {token.content}
- </Token>
- );
- }
- return (
- <Token key={index} style={{color: theme.gray500}}>
- {token.content}
- </Token>
- );
- })}
- </Fragment>
- );
- // Unexpected EOL might not match a token
- const remainingError = !hasActiveTooltip && findMatchingError(charCount);
- return (
- <Fragment>
- {renderedTokens}
- {remainingError && (
- <Tooltip title={findMatchingError(charCount)?.message} forceVisible>
-
- </Tooltip>
- )}
- </Fragment>
- );
- }
- const Token = styled('span')`
- white-space: pre;
- `;
|