1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- import type {ComponentProps} from 'react';
- import styled from '@emotion/styled';
- import PanelAlert from 'sentry/components/panels/panelAlert';
- import WidgetCard from 'sentry/views/dashboards/widgetCard';
- import type {DashboardFilters, Widget} from './types';
- const TABLE_ITEM_LIMIT = 20;
- type Props = {
- index: string;
- isEditingDashboard: boolean;
- onDelete: () => void;
- onDuplicate: () => void;
- onEdit: () => void;
- widget: Widget;
- widgetLimitReached: boolean;
- dashboardFilters?: DashboardFilters;
- isMobile?: boolean;
- isPreview?: boolean;
- windowWidth?: number;
- };
- function SortableWidget(props: Props) {
- const {
- widget,
- isEditingDashboard,
- widgetLimitReached,
- onDelete,
- onEdit,
- onDuplicate,
- isPreview,
- isMobile,
- windowWidth,
- index,
- dashboardFilters,
- } = props;
- const widgetProps: ComponentProps<typeof WidgetCard> = {
- widget,
- isEditingDashboard,
- widgetLimitReached,
- onDelete,
- onEdit,
- onDuplicate,
- showContextMenu: true,
- isPreview,
- index,
- dashboardFilters,
- renderErrorMessage: errorMessage => {
- return (
- typeof errorMessage === 'string' && (
- <PanelAlert type="error">{errorMessage}</PanelAlert>
- )
- );
- },
- isMobile,
- windowWidth,
- tableItemLimit: TABLE_ITEM_LIMIT,
- };
- return (
- <GridWidgetWrapper>
- <WidgetCard {...widgetProps} />
- </GridWidgetWrapper>
- );
- }
- export default SortableWidget;
- const GridWidgetWrapper = styled('div')`
- height: 100%;
- `;
|