123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095 |
- import {cloneElement, Component, isValidElement} from 'react';
- import type {PlainRoute, RouteComponentProps} from 'react-router';
- import styled from '@emotion/styled';
- import isEqual from 'lodash/isEqual';
- import isEqualWith from 'lodash/isEqualWith';
- import omit from 'lodash/omit';
- import {
- createDashboard,
- deleteDashboard,
- updateDashboard,
- } from 'sentry/actionCreators/dashboards';
- import {addErrorMessage, addSuccessMessage} from 'sentry/actionCreators/indicator';
- import {openWidgetViewerModal} from 'sentry/actionCreators/modal';
- import type {Client} from 'sentry/api';
- import {Breadcrumbs} from 'sentry/components/breadcrumbs';
- import HookOrDefault from 'sentry/components/hookOrDefault';
- import * as Layout from 'sentry/components/layouts/thirds';
- import {
- isWidgetViewerPath,
- WidgetViewerQueryField,
- } from 'sentry/components/modals/widgetViewerModal/utils';
- import NoProjectMessage from 'sentry/components/noProjectMessage';
- import PageFiltersContainer from 'sentry/components/organizations/pageFilters/container';
- import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle';
- import {USING_CUSTOMER_DOMAIN} from 'sentry/constants';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import type {PageFilters} from 'sentry/types/core';
- import type {Organization} from 'sentry/types/organization';
- import type {Project} from 'sentry/types/project';
- import {defined} from 'sentry/utils';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import {browserHistory} from 'sentry/utils/browserHistory';
- import EventView from 'sentry/utils/discover/eventView';
- import {MetricsCardinalityProvider} from 'sentry/utils/performance/contexts/metricsCardinality';
- import {MetricsResultsMetaProvider} from 'sentry/utils/performance/contexts/metricsEnhancedPerformanceDataContext';
- import {MEPSettingProvider} from 'sentry/utils/performance/contexts/metricsEnhancedSetting';
- import {OnDemandControlProvider} from 'sentry/utils/performance/contexts/onDemandControl';
- import normalizeUrl from 'sentry/utils/url/normalizeUrl';
- import withApi from 'sentry/utils/withApi';
- import withOrganization from 'sentry/utils/withOrganization';
- import withPageFilters from 'sentry/utils/withPageFilters';
- import withProjects from 'sentry/utils/withProjects';
- import {defaultMetricWidget} from 'sentry/views/dashboards/metrics/utils';
- import {
- cloneDashboard,
- getCurrentPageFilters,
- getDashboardFiltersFromURL,
- hasUnsavedFilterChanges,
- isWidgetUsingTransactionName,
- resetPageFilters,
- } from 'sentry/views/dashboards/utils';
- import {DataSet} from 'sentry/views/dashboards/widgetBuilder/utils';
- import {MetricsDataSwitcherAlert} from 'sentry/views/performance/landing/metricsDataSwitcherAlert';
- import {generatePerformanceEventView} from '../performance/data';
- import {MetricsDataSwitcher} from '../performance/landing/metricsDataSwitcher';
- import {DiscoverQueryPageSource} from '../performance/utils';
- import type {WidgetViewerContextProps} from './widgetViewer/widgetViewerContext';
- import {WidgetViewerContext} from './widgetViewer/widgetViewerContext';
- import Controls from './controls';
- import Dashboard from './dashboard';
- import {DEFAULT_STATS_PERIOD} from './data';
- import FiltersBar from './filtersBar';
- import {
- assignDefaultLayout,
- assignTempId,
- calculateColumnDepths,
- generateWidgetsAfterCompaction,
- getDashboardLayout,
- } from './layoutUtils';
- import DashboardTitle from './title';
- import type {
- DashboardDetails,
- DashboardFilters,
- DashboardListItem,
- Widget,
- } from './types';
- import {
- DashboardFilterKeys,
- DashboardState,
- DashboardWidgetSource,
- MAX_WIDGETS,
- WidgetType,
- } from './types';
- const UNSAVED_MESSAGE = t('You have unsaved changes, are you sure you want to leave?');
- export const UNSAVED_FILTERS_MESSAGE = t(
- 'You have unsaved dashboard filters. You can save or discard them.'
- );
- const HookHeader = HookOrDefault({hookName: 'component:dashboards-header'});
- type RouteParams = {
- dashboardId?: string;
- templateId?: string;
- widgetId?: number | string;
- widgetIndex?: number;
- };
- type Props = RouteComponentProps<RouteParams, {}> & {
- api: Client;
- dashboard: DashboardDetails;
- dashboards: DashboardListItem[];
- initialState: DashboardState;
- organization: Organization;
- projects: Project[];
- route: PlainRoute;
- selection: PageFilters;
- children?: React.ReactNode;
- newWidget?: Widget;
- onDashboardUpdate?: (updatedDashboard: DashboardDetails) => void;
- onSetNewWidget?: () => void;
- };
- type State = {
- dashboardState: DashboardState;
- modifiedDashboard: DashboardDetails | null;
- widgetLimitReached: boolean;
- } & WidgetViewerContextProps;
- export function handleUpdateDashboardSplit({
- widgetId,
- splitDecision,
- dashboard,
- onDashboardUpdate,
- modifiedDashboard,
- stateSetter,
- }: {
- dashboard: DashboardDetails;
- modifiedDashboard: DashboardDetails | null;
- splitDecision: WidgetType;
- stateSetter: Component<Props, State, any>['setState'];
- widgetId: string;
- onDashboardUpdate?: (updatedDashboard: DashboardDetails) => void;
- }) {
- // The underlying dashboard needs to be updated with the split decision
- // because the backend has evaluated the query and stored that value
- const updatedDashboard = cloneDashboard(dashboard);
- const widgetIndex = updatedDashboard.widgets.findIndex(
- widget => widget.id === widgetId
- );
- if (widgetIndex >= 0) {
- updatedDashboard.widgets[widgetIndex].widgetType = splitDecision;
- }
- onDashboardUpdate?.(updatedDashboard);
- // The modified dashboard also needs to be updated because that dashboard
- // is rendered instead of the original dashboard when editing
- if (modifiedDashboard) {
- stateSetter(state => ({
- ...state,
- modifiedDashboard: {
- ...state.modifiedDashboard!,
- widgets: state.modifiedDashboard!.widgets.map(widget =>
- widget.id === widgetId ? {...widget, widgetType: splitDecision} : widget
- ),
- },
- }));
- }
- }
- class DashboardDetail extends Component<Props, State> {
- state: State = {
- dashboardState: this.props.initialState,
- modifiedDashboard: this.updateModifiedDashboard(this.props.initialState),
- widgetLimitReached: this.props.dashboard.widgets.length >= MAX_WIDGETS,
- setData: data => {
- this.setState(data);
- },
- };
- componentDidMount() {
- const {route, router} = this.props;
- router.setRouteLeaveHook(route, this.onRouteLeave);
- window.addEventListener('beforeunload', this.onUnload);
- this.checkIfShouldMountWidgetViewerModal();
- }
- componentDidUpdate(prevProps: Props) {
- this.checkIfShouldMountWidgetViewerModal();
- if (prevProps.initialState !== this.props.initialState) {
- // Widget builder can toggle Edit state when saving
- this.setState({dashboardState: this.props.initialState});
- }
- }
- componentWillUnmount() {
- window.removeEventListener('beforeunload', this.onUnload);
- }
- checkIfShouldMountWidgetViewerModal() {
- const {
- params: {widgetId, dashboardId},
- organization,
- dashboard,
- location,
- router,
- } = this.props;
- const {seriesData, tableData, pageLinks, totalIssuesCount, seriesResultsType} =
- this.state;
- if (isWidgetViewerPath(location.pathname)) {
- const widget =
- defined(widgetId) &&
- (dashboard.widgets.find(({id}) => {
- // This ternary exists because widgetId is in some places typed as string, while
- // in other cases it is typed as number. Instead of changing the type everywhere,
- // we check for both cases at runtime as I am not sure which is the correct type.
- return typeof widgetId === 'number' ? id === String(widgetId) : id === widgetId;
- }) ??
- dashboard.widgets[widgetId]);
- if (widget) {
- openWidgetViewerModal({
- organization,
- widget,
- seriesData,
- seriesResultsType,
- tableData,
- pageLinks,
- totalIssuesCount,
- dashboardFilters: getDashboardFiltersFromURL(location) ?? dashboard.filters,
- onMetricWidgetEdit: (updatedWidget: Widget) => {
- const widgets = [...dashboard.widgets];
- const widgetIndex = dashboard.widgets.indexOf(widget);
- widgets[widgetIndex] = {...widgets[widgetIndex], ...updatedWidget};
- this.handleUpdateWidgetList(widgets);
- },
- onClose: () => {
- // Filter out Widget Viewer Modal query params when exiting the Modal
- const query = omit(location.query, Object.values(WidgetViewerQueryField));
- router.push({
- pathname: location.pathname.replace(/widget\/[0-9]+\/$/, ''),
- query,
- });
- },
- onEdit: () => {
- const widgetIndex = dashboard.widgets.indexOf(widget);
- if (dashboardId) {
- router.push(
- normalizeUrl({
- pathname: `/organizations/${organization.slug}/dashboard/${dashboardId}/widget/${widgetIndex}/edit/`,
- query: {
- ...location.query,
- source: DashboardWidgetSource.DASHBOARDS,
- },
- })
- );
- return;
- }
- },
- });
- trackAnalytics('dashboards_views.widget_viewer.open', {
- organization,
- widget_type: widget.widgetType ?? WidgetType.DISCOVER,
- display_type: widget.displayType,
- });
- } else {
- // Replace the URL if the widget isn't found and raise an error in toast
- router.replace(
- normalizeUrl({
- pathname: `/organizations/${organization.slug}/dashboard/${dashboard.id}/`,
- query: location.query,
- })
- );
- addErrorMessage(t('Widget not found'));
- }
- }
- }
- updateModifiedDashboard(dashboardState: DashboardState) {
- const {dashboard} = this.props;
- switch (dashboardState) {
- case DashboardState.PREVIEW:
- case DashboardState.CREATE:
- case DashboardState.EDIT:
- return cloneDashboard(dashboard);
- default: {
- return null;
- }
- }
- }
- get isPreview() {
- const {dashboardState} = this.state;
- return DashboardState.PREVIEW === dashboardState;
- }
- get isEditingDashboard() {
- const {dashboardState} = this.state;
- return [
- DashboardState.EDIT,
- DashboardState.CREATE,
- DashboardState.PENDING_DELETE,
- ].includes(dashboardState);
- }
- get isWidgetBuilderRouter() {
- const {location, params, organization} = this.props;
- const {dashboardId, widgetIndex} = params;
- const widgetBuilderRoutes = [
- `/organizations/${organization.slug}/dashboards/new/widget/new/`,
- `/organizations/${organization.slug}/dashboard/${dashboardId}/widget/new/`,
- `/organizations/${organization.slug}/dashboards/new/widget/${widgetIndex}/edit/`,
- `/organizations/${organization.slug}/dashboard/${dashboardId}/widget/${widgetIndex}/edit/`,
- ];
- if (USING_CUSTOMER_DOMAIN) {
- // TODO: replace with url generation later on.
- widgetBuilderRoutes.push(
- ...[
- `/dashboards/new/widget/new/`,
- `/dashboard/${dashboardId}/widget/new/`,
- `/dashboards/new/widget/${widgetIndex}/edit/`,
- `/dashboard/${dashboardId}/widget/${widgetIndex}/edit/`,
- ]
- );
- }
- return widgetBuilderRoutes.includes(location.pathname);
- }
- get dashboardTitle() {
- const {dashboard} = this.props;
- const {modifiedDashboard} = this.state;
- return modifiedDashboard ? modifiedDashboard.title : dashboard.title;
- }
- onEdit = () => {
- const {dashboard, organization} = this.props;
- trackAnalytics('dashboards2.edit.start', {organization});
- this.setState({
- dashboardState: DashboardState.EDIT,
- modifiedDashboard: cloneDashboard(dashboard),
- });
- };
- onRouteLeave = () => {
- const {dashboard} = this.props;
- const {modifiedDashboard} = this.state;
- if (
- ![
- DashboardState.VIEW,
- DashboardState.PENDING_DELETE,
- DashboardState.PREVIEW,
- ].includes(this.state.dashboardState) &&
- !isEqual(modifiedDashboard, dashboard)
- ) {
- return UNSAVED_MESSAGE;
- }
- return undefined;
- };
- onUnload = (event: BeforeUnloadEvent) => {
- const {dashboard} = this.props;
- const {modifiedDashboard} = this.state;
- if (
- [
- DashboardState.VIEW,
- DashboardState.PENDING_DELETE,
- DashboardState.PREVIEW,
- ].includes(this.state.dashboardState) ||
- isEqual(modifiedDashboard, dashboard)
- ) {
- return;
- }
- event.preventDefault();
- event.returnValue = UNSAVED_MESSAGE;
- };
- onDelete = (dashboard: State['modifiedDashboard']) => () => {
- const {api, organization, location} = this.props;
- if (!dashboard?.id) {
- return;
- }
- const previousDashboardState = this.state.dashboardState;
- this.setState({dashboardState: DashboardState.PENDING_DELETE}, () => {
- deleteDashboard(api, organization.slug, dashboard.id)
- .then(() => {
- addSuccessMessage(t('Dashboard deleted'));
- trackAnalytics('dashboards2.delete', {organization});
- browserHistory.replace({
- pathname: `/organizations/${organization.slug}/dashboards/`,
- query: location.query,
- });
- })
- .catch(() => {
- this.setState({
- dashboardState: previousDashboardState,
- });
- });
- });
- };
- onCancel = () => {
- const {organization, dashboard, location, params} = this.props;
- const {modifiedDashboard} = this.state;
- let hasDashboardChanged = !isEqual(modifiedDashboard, dashboard);
- // If a dashboard has every layout undefined, then ignore the layout field
- // when checking equality because it is a dashboard from before the grid feature
- const isLegacyLayout = dashboard.widgets.every(({layout}) => !defined(layout));
- if (isLegacyLayout) {
- hasDashboardChanged = !isEqual(
- {
- ...modifiedDashboard,
- widgets: modifiedDashboard?.widgets.map(widget => omit(widget, 'layout')),
- },
- {...dashboard, widgets: dashboard.widgets.map(widget => omit(widget, 'layout'))}
- );
- }
- // Don't confirm preview cancellation regardless of dashboard state
- if (hasDashboardChanged && !this.isPreview) {
- // Ignore no-alert here, so that the confirm on cancel matches onUnload & onRouteLeave
- /* eslint no-alert:0 */
- if (!confirm(UNSAVED_MESSAGE)) {
- return;
- }
- }
- if (params.dashboardId) {
- trackAnalytics('dashboards2.edit.cancel', {organization});
- this.setState({
- dashboardState: DashboardState.VIEW,
- modifiedDashboard: null,
- });
- return;
- }
- trackAnalytics('dashboards2.create.cancel', {organization});
- browserHistory.replace(
- normalizeUrl({
- pathname: `/organizations/${organization.slug}/dashboards/`,
- query: location.query,
- })
- );
- };
- handleChangeFilter = (activeFilters: DashboardFilters) => {
- const {dashboard, location} = this.props;
- const {modifiedDashboard} = this.state;
- const newModifiedDashboard = modifiedDashboard || dashboard;
- if (
- Object.keys(activeFilters).every(
- key => !newModifiedDashboard.filters?.[key] && activeFilters[key].length === 0
- )
- ) {
- return;
- }
- const filterParams: DashboardFilters = {};
- Object.keys(activeFilters).forEach(key => {
- filterParams[key] = activeFilters[key].length ? activeFilters[key] : '';
- });
- if (
- !isEqualWith(activeFilters, dashboard.filters, (a, b) => {
- // This is to handle the case where dashboard filters has release:[] and the new filter is release:""
- if (a.length === 0 && b.length === 0) {
- return a === b;
- }
- return undefined;
- })
- ) {
- browserHistory.push({
- ...location,
- query: {
- ...location.query,
- ...filterParams,
- },
- });
- }
- };
- handleUpdateWidgetList = (widgets: Widget[]) => {
- const {organization, dashboard, api, onDashboardUpdate, location} = this.props;
- const {modifiedDashboard} = this.state;
- // Use the new widgets for calculating layout because widgets has
- // the most up to date information in edit state
- const currentLayout = getDashboardLayout(widgets);
- const layoutColumnDepths = calculateColumnDepths(currentLayout);
- const newModifiedDashboard = {
- ...cloneDashboard(modifiedDashboard || dashboard),
- widgets: assignDefaultLayout(widgets, layoutColumnDepths),
- };
- this.setState({
- modifiedDashboard: newModifiedDashboard,
- widgetLimitReached: widgets.length >= MAX_WIDGETS,
- });
- if (this.isEditingDashboard || this.isPreview) {
- return null;
- }
- return updateDashboard(api, organization.slug, newModifiedDashboard).then(
- (newDashboard: DashboardDetails) => {
- if (onDashboardUpdate) {
- onDashboardUpdate(newDashboard);
- this.setState({
- modifiedDashboard: null,
- });
- }
- addSuccessMessage(t('Dashboard updated'));
- if (dashboard && newDashboard.id !== dashboard.id) {
- browserHistory.replace(
- normalizeUrl({
- pathname: `/organizations/${organization.slug}/dashboard/${newDashboard.id}/`,
- query: {
- ...location.query,
- },
- })
- );
- }
- return newDashboard;
- },
- // `updateDashboard` does its own error handling
- () => undefined
- );
- };
- handleAddCustomWidget = (widget: Widget) => {
- const {dashboard} = this.props;
- const {modifiedDashboard} = this.state;
- const newModifiedDashboard = modifiedDashboard || dashboard;
- this.onUpdateWidget([...newModifiedDashboard.widgets, widget]);
- };
- handleAddMetricWidget = (layout?: Widget['layout']) => {
- const widgetCopy = assignTempId({
- layout,
- ...defaultMetricWidget(),
- });
- const currentWidgets =
- this.state.modifiedDashboard?.widgets ?? this.props.dashboard.widgets;
- openWidgetViewerModal({
- organization: this.props.organization,
- widget: widgetCopy,
- onMetricWidgetEdit: widget => {
- const nextList = generateWidgetsAfterCompaction([...currentWidgets, widget]);
- this.onUpdateWidget(nextList);
- this.handleUpdateWidgetList(nextList);
- },
- });
- };
- onAddWidget = (dataset: DataSet) => {
- const {
- organization,
- dashboard,
- router,
- location,
- params: {dashboardId},
- } = this.props;
- if (dataset === DataSet.METRICS) {
- this.handleAddMetricWidget();
- return;
- }
- this.setState(
- {
- modifiedDashboard: cloneDashboard(dashboard),
- },
- () => {
- if (dashboardId) {
- router.push(
- normalizeUrl({
- pathname: `/organizations/${organization.slug}/dashboard/${dashboardId}/widget/new/`,
- query: {
- ...location.query,
- source: DashboardWidgetSource.DASHBOARDS,
- dataset,
- },
- })
- );
- }
- }
- );
- };
- onCommit = () => {
- const {api, organization, location, dashboard, onDashboardUpdate} = this.props;
- const {modifiedDashboard, dashboardState} = this.state;
- switch (dashboardState) {
- case DashboardState.PREVIEW:
- case DashboardState.CREATE: {
- if (modifiedDashboard) {
- if (this.isPreview) {
- trackAnalytics('dashboards_manage.templates.add', {
- organization,
- dashboard_id: dashboard.id,
- dashboard_title: dashboard.title,
- was_previewed: true,
- });
- }
- const newModifiedDashboard = {
- ...cloneDashboard(modifiedDashboard),
- ...getCurrentPageFilters(location),
- filters: getDashboardFiltersFromURL(location) ?? modifiedDashboard.filters,
- };
- createDashboard(
- api,
- organization.slug,
- newModifiedDashboard,
- this.isPreview
- ).then(
- (newDashboard: DashboardDetails) => {
- addSuccessMessage(t('Dashboard created'));
- trackAnalytics('dashboards2.create.complete', {organization});
- this.setState(
- {
- dashboardState: DashboardState.VIEW,
- },
- () => {
- // redirect to new dashboard
- browserHistory.replace(
- normalizeUrl({
- pathname: `/organizations/${organization.slug}/dashboard/${newDashboard.id}/`,
- query: {
- query: omit(location.query, Object.values(DashboardFilterKeys)),
- },
- })
- );
- }
- );
- },
- () => undefined
- );
- }
- break;
- }
- case DashboardState.EDIT: {
- // only update the dashboard if there are changes
- if (modifiedDashboard) {
- if (isEqual(dashboard, modifiedDashboard)) {
- this.setState({
- dashboardState: DashboardState.VIEW,
- modifiedDashboard: null,
- });
- return;
- }
- updateDashboard(api, organization.slug, modifiedDashboard).then(
- (newDashboard: DashboardDetails) => {
- if (onDashboardUpdate) {
- onDashboardUpdate(newDashboard);
- }
- addSuccessMessage(t('Dashboard updated'));
- trackAnalytics('dashboards2.edit.complete', {organization});
- this.setState(
- {
- dashboardState: DashboardState.VIEW,
- modifiedDashboard: null,
- },
- () => {
- if (dashboard && newDashboard.id !== dashboard.id) {
- browserHistory.replace(
- normalizeUrl({
- pathname: `/organizations/${organization.slug}/dashboard/${newDashboard.id}/`,
- query: {
- ...location.query,
- },
- })
- );
- }
- }
- );
- },
- // `updateDashboard` does its own error handling
- () => undefined
- );
- return;
- }
- this.setState({
- dashboardState: DashboardState.VIEW,
- modifiedDashboard: null,
- });
- break;
- }
- case DashboardState.VIEW:
- default: {
- this.setState({
- dashboardState: DashboardState.VIEW,
- modifiedDashboard: null,
- });
- break;
- }
- }
- };
- setModifiedDashboard = (dashboard: DashboardDetails) => {
- this.setState({
- modifiedDashboard: dashboard,
- });
- };
- onUpdateWidget = (widgets: Widget[]) => {
- this.setState((state: State) => ({
- ...state,
- widgetLimitReached: widgets.length >= MAX_WIDGETS,
- modifiedDashboard: {
- ...(state.modifiedDashboard || this.props.dashboard),
- widgets,
- },
- }));
- };
- renderWidgetBuilder() {
- const {children, dashboard, onDashboardUpdate} = this.props;
- const {modifiedDashboard} = this.state;
- return isValidElement(children)
- ? cloneElement<any>(children, {
- dashboard: modifiedDashboard ?? dashboard,
- onSave: this.isEditingDashboard
- ? this.onUpdateWidget
- : this.handleUpdateWidgetList,
- updateDashboardSplitDecision: (widgetId: string, splitDecision: WidgetType) => {
- handleUpdateDashboardSplit({
- widgetId,
- splitDecision,
- dashboard,
- modifiedDashboard,
- stateSetter: this.setState.bind(this),
- onDashboardUpdate,
- });
- },
- })
- : children;
- }
- renderDefaultDashboardDetail() {
- const {organization, dashboard, dashboards, params, router, location} = this.props;
- const {modifiedDashboard, dashboardState, widgetLimitReached} = this.state;
- const {dashboardId} = params;
- return (
- <PageFiltersContainer
- disablePersistence
- defaultSelection={{
- datetime: {
- start: null,
- end: null,
- utc: false,
- period: DEFAULT_STATS_PERIOD,
- },
- }}
- >
- <Layout.Page withPadding>
- <OnDemandControlProvider location={location}>
- <MetricsResultsMetaProvider>
- <NoProjectMessage organization={organization}>
- <StyledPageHeader>
- <Layout.Title>
- <DashboardTitle
- dashboard={modifiedDashboard ?? dashboard}
- onUpdate={this.setModifiedDashboard}
- isEditingDashboard={this.isEditingDashboard}
- />
- </Layout.Title>
- <Controls
- organization={organization}
- dashboards={dashboards}
- onEdit={this.onEdit}
- onCancel={this.onCancel}
- onCommit={this.onCommit}
- onAddWidget={this.onAddWidget}
- onDelete={this.onDelete(dashboard)}
- dashboardState={dashboardState}
- widgetLimitReached={widgetLimitReached}
- />
- </StyledPageHeader>
- <HookHeader organization={organization} />
- <FiltersBar
- filters={{}} // Default Dashboards don't have filters set
- location={location}
- hasUnsavedChanges={false}
- isEditingDashboard={false}
- isPreview={false}
- onDashboardFilterChange={this.handleChangeFilter}
- />
- <MetricsCardinalityProvider
- organization={organization}
- location={location}
- >
- <MetricsDataSwitcher
- organization={organization}
- eventView={EventView.fromLocation(location)}
- location={location}
- >
- {metricsDataSide => (
- <MEPSettingProvider
- location={location}
- forceTransactions={metricsDataSide.forceTransactionsOnly}
- >
- <Dashboard
- paramDashboardId={dashboardId}
- dashboard={modifiedDashboard ?? dashboard}
- organization={organization}
- isEditingDashboard={this.isEditingDashboard}
- widgetLimitReached={widgetLimitReached}
- onUpdate={this.onUpdateWidget}
- handleUpdateWidgetList={this.handleUpdateWidgetList}
- handleAddCustomWidget={this.handleAddCustomWidget}
- handleAddMetricWidget={this.handleAddMetricWidget}
- isPreview={this.isPreview}
- router={router}
- location={location}
- />
- </MEPSettingProvider>
- )}
- </MetricsDataSwitcher>
- </MetricsCardinalityProvider>
- </NoProjectMessage>
- </MetricsResultsMetaProvider>
- </OnDemandControlProvider>
- </Layout.Page>
- </PageFiltersContainer>
- );
- }
- getBreadcrumbLabel() {
- const {dashboardState} = this.state;
- let label = this.dashboardTitle;
- if (dashboardState === DashboardState.CREATE) {
- label = t('Create Dashboard');
- } else if (this.isPreview) {
- label = t('Preview Dashboard');
- }
- return label;
- }
- renderDashboardDetail() {
- const {
- api,
- organization,
- dashboard,
- dashboards,
- params,
- router,
- location,
- newWidget,
- onSetNewWidget,
- onDashboardUpdate,
- projects,
- } = this.props;
- const {modifiedDashboard, dashboardState, widgetLimitReached, seriesData, setData} =
- this.state;
- const {dashboardId} = params;
- const hasUnsavedFilters =
- dashboard.id !== 'default-overview' &&
- dashboardState !== DashboardState.CREATE &&
- hasUnsavedFilterChanges(dashboard, location);
- const eventView = generatePerformanceEventView(location, projects, {}, organization);
- const isDashboardUsingTransaction = dashboard.widgets.some(
- isWidgetUsingTransactionName
- );
- return (
- <SentryDocumentTitle title={dashboard.title} orgSlug={organization.slug}>
- <PageFiltersContainer
- disablePersistence
- defaultSelection={{
- datetime: {
- start: null,
- end: null,
- utc: false,
- period: DEFAULT_STATS_PERIOD,
- },
- }}
- >
- <Layout.Page>
- <OnDemandControlProvider location={location}>
- <MetricsResultsMetaProvider>
- <NoProjectMessage organization={organization}>
- <Layout.Header>
- <Layout.HeaderContent>
- <Breadcrumbs
- crumbs={[
- {
- label: t('Dashboards'),
- to: `/organizations/${organization.slug}/dashboards/`,
- },
- {
- label: this.getBreadcrumbLabel(),
- },
- ]}
- />
- <Layout.Title>
- <DashboardTitle
- dashboard={modifiedDashboard ?? dashboard}
- onUpdate={this.setModifiedDashboard}
- isEditingDashboard={this.isEditingDashboard}
- />
- </Layout.Title>
- </Layout.HeaderContent>
- <Layout.HeaderActions>
- <Controls
- organization={organization}
- dashboards={dashboards}
- hasUnsavedFilters={hasUnsavedFilters}
- onEdit={this.onEdit}
- onCancel={this.onCancel}
- onCommit={this.onCommit}
- onAddWidget={this.onAddWidget}
- onDelete={this.onDelete(dashboard)}
- dashboardState={dashboardState}
- widgetLimitReached={widgetLimitReached}
- />
- </Layout.HeaderActions>
- </Layout.Header>
- <Layout.Body>
- <Layout.Main fullWidth>
- <MetricsCardinalityProvider
- organization={organization}
- location={location}
- >
- <MetricsDataSwitcher
- organization={organization}
- eventView={eventView}
- location={location}
- >
- {metricsDataSide => (
- <MEPSettingProvider
- location={location}
- forceTransactions={metricsDataSide.forceTransactionsOnly}
- >
- {isDashboardUsingTransaction ? (
- <MetricsDataSwitcherAlert
- organization={organization}
- eventView={eventView}
- projects={projects}
- location={location}
- router={router}
- source={DiscoverQueryPageSource.DISCOVER}
- {...metricsDataSide}
- />
- ) : null}
- <FiltersBar
- filters={(modifiedDashboard ?? dashboard).filters}
- location={location}
- hasUnsavedChanges={hasUnsavedFilters}
- isEditingDashboard={
- dashboardState !== DashboardState.CREATE &&
- this.isEditingDashboard
- }
- isPreview={this.isPreview}
- onDashboardFilterChange={this.handleChangeFilter}
- onCancel={() => {
- resetPageFilters(dashboard, location);
- trackAnalytics('dashboards2.filter.cancel', {
- organization,
- });
- this.setState({
- modifiedDashboard: {
- ...(modifiedDashboard ?? dashboard),
- filters: dashboard.filters,
- },
- });
- }}
- onSave={() => {
- const newModifiedDashboard = {
- ...cloneDashboard(modifiedDashboard ?? dashboard),
- ...getCurrentPageFilters(location),
- filters:
- getDashboardFiltersFromURL(location) ??
- (modifiedDashboard ?? dashboard).filters,
- };
- updateDashboard(
- api,
- organization.slug,
- newModifiedDashboard
- ).then(
- (newDashboard: DashboardDetails) => {
- addSuccessMessage(t('Dashboard filters updated'));
- trackAnalytics('dashboards2.filter.save', {
- organization,
- });
- const navigateToDashboard = () => {
- browserHistory.replace(
- normalizeUrl({
- pathname: `/organizations/${organization.slug}/dashboard/${newDashboard.id}/`,
- query: omit(
- location.query,
- Object.values(DashboardFilterKeys)
- ),
- })
- );
- };
- if (onDashboardUpdate) {
- onDashboardUpdate(newDashboard);
- this.setState(
- {
- modifiedDashboard: null,
- },
- () => {
- // Wait for modifiedDashboard state to update before navigating
- navigateToDashboard();
- }
- );
- return;
- }
- navigateToDashboard();
- },
- // `updateDashboard` does its own error handling
- () => undefined
- );
- }}
- />
- <WidgetViewerContext.Provider value={{seriesData, setData}}>
- <Dashboard
- paramDashboardId={dashboardId}
- dashboard={modifiedDashboard ?? dashboard}
- organization={organization}
- isEditingDashboard={this.isEditingDashboard}
- widgetLimitReached={widgetLimitReached}
- onUpdate={this.onUpdateWidget}
- handleUpdateWidgetList={this.handleUpdateWidgetList}
- handleAddCustomWidget={this.handleAddCustomWidget}
- handleAddMetricWidget={this.handleAddMetricWidget}
- router={router}
- location={location}
- newWidget={newWidget}
- onSetNewWidget={onSetNewWidget}
- isPreview={this.isPreview}
- />
- </WidgetViewerContext.Provider>
- </MEPSettingProvider>
- )}
- </MetricsDataSwitcher>
- </MetricsCardinalityProvider>
- </Layout.Main>
- </Layout.Body>
- </NoProjectMessage>
- </MetricsResultsMetaProvider>
- </OnDemandControlProvider>
- </Layout.Page>
- </PageFiltersContainer>
- </SentryDocumentTitle>
- );
- }
- render() {
- const {organization} = this.props;
- if (this.isWidgetBuilderRouter) {
- return this.renderWidgetBuilder();
- }
- if (organization.features.includes('dashboards-edit')) {
- return this.renderDashboardDetail();
- }
- return this.renderDefaultDashboardDetail();
- }
- }
- const StyledPageHeader = styled('div')`
- display: grid;
- grid-template-columns: minmax(0, 1fr);
- grid-row-gap: ${space(2)};
- align-items: center;
- margin-bottom: ${space(2)};
- @media (min-width: ${p => p.theme.breakpoints.medium}) {
- grid-template-columns: minmax(0, 1fr) max-content;
- grid-column-gap: ${space(2)};
- height: 40px;
- }
- `;
- export default withPageFilters(withProjects(withApi(withOrganization(DashboardDetail))));
|