123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- import {Fragment, useMemo, useState} from 'react';
- import {useSortable} from '@dnd-kit/sortable';
- import {CSS} from '@dnd-kit/utilities';
- import styled from '@emotion/styled';
- import type {ModalRenderProps} from 'sentry/actionCreators/modal';
- import {Button, LinkButton} from 'sentry/components/button';
- import ButtonBar from 'sentry/components/buttonBar';
- import type {SelectKey, SelectOption} from 'sentry/components/compactSelect';
- import {CompactSelect} from 'sentry/components/compactSelect';
- import {SPAN_PROPS_DOCS_URL} from 'sentry/constants';
- import {IconAdd} from 'sentry/icons/iconAdd';
- import {IconDelete} from 'sentry/icons/iconDelete';
- import {IconGrabbable} from 'sentry/icons/iconGrabbable';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import type {TagCollection} from 'sentry/types/group';
- import {defined} from 'sentry/utils';
- import {TypeBadge} from 'sentry/views/explore/components/typeBadge';
- import {DragNDropContext} from '../contexts/dragNDropContext';
- import type {Column} from '../hooks/useDragNDropColumns';
- interface ColumnEditorModalProps extends ModalRenderProps {
- columns: string[];
- numberTags: TagCollection;
- onColumnsChange: (fields: string[]) => void;
- stringTags: TagCollection;
- }
- export function ColumnEditorModal({
- Header,
- Body,
- Footer,
- closeModal,
- columns,
- onColumnsChange,
- numberTags,
- stringTags,
- }: ColumnEditorModalProps) {
- const tags: SelectOption<string>[] = useMemo(() => {
- const allTags = [
- ...Object.values(stringTags).map(tag => {
- return {
- label: tag.name,
- value: tag.key,
- textValue: tag.name,
- trailingItems: <TypeBadge tag={tag} />,
- };
- }),
- ...Object.values(numberTags).map(tag => {
- return {
- label: tag.name,
- value: tag.key,
- textValue: tag.name,
- trailingItems: <TypeBadge tag={tag} />,
- };
- }),
- ];
- allTags.sort((a, b) => {
- if (a.label < b.label) {
- return -1;
- }
- if (a.label > b.label) {
- return 1;
- }
- return 0;
- });
- return allTags;
- }, [stringTags, numberTags]);
- // We keep a temporary state for the columns so that we can apply the changes
- // only when the user clicks on the apply button.
- const [tempColumns, setTempColumns] = useState<string[]>(columns);
- function handleApply() {
- onColumnsChange(tempColumns);
- closeModal();
- }
- return (
- <DragNDropContext columns={tempColumns} setColumns={setTempColumns}>
- {({insertColumn, updateColumnAtIndex, deleteColumnAtIndex, editableColumns}) => (
- <Fragment>
- <Header closeButton data-test-id="editor-header">
- <h4>{t('Edit Table')}</h4>
- </Header>
- <Body data-test-id="editor-body">
- {editableColumns.map((column, i) => {
- return (
- <ColumnEditorRow
- key={column.id}
- canDelete={editableColumns.length > 1}
- column={column}
- options={tags}
- onColumnChange={c => updateColumnAtIndex(i, c)}
- onColumnDelete={() => deleteColumnAtIndex(i)}
- />
- );
- })}
- <RowContainer>
- <ButtonBar gap={1}>
- <Button
- size="sm"
- aria-label={t('Add a Column')}
- onClick={insertColumn}
- icon={<IconAdd isCircled />}
- >
- {t('Add a Column')}
- </Button>
- </ButtonBar>
- </RowContainer>
- </Body>
- <Footer data-test-id="editor-footer">
- <ButtonBar gap={1}>
- <LinkButton priority="default" href={SPAN_PROPS_DOCS_URL} external>
- {t('Read the Docs')}
- </LinkButton>
- <Button aria-label={t('Apply')} priority="primary" onClick={handleApply}>
- {t('Apply')}
- </Button>
- </ButtonBar>
- </Footer>
- </Fragment>
- )}
- </DragNDropContext>
- );
- }
- interface ColumnEditorRowProps {
- canDelete: boolean;
- column: Column;
- onColumnChange: (column: string) => void;
- onColumnDelete: () => void;
- options: SelectOption<string>[];
- }
- function ColumnEditorRow({
- canDelete,
- column,
- options,
- onColumnChange,
- onColumnDelete,
- }: ColumnEditorRowProps) {
- const {attributes, listeners, setNodeRef, transform, transition} = useSortable({
- id: column.id,
- });
- function handleColumnChange(option: SelectOption<SelectKey>) {
- if (defined(option) && typeof option.value === 'string') {
- onColumnChange(option.value);
- }
- }
- // The compact select component uses the option label to render the current
- // selection. This overrides it to render in a trailing item showing the type.
- const label = useMemo(() => {
- if (defined(column.column)) {
- const tag = options.find(option => option.value === column.column);
- if (defined(tag)) {
- return (
- <TriggerLabel>
- {tag.label}
- {tag.trailingItems &&
- (typeof tag.trailingItems === 'function'
- ? tag.trailingItems({
- disabled: false,
- isFocused: false,
- isSelected: false,
- })
- : tag.trailingItems)}
- </TriggerLabel>
- );
- }
- }
- return <TriggerLabel>{!column.column && t('None')}</TriggerLabel>;
- }, [column.column, options]);
- return (
- <RowContainer
- key={column.id}
- ref={setNodeRef}
- style={{
- transform: CSS.Transform.toString(transform),
- transition,
- }}
- {...attributes}
- >
- <Button
- aria-label={t('Drag to reorder')}
- borderless
- size="sm"
- icon={<IconGrabbable size="sm" />}
- {...listeners}
- />
- <StyledCompactSelect
- data-test-id="editor-column"
- options={options}
- triggerLabel={label}
- value={column.column ?? ''}
- onChange={handleColumnChange}
- searchable
- triggerProps={{
- prefix: t('Column'),
- style: {
- width: '100%',
- },
- }}
- />
- <Button
- aria-label={t('Remove Column')}
- borderless
- disabled={!canDelete}
- size="sm"
- icon={<IconDelete size="sm" />}
- onClick={() => onColumnDelete()}
- />
- </RowContainer>
- );
- }
- const RowContainer = styled('div')`
- display: flex;
- flex-direction: row;
- align-items: center;
- :not(:first-child) {
- margin-top: ${space(1)};
- }
- `;
- const StyledCompactSelect = styled(CompactSelect)`
- flex-grow: 1;
- `;
- const TriggerLabel = styled('span')`
- ${p => p.theme.overflowEllipsis}
- text-align: left;
- line-height: normal;
- display: flex;
- justify-content: space-between;
- `;
|