12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130 |
- import {Fragment, memo, useEffect, useMemo, useRef, useState} from 'react';
- // eslint-disable-next-line no-restricted-imports
- import {withRouter, WithRouterProps} from 'react-router';
- import {components} from 'react-select';
- import {css} from '@emotion/react';
- import styled from '@emotion/styled';
- import * as Sentry from '@sentry/react';
- import {truncate} from '@sentry/utils';
- import type {DataZoomComponentOption} from 'echarts';
- import {Location} from 'history';
- import cloneDeep from 'lodash/cloneDeep';
- import isEqual from 'lodash/isEqual';
- import trimStart from 'lodash/trimStart';
- import moment from 'moment';
- import {fetchTotalCount} from 'sentry/actionCreators/events';
- import {ModalRenderProps} from 'sentry/actionCreators/modal';
- import {Client} from 'sentry/api';
- import Alert from 'sentry/components/alert';
- import Button from 'sentry/components/button';
- import ButtonBar from 'sentry/components/buttonBar';
- import SelectControl from 'sentry/components/forms/selectControl';
- import Option from 'sentry/components/forms/selectOption';
- import GridEditable, {
- COL_WIDTH_UNDEFINED,
- GridColumnOrder,
- } from 'sentry/components/gridEditable';
- import Pagination from 'sentry/components/pagination';
- import QuestionTooltip from 'sentry/components/questionTooltip';
- import {parseSearch} from 'sentry/components/searchSyntax/parser';
- import HighlightQuery from 'sentry/components/searchSyntax/renderer';
- import {t, tct} from 'sentry/locale';
- import space from 'sentry/styles/space';
- import {Organization, PageFilters, SelectValue} from 'sentry/types';
- import {Series} from 'sentry/types/echarts';
- import {defined} from 'sentry/utils';
- import trackAdvancedAnalyticsEvent from 'sentry/utils/analytics/trackAdvancedAnalyticsEvent';
- import {getUtcDateString} from 'sentry/utils/dates';
- import {TableDataWithTitle} from 'sentry/utils/discover/discoverQuery';
- import EventView from 'sentry/utils/discover/eventView';
- import {
- AggregationOutputType,
- isAggregateField,
- isEquation,
- isEquationAlias,
- } from 'sentry/utils/discover/fields';
- import parseLinkHeader from 'sentry/utils/parseLinkHeader';
- import {decodeInteger, decodeList, decodeScalar} from 'sentry/utils/queryString';
- import useApi from 'sentry/utils/useApi';
- import withPageFilters from 'sentry/utils/withPageFilters';
- import {DisplayType, Widget, WidgetType} from 'sentry/views/dashboardsV2/types';
- import {
- eventViewFromWidget,
- getFieldsFromEquations,
- getNumEquations,
- getWidgetDiscoverUrl,
- getWidgetIssueUrl,
- getWidgetReleasesUrl,
- isCustomMeasurementWidget,
- } from 'sentry/views/dashboardsV2/utils';
- import WidgetCardChart, {
- AugmentedEChartDataZoomHandler,
- SLIDER_HEIGHT,
- } from 'sentry/views/dashboardsV2/widgetCard/chart';
- import {
- DashboardsMEPProvider,
- useDashboardsMEPContext,
- } from 'sentry/views/dashboardsV2/widgetCard/dashboardsMEPContext';
- import {GenericWidgetQueriesChildrenProps} from 'sentry/views/dashboardsV2/widgetCard/genericWidgetQueries';
- import IssueWidgetQueries from 'sentry/views/dashboardsV2/widgetCard/issueWidgetQueries';
- import ReleaseWidgetQueries from 'sentry/views/dashboardsV2/widgetCard/releaseWidgetQueries';
- import {WidgetCardChartContainer} from 'sentry/views/dashboardsV2/widgetCard/widgetCardChartContainer';
- import WidgetQueries from 'sentry/views/dashboardsV2/widgetCard/widgetQueries';
- import {decodeColumnOrder} from 'sentry/views/eventsV2/utils';
- import {WidgetViewerQueryField} from './widgetViewerModal/utils';
- import {
- renderDiscoverGridHeaderCell,
- renderGridBodyCell,
- renderIssueGridHeaderCell,
- renderReleaseGridHeaderCell,
- } from './widgetViewerModal/widgetViewerTableCell';
- export interface WidgetViewerModalOptions {
- organization: Organization;
- widget: Widget;
- onEdit?: () => void;
- pageLinks?: string;
- seriesData?: Series[];
- seriesResultsType?: Record<string, AggregationOutputType>;
- tableData?: TableDataWithTitle[];
- totalIssuesCount?: string;
- }
- interface Props extends ModalRenderProps, WithRouterProps, WidgetViewerModalOptions {
- organization: Organization;
- selection: PageFilters;
- }
- const FULL_TABLE_ITEM_LIMIT = 20;
- const HALF_TABLE_ITEM_LIMIT = 10;
- const GEO_COUNTRY_CODE = 'geo.country_code';
- const HALF_CONTAINER_HEIGHT = 300;
- const EMPTY_QUERY_NAME = '(Empty Query Condition)';
- const shouldWidgetCardChartMemo = (prevProps, props) => {
- const selectionMatches = props.selection === prevProps.selection;
- const sortMatches =
- props.location.query[WidgetViewerQueryField.SORT] ===
- prevProps.location.query[WidgetViewerQueryField.SORT];
- const chartZoomOptionsMatches = isEqual(
- props.chartZoomOptions,
- prevProps.chartZoomOptions
- );
- const isNotTopNWidget =
- props.widget.displayType !== DisplayType.TOP_N && !defined(props.widget.limit);
- return selectionMatches && chartZoomOptionsMatches && (sortMatches || isNotTopNWidget);
- };
- // WidgetCardChartContainer and WidgetCardChart rerenders if selection was changed.
- // This is required because we want to prevent ECharts interactions from causing
- // unnecessary rerenders which can break legends and zoom functionality.
- const MemoizedWidgetCardChartContainer = memo(
- WidgetCardChartContainer,
- shouldWidgetCardChartMemo
- );
- const MemoizedWidgetCardChart = memo(WidgetCardChart, shouldWidgetCardChartMemo);
- async function fetchDiscoverTotal(
- api: Client,
- organization: Organization,
- location: Location,
- eventView: EventView
- ): Promise<string | undefined> {
- if (!eventView.isValid()) {
- return undefined;
- }
- try {
- const total = await fetchTotalCount(
- api,
- organization.slug,
- eventView.getEventsAPIPayload(location)
- );
- return total.toLocaleString();
- } catch (err) {
- Sentry.captureException(err);
- return undefined;
- }
- }
- function WidgetViewerModal(props: Props) {
- const {
- organization,
- widget,
- selection,
- location,
- Footer,
- Body,
- Header,
- closeModal,
- onEdit,
- router,
- routes,
- params,
- seriesData,
- tableData,
- totalIssuesCount,
- pageLinks: defaultPageLinks,
- seriesResultsType,
- } = props;
- const shouldShowSlider = organization.features.includes('widget-viewer-modal-minimap');
- // Get widget zoom from location
- // We use the start and end query params for just the initial state
- const start = decodeScalar(location.query[WidgetViewerQueryField.START]);
- const end = decodeScalar(location.query[WidgetViewerQueryField.END]);
- const isTableWidget = widget.displayType === DisplayType.TABLE;
- const locationPageFilter = useMemo(
- () =>
- start && end
- ? {
- ...selection,
- datetime: {start, end, period: null, utc: null},
- }
- : selection,
- [start, end, selection]
- );
- const [chartUnmodified, setChartUnmodified] = useState<boolean>(true);
- const [chartZoomOptions, setChartZoomOptions] = useState<DataZoomComponentOption>({
- start: 0,
- end: 100,
- });
- // We wrap the modalChartSelection in a useRef because we do not want to recalculate this value
- // (which would cause an unnecessary rerender on calculation) except for the initial load.
- // We use this for when a user visit a widget viewer url directly.
- const [modalTableSelection, setModalTableSelection] =
- useState<PageFilters>(locationPageFilter);
- const modalChartSelection = useRef(modalTableSelection);
- // Detect when a user clicks back and set the PageFilter state to match the location
- // We need to use useEffect to prevent infinite looping rerenders due to the setModalTableSelection call
- useEffect(() => {
- if (location.action === 'POP') {
- setModalTableSelection(locationPageFilter);
- if (start && end) {
- setChartZoomOptions({
- startValue: moment.utc(start).unix() * 1000,
- endValue: moment.utc(end).unix() * 1000,
- });
- } else {
- setChartZoomOptions({start: 0, end: 100});
- }
- }
- }, [end, location, locationPageFilter, start]);
- // Get legends toggle settings from location
- // We use the legend query params for just the initial state
- const [disabledLegends, setDisabledLegends] = useState<{[key: string]: boolean}>(
- decodeList(location.query[WidgetViewerQueryField.LEGEND]).reduce((acc, legend) => {
- acc[legend] = false;
- return acc;
- }, {})
- );
- const [totalResults, setTotalResults] = useState<string | undefined>();
- // Get query selection settings from location
- const selectedQueryIndex =
- decodeInteger(location.query[WidgetViewerQueryField.QUERY]) ?? 0;
- // Get pagination settings from location
- const page = decodeInteger(location.query[WidgetViewerQueryField.PAGE]) ?? 0;
- const cursor = decodeScalar(location.query[WidgetViewerQueryField.CURSOR]);
- // Get table column widths from location
- const widths = decodeList(location.query[WidgetViewerQueryField.WIDTH]);
- // Get table sort settings from location
- const sort = decodeScalar(location.query[WidgetViewerQueryField.SORT]);
- const sortedQueries = cloneDeep(
- sort ? widget.queries.map(query => ({...query, orderby: sort})) : widget.queries
- );
- // Top N widget charts (including widgets with limits) results rely on the sorting of the query
- // Set the orderby of the widget chart to match the location query params
- const primaryWidget =
- widget.displayType === DisplayType.TOP_N || widget.limit !== undefined
- ? {...widget, queries: sortedQueries}
- : widget;
- const api = useApi();
- // Create Table widget
- const tableWidget = {
- ...cloneDeep({...widget, queries: [sortedQueries[selectedQueryIndex]]}),
- displayType: DisplayType.TABLE,
- };
- const {aggregates, columns} = tableWidget.queries[0];
- const {orderby} = widget.queries[0];
- const order = orderby.startsWith('-');
- const rawOrderby = trimStart(orderby, '-');
- const fields = defined(tableWidget.queries[0].fields)
- ? tableWidget.queries[0].fields
- : [...columns, ...aggregates];
- // Some Discover Widgets (Line, Area, Bar) allow the user to specify an orderby
- // that is not explicitly selected as an aggregate or column. We need to explicitly
- // include the orderby in the table widget aggregates and columns otherwise
- // eventsv2 will complain about sorting on an unselected field.
- if (
- widget.widgetType === WidgetType.DISCOVER &&
- orderby &&
- !isEquationAlias(rawOrderby) &&
- !fields.includes(rawOrderby)
- ) {
- fields.push(rawOrderby);
- [tableWidget, primaryWidget].forEach(aggregatesAndColumns => {
- if (isAggregateField(rawOrderby) || isEquation(rawOrderby)) {
- aggregatesAndColumns.queries.forEach(query => {
- if (!query.aggregates.includes(rawOrderby)) {
- query.aggregates.push(rawOrderby);
- }
- });
- } else {
- aggregatesAndColumns.queries.forEach(query => {
- if (!query.columns.includes(rawOrderby)) {
- query.columns.push(rawOrderby);
- }
- });
- }
- });
- }
- // Need to set the orderby of the eventsv2 query to equation[index] format
- // since eventsv2 does not accept the raw equation as a valid sort payload
- if (isEquation(rawOrderby) && tableWidget.queries[0].orderby === orderby) {
- tableWidget.queries[0].orderby = `${order ? '-' : ''}equation[${
- getNumEquations(fields) - 1
- }]`;
- }
- // World Map view should always have geo.country in the table chart
- if (
- widget.displayType === DisplayType.WORLD_MAP &&
- !columns.includes(GEO_COUNTRY_CODE)
- ) {
- fields.unshift(GEO_COUNTRY_CODE);
- columns.unshift(GEO_COUNTRY_CODE);
- }
- // Default table columns for visualizations that don't have a column setting
- const shouldReplaceTableColumns =
- [
- DisplayType.AREA,
- DisplayType.LINE,
- DisplayType.BIG_NUMBER,
- DisplayType.BAR,
- ].includes(widget.displayType) &&
- widget.widgetType &&
- [WidgetType.DISCOVER, WidgetType.RELEASE].includes(widget.widgetType) &&
- !defined(widget.limit);
- // Updates fields by adding any individual terms from equation fields as a column
- if (!isTableWidget) {
- const equationFields = getFieldsFromEquations(fields);
- equationFields.forEach(term => {
- if (isAggregateField(term) && !aggregates.includes(term)) {
- aggregates.unshift(term);
- }
- if (!isAggregateField(term) && !columns.includes(term)) {
- columns.unshift(term);
- }
- });
- }
- // Add any group by columns into table fields if missing
- columns.forEach(column => {
- if (!fields.includes(column)) {
- fields.unshift(column);
- }
- });
- if (shouldReplaceTableColumns) {
- switch (widget.widgetType) {
- case WidgetType.DISCOVER:
- if (fields.length === 1) {
- tableWidget.queries[0].orderby =
- tableWidget.queries[0].orderby || `-${fields[0]}`;
- }
- fields.unshift('title');
- columns.unshift('title');
- break;
- case WidgetType.RELEASE:
- fields.unshift('release');
- columns.unshift('release');
- break;
- default:
- break;
- }
- }
- const eventView = eventViewFromWidget(
- tableWidget.title,
- tableWidget.queries[0],
- modalTableSelection,
- tableWidget.displayType
- );
- let columnOrder = decodeColumnOrder(
- fields.map(field => ({
- field,
- })),
- organization.features.includes('discover-frontend-use-events-endpoint')
- );
- const columnSortBy = eventView.getSorts();
- columnOrder = columnOrder.map((column, index) => ({
- ...column,
- width: parseInt(widths[index], 10) || -1,
- }));
- const queryOptions = sortedQueries.map(({name, conditions}, index) => {
- // Creates the highlighted query elements to be used in the Query Select
- const parsedQuery = !!!name && !!conditions ? parseSearch(conditions) : null;
- const getHighlightedQuery = (
- highlightedContainerProps: React.ComponentProps<typeof HighlightContainer>
- ) => {
- return parsedQuery !== null ? (
- <HighlightContainer {...highlightedContainerProps}>
- <HighlightQuery parsedQuery={parsedQuery} />
- </HighlightContainer>
- ) : undefined;
- };
- return {
- label: truncate(name || conditions, 120),
- value: index,
- getHighlightedQuery,
- };
- });
- const onResizeColumn = (columnIndex: number, nextColumn: GridColumnOrder) => {
- const newWidth = nextColumn.width ? Number(nextColumn.width) : COL_WIDTH_UNDEFINED;
- const newWidths: number[] = new Array(Math.max(columnIndex, widths.length)).fill(
- COL_WIDTH_UNDEFINED
- );
- widths.forEach((width, index) => (newWidths[index] = parseInt(width, 10)));
- newWidths[columnIndex] = newWidth;
- router.replace({
- pathname: location.pathname,
- query: {
- ...location.query,
- [WidgetViewerQueryField.WIDTH]: newWidths,
- },
- });
- };
- // Get discover result totals
- useEffect(() => {
- const getDiscoverTotals = async () => {
- if (widget.widgetType === WidgetType.DISCOVER) {
- setTotalResults(await fetchDiscoverTotal(api, organization, location, eventView));
- }
- };
- getDiscoverTotals();
- // Disabling this for now since this effect should only run on initial load and query index changes
- // Including all exhaustive deps would cause fetchDiscoverTotal on nearly every update
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, [selectedQueryIndex]);
- function onLegendSelectChanged({selected}: {selected: Record<string, boolean>}) {
- setDisabledLegends(selected);
- router.replace({
- pathname: location.pathname,
- query: {
- ...location.query,
- [WidgetViewerQueryField.LEGEND]: Object.keys(selected).filter(
- key => !selected[key]
- ),
- },
- });
- trackAdvancedAnalyticsEvent('dashboards_views.widget_viewer.toggle_legend', {
- organization,
- widget_type: widget.widgetType ?? WidgetType.DISCOVER,
- display_type: widget.displayType,
- });
- }
- function DiscoverTable({
- tableResults,
- loading,
- pageLinks,
- }: GenericWidgetQueriesChildrenProps) {
- const {isMetricsData} = useDashboardsMEPContext();
- const links = parseLinkHeader(pageLinks ?? null);
- const isFirstPage = links.previous?.results === false;
- return (
- <Fragment>
- <GridEditable
- isLoading={loading}
- data={tableResults?.[0]?.data ?? []}
- columnOrder={columnOrder}
- columnSortBy={columnSortBy}
- grid={{
- renderHeadCell: renderDiscoverGridHeaderCell({
- ...props,
- widget: tableWidget,
- tableData: tableResults?.[0],
- onHeaderClick: () => {
- if (
- [DisplayType.TOP_N, DisplayType.TABLE].includes(widget.displayType) ||
- defined(widget.limit)
- ) {
- setChartUnmodified(false);
- }
- },
- isMetricsData,
- }) as (column: GridColumnOrder, columnIndex: number) => React.ReactNode,
- renderBodyCell: renderGridBodyCell({
- ...props,
- tableData: tableResults?.[0],
- isFirstPage,
- }),
- onResizeColumn,
- }}
- location={location}
- />
- {(links?.previous?.results || links?.next?.results) && (
- <Pagination
- pageLinks={pageLinks}
- onCursor={newCursor => {
- router.replace({
- pathname: location.pathname,
- query: {
- ...location.query,
- [WidgetViewerQueryField.CURSOR]: newCursor,
- },
- });
- if (widget.displayType === DisplayType.TABLE) {
- setChartUnmodified(false);
- }
- trackAdvancedAnalyticsEvent('dashboards_views.widget_viewer.paginate', {
- organization,
- widget_type: WidgetType.DISCOVER,
- display_type: widget.displayType,
- });
- }}
- />
- )}
- </Fragment>
- );
- }
- const renderIssuesTable = ({
- tableResults,
- loading,
- pageLinks,
- totalCount,
- }: GenericWidgetQueriesChildrenProps) => {
- if (totalResults === undefined && totalCount) {
- setTotalResults(totalCount);
- }
- const links = parseLinkHeader(pageLinks ?? null);
- return (
- <Fragment>
- <GridEditable
- isLoading={loading}
- data={tableResults?.[0]?.data ?? []}
- columnOrder={columnOrder}
- columnSortBy={columnSortBy}
- grid={{
- renderHeadCell: renderIssueGridHeaderCell({
- location,
- organization,
- selection,
- widget: tableWidget,
- onHeaderClick: () => {
- setChartUnmodified(false);
- },
- }) as (column: GridColumnOrder, columnIndex: number) => React.ReactNode,
- renderBodyCell: renderGridBodyCell({
- location,
- organization,
- selection,
- widget: tableWidget,
- }),
- onResizeColumn,
- }}
- location={location}
- />
- {(links?.previous?.results || links?.next?.results) && (
- <Pagination
- pageLinks={pageLinks}
- onCursor={(nextCursor, _path, _query, delta) => {
- let nextPage = isNaN(page) ? delta : page + delta;
- let newCursor = nextCursor;
- // unset cursor and page when we navigate back to the first page
- // also reset cursor if somehow the previous button is enabled on
- // first page and user attempts to go backwards
- if (nextPage <= 0) {
- newCursor = undefined;
- nextPage = 0;
- }
- router.replace({
- pathname: location.pathname,
- query: {
- ...location.query,
- [WidgetViewerQueryField.CURSOR]: newCursor,
- [WidgetViewerQueryField.PAGE]: nextPage,
- },
- });
- if (widget.displayType === DisplayType.TABLE) {
- setChartUnmodified(false);
- }
- trackAdvancedAnalyticsEvent('dashboards_views.widget_viewer.paginate', {
- organization,
- widget_type: WidgetType.ISSUE,
- display_type: widget.displayType,
- });
- }}
- />
- )}
- </Fragment>
- );
- };
- const renderReleaseTable: ReleaseWidgetQueries['props']['children'] = ({
- tableResults,
- loading,
- pageLinks,
- }) => {
- const links = parseLinkHeader(pageLinks ?? null);
- const isFirstPage = links.previous?.results === false;
- return (
- <Fragment>
- <GridEditable
- isLoading={loading}
- data={tableResults?.[0]?.data ?? []}
- columnOrder={columnOrder}
- columnSortBy={columnSortBy}
- grid={{
- renderHeadCell: renderReleaseGridHeaderCell({
- ...props,
- widget: tableWidget,
- tableData: tableResults?.[0],
- onHeaderClick: () => {
- if (
- [DisplayType.TOP_N, DisplayType.TABLE].includes(widget.displayType) ||
- defined(widget.limit)
- ) {
- setChartUnmodified(false);
- }
- },
- }) as (column: GridColumnOrder, columnIndex: number) => React.ReactNode,
- renderBodyCell: renderGridBodyCell({
- ...props,
- tableData: tableResults?.[0],
- isFirstPage,
- }),
- onResizeColumn,
- }}
- location={location}
- />
- {!tableWidget.queries[0].orderby.match(/^-?release$/) &&
- (links?.previous?.results || links?.next?.results) && (
- <Pagination
- pageLinks={pageLinks}
- onCursor={newCursor => {
- router.replace({
- pathname: location.pathname,
- query: {
- ...location.query,
- [WidgetViewerQueryField.CURSOR]: newCursor,
- },
- });
- trackAdvancedAnalyticsEvent('dashboards_views.widget_viewer.paginate', {
- organization,
- widget_type: WidgetType.RELEASE,
- display_type: widget.displayType,
- });
- }}
- />
- )}
- </Fragment>
- );
- };
- const onZoom: AugmentedEChartDataZoomHandler = (evt, chart) => {
- // @ts-ignore getModel() is private but we need this to retrieve datetime values of zoomed in region
- const model = chart.getModel();
- const {seriesStart, seriesEnd} = evt;
- let startValue, endValue;
- startValue = model._payload.batch?.[0].startValue;
- endValue = model._payload.batch?.[0].endValue;
- const seriesStartTime = seriesStart ? new Date(seriesStart).getTime() : undefined;
- const seriesEndTime = seriesEnd ? new Date(seriesEnd).getTime() : undefined;
- // Slider zoom events don't contain the raw date time value, only the percentage
- // We use the percentage with the start and end of the series to calculate the adjusted zoom
- if (startValue === undefined || endValue === undefined) {
- if (seriesStartTime && seriesEndTime) {
- const diff = seriesEndTime - seriesStartTime;
- startValue = diff * model._payload.start * 0.01 + seriesStartTime;
- endValue = diff * model._payload.end * 0.01 + seriesStartTime;
- } else {
- return;
- }
- }
- setChartZoomOptions({startValue, endValue});
- const newStart = getUtcDateString(moment.utc(startValue));
- const newEnd = getUtcDateString(moment.utc(endValue));
- setModalTableSelection({
- ...modalTableSelection,
- datetime: {
- ...modalTableSelection.datetime,
- start: newStart,
- end: newEnd,
- period: null,
- },
- });
- router.push({
- pathname: location.pathname,
- query: {
- ...location.query,
- [WidgetViewerQueryField.START]: newStart,
- [WidgetViewerQueryField.END]: newEnd,
- },
- });
- trackAdvancedAnalyticsEvent('dashboards_views.widget_viewer.zoom', {
- organization,
- widget_type: widget.widgetType ?? WidgetType.DISCOVER,
- display_type: widget.displayType,
- });
- };
- function renderWidgetViewerTable() {
- switch (widget.widgetType) {
- case WidgetType.ISSUE:
- if (tableData && chartUnmodified && widget.displayType === DisplayType.TABLE) {
- return renderIssuesTable({
- tableResults: tableData,
- loading: false,
- errorMessage: undefined,
- pageLinks: defaultPageLinks,
- totalCount: totalIssuesCount,
- });
- }
- return (
- <IssueWidgetQueries
- api={api}
- organization={organization}
- widget={tableWidget}
- selection={modalTableSelection}
- limit={
- widget.displayType === DisplayType.TABLE
- ? FULL_TABLE_ITEM_LIMIT
- : HALF_TABLE_ITEM_LIMIT
- }
- cursor={cursor}
- >
- {renderIssuesTable}
- </IssueWidgetQueries>
- );
- case WidgetType.RELEASE:
- if (tableData && chartUnmodified && widget.displayType === DisplayType.TABLE) {
- return renderReleaseTable({
- tableResults: tableData,
- loading: false,
- pageLinks: defaultPageLinks,
- });
- }
- return (
- <ReleaseWidgetQueries
- api={api}
- organization={organization}
- widget={tableWidget}
- selection={modalTableSelection}
- limit={
- widget.displayType === DisplayType.TABLE
- ? FULL_TABLE_ITEM_LIMIT
- : HALF_TABLE_ITEM_LIMIT
- }
- cursor={cursor}
- >
- {renderReleaseTable}
- </ReleaseWidgetQueries>
- );
- case WidgetType.DISCOVER:
- default:
- if (tableData && chartUnmodified && widget.displayType === DisplayType.TABLE) {
- return (
- <DiscoverTable
- tableResults={tableData}
- loading={false}
- pageLinks={defaultPageLinks}
- />
- );
- }
- return (
- <WidgetQueries
- api={api}
- organization={organization}
- widget={tableWidget}
- selection={modalTableSelection}
- limit={
- widget.displayType === DisplayType.TABLE
- ? FULL_TABLE_ITEM_LIMIT
- : HALF_TABLE_ITEM_LIMIT
- }
- cursor={cursor}
- >
- {({tableResults, loading, pageLinks}) => (
- <DiscoverTable
- tableResults={tableResults}
- loading={loading}
- pageLinks={pageLinks}
- />
- )}
- </WidgetQueries>
- );
- }
- }
- function renderWidgetViewer() {
- return (
- <Fragment>
- {widget.displayType !== DisplayType.TABLE && (
- <Container
- height={
- widget.displayType !== DisplayType.BIG_NUMBER
- ? HALF_CONTAINER_HEIGHT +
- (shouldShowSlider &&
- [
- DisplayType.AREA,
- DisplayType.LINE,
- DisplayType.BAR,
- DisplayType.TOP_N,
- ].includes(widget.displayType)
- ? SLIDER_HEIGHT
- : 0)
- : null
- }
- >
- {(!!seriesData || !!tableData) && chartUnmodified ? (
- <MemoizedWidgetCardChart
- timeseriesResults={seriesData}
- timeseriesResultsTypes={seriesResultsType}
- tableResults={tableData}
- errorMessage={undefined}
- loading={false}
- location={location}
- widget={widget}
- selection={selection}
- router={router}
- organization={organization}
- onZoom={onZoom}
- onLegendSelectChanged={onLegendSelectChanged}
- legendOptions={{selected: disabledLegends}}
- expandNumbers
- showSlider={shouldShowSlider}
- noPadding
- chartZoomOptions={chartZoomOptions}
- />
- ) : (
- <MemoizedWidgetCardChartContainer
- location={location}
- router={router}
- routes={routes}
- params={params}
- api={api}
- organization={organization}
- selection={modalChartSelection.current}
- // Top N charts rely on the orderby of the table
- widget={primaryWidget}
- onZoom={onZoom}
- onLegendSelectChanged={onLegendSelectChanged}
- legendOptions={{selected: disabledLegends}}
- expandNumbers
- showSlider={shouldShowSlider}
- noPadding
- chartZoomOptions={chartZoomOptions}
- />
- )}
- </Container>
- )}
- {widget.queries.length > 1 && (
- <Alert type="info" showIcon>
- {t(
- 'This widget was built with multiple queries. Table data can only be displayed for one query at a time. To edit any of the queries, edit the widget.'
- )}
- </Alert>
- )}
- {(widget.queries.length > 1 || widget.queries[0].conditions) && (
- <QueryContainer>
- <SelectControl
- value={selectedQueryIndex}
- options={queryOptions}
- onChange={(option: SelectValue<number>) => {
- router.replace({
- pathname: location.pathname,
- query: {
- ...location.query,
- [WidgetViewerQueryField.QUERY]: option.value,
- [WidgetViewerQueryField.PAGE]: undefined,
- [WidgetViewerQueryField.CURSOR]: undefined,
- },
- });
- trackAdvancedAnalyticsEvent(
- 'dashboards_views.widget_viewer.select_query',
- {
- organization,
- widget_type: widget.widgetType ?? WidgetType.DISCOVER,
- display_type: widget.displayType,
- }
- );
- }}
- components={{
- // Replaces the displayed selected value
- SingleValue: containerProps => {
- return (
- <components.SingleValue
- {...containerProps}
- // Overwrites some of the default styling that interferes with highlighted query text
- getStyles={() => ({
- wordBreak: 'break-word',
- flex: 1,
- display: 'flex',
- padding: `0 ${space(0.5)}`,
- })}
- >
- {queryOptions[selectedQueryIndex].getHighlightedQuery({
- display: 'block',
- }) ??
- (queryOptions[selectedQueryIndex].label || (
- <EmptyQueryContainer>{EMPTY_QUERY_NAME}</EmptyQueryContainer>
- ))}
- </components.SingleValue>
- );
- },
- // Replaces the dropdown options
- Option: containerProps => {
- const highlightedQuery = containerProps.data.getHighlightedQuery({
- display: 'flex',
- });
- return (
- <Option
- {...(highlightedQuery
- ? {
- ...containerProps,
- label: highlightedQuery,
- }
- : containerProps.label
- ? containerProps
- : {
- ...containerProps,
- label: (
- <EmptyQueryContainer>
- {EMPTY_QUERY_NAME}
- </EmptyQueryContainer>
- ),
- })}
- />
- );
- },
- // Hide the dropdown indicator if there is only one option
- ...(widget.queries.length < 2 ? {IndicatorsContainer: _ => null} : {}),
- }}
- isSearchable={false}
- isDisabled={widget.queries.length < 2}
- />
- {widget.queries.length === 1 && (
- <StyledQuestionTooltip
- title={t('To edit this query, you must edit the widget.')}
- size="sm"
- />
- )}
- </QueryContainer>
- )}
- {renderWidgetViewerTable()}
- </Fragment>
- );
- }
- return (
- <Fragment>
- <DashboardsMEPProvider>
- <Header closeButton>
- <h3>{widget.title}</h3>
- </Header>
- <Body>{renderWidgetViewer()}</Body>
- <Footer>
- <ResultsContainer>
- {renderTotalResults(totalResults, widget.widgetType)}
- <ButtonBar gap={1}>
- {onEdit && widget.id && (
- <Button
- type="button"
- onClick={() => {
- closeModal();
- onEdit();
- trackAdvancedAnalyticsEvent('dashboards_views.widget_viewer.edit', {
- organization,
- widget_type: widget.widgetType ?? WidgetType.DISCOVER,
- display_type: widget.displayType,
- });
- }}
- >
- {t('Edit Widget')}
- </Button>
- )}
- {widget.widgetType && (
- <OpenButton
- widget={primaryWidget}
- organization={organization}
- selection={modalTableSelection}
- selectedQueryIndex={selectedQueryIndex}
- />
- )}
- </ButtonBar>
- </ResultsContainer>
- </Footer>
- </DashboardsMEPProvider>
- </Fragment>
- );
- }
- interface OpenButtonProps {
- organization: Organization;
- selectedQueryIndex: number;
- selection: PageFilters;
- widget: Widget;
- }
- function OpenButton({
- widget,
- selection,
- organization,
- selectedQueryIndex,
- }: OpenButtonProps) {
- let openLabel: string;
- let path: string;
- const {isMetricsData} = useDashboardsMEPContext();
- switch (widget.widgetType) {
- case WidgetType.ISSUE:
- openLabel = t('Open in Issues');
- path = getWidgetIssueUrl(widget, selection, organization);
- break;
- case WidgetType.RELEASE:
- openLabel = t('Open in Releases');
- path = getWidgetReleasesUrl(widget, selection, organization);
- break;
- case WidgetType.DISCOVER:
- default:
- openLabel = t('Open in Discover');
- path = getWidgetDiscoverUrl(
- {...widget, queries: [widget.queries[selectedQueryIndex]]},
- selection,
- organization,
- 0,
- isMetricsData
- );
- break;
- }
- return (
- <Button
- to={path}
- priority="primary"
- type="button"
- disabled={isCustomMeasurementWidget(widget)}
- title={
- isCustomMeasurementWidget(widget)
- ? t('Widgets using custom performance metrics cannot be opened in Discover.')
- : undefined
- }
- onClick={() => {
- trackAdvancedAnalyticsEvent('dashboards_views.widget_viewer.open_source', {
- organization,
- widget_type: widget.widgetType ?? WidgetType.DISCOVER,
- display_type: widget.displayType,
- });
- }}
- >
- {openLabel}
- </Button>
- );
- }
- function renderTotalResults(totalResults?: string, widgetType?: WidgetType) {
- if (totalResults === undefined) {
- return <span />;
- }
- switch (widgetType) {
- case WidgetType.ISSUE:
- return (
- <span>
- {tct('[description:Total Issues:] [total]', {
- description: <strong />,
- total: totalResults === '1000' ? '1000+' : totalResults,
- })}
- </span>
- );
- case WidgetType.DISCOVER:
- return (
- <span>
- {tct('[description:Total Events:] [total]', {
- description: <strong />,
- total: totalResults,
- })}
- </span>
- );
- default:
- return <span />;
- }
- }
- export const modalCss = css`
- width: 100%;
- max-width: 1200px;
- `;
- const Container = styled('div')<{height?: number | null}>`
- height: ${p => (p.height ? `${p.height}px` : 'auto')};
- position: relative;
- padding-bottom: ${space(3)};
- `;
- const QueryContainer = styled('div')`
- margin-bottom: ${space(2)};
- position: relative;
- `;
- const StyledQuestionTooltip = styled(QuestionTooltip)`
- position: absolute;
- top: ${space(1.5)};
- right: ${space(2)};
- `;
- const HighlightContainer = styled('span')<{display?: 'block' | 'flex'}>`
- display: ${p => p.display};
- gap: ${space(1)};
- font-family: ${p => p.theme.text.familyMono};
- font-size: ${p => p.theme.fontSizeSmall};
- line-height: 2;
- flex: 1;
- `;
- const ResultsContainer = styled('div')`
- display: flex;
- flex-grow: 1;
- flex-direction: column;
- gap: ${space(1)};
- @media (min-width: ${p => p.theme.breakpoints.small}) {
- align-items: center;
- flex-direction: row;
- justify-content: space-between;
- }
- `;
- const EmptyQueryContainer = styled('span')`
- color: ${p => p.theme.disabled};
- `;
- export default withRouter(withPageFilters(WidgetViewerModal));
|