-
Notifications
You must be signed in to change notification settings - Fork 463
Expand file tree
/
Copy pathDBDashboardPage.tsx
More file actions
1225 lines (1163 loc) · 35.2 KB
/
Copy pathDBDashboardPage.tsx
File metadata and controls
1225 lines (1163 loc) · 35.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import {
ForwardedRef,
forwardRef,
useCallback,
useEffect,
useMemo,
useState,
} from 'react';
import dynamic from 'next/dynamic';
import Head from 'next/head';
import { useRouter } from 'next/router';
import { formatRelative } from 'date-fns';
import produce from 'immer';
import { parseAsString, useQueryState } from 'nuqs';
import { ErrorBoundary } from 'react-error-boundary';
import RGL, { WidthProvider } from 'react-grid-layout';
import { Controller, useForm, useWatch } from 'react-hook-form';
import { TableConnection } from '@hyperdx/common-utils/dist/core/metadata';
import { convertToDashboardTemplate } from '@hyperdx/common-utils/dist/core/utils';
import {
AlertState,
DashboardFilter,
TSourceUnion,
} from '@hyperdx/common-utils/dist/types';
import {
ChartConfigWithDateRange,
DisplayType,
Filter,
SearchCondition,
SearchConditionLanguage,
SQLInterval,
} from '@hyperdx/common-utils/dist/types';
import {
Box,
Button,
Flex,
Group,
Indicator,
Input,
Menu,
Modal,
Paper,
Text,
Title,
Tooltip,
} from '@mantine/core';
import { useHover } from '@mantine/hooks';
import { notifications } from '@mantine/notifications';
import {
IconBell,
IconCopy,
IconDotsVertical,
IconDownload,
IconFilterEdit,
IconPencil,
IconPlayerPlay,
IconRefresh,
IconTags,
IconTrash,
IconUpload,
} from '@tabler/icons-react';
import { ContactSupportText } from '@/components/ContactSupportText';
import EditTimeChartForm from '@/components/DBEditTimeChartForm';
import DBNumberChart from '@/components/DBNumberChart';
import DBTableChart from '@/components/DBTableChart';
import { DBTimeChart } from '@/components/DBTimeChart';
import { SQLInlineEditorControlled } from '@/components/SQLInlineEditor';
import { TimePicker } from '@/components/TimePicker';
import {
Dashboard,
type Tile,
useCreateDashboard,
useDeleteDashboard,
} from '@/dashboard';
import DBSqlRowTableWithSideBar from './components/DBSqlRowTableWithSidebar';
import OnboardingModal from './components/OnboardingModal';
import { Tags } from './components/Tags';
import useDashboardFilters from './hooks/useDashboardFilters';
import { useDashboardRefresh } from './hooks/useDashboardRefresh';
import { parseAsStringWithNewLines } from './utils/queryParsers';
import { buildTableRowSearchUrl, DEFAULT_CHART_CONFIG } from './ChartUtils';
import { IS_LOCAL_MODE } from './config';
import { useDashboard } from './dashboard';
import DashboardFilters from './DashboardFilters';
import DashboardFiltersModal from './DashboardFiltersModal';
import { GranularityPickerControlled } from './GranularityPicker';
import HDXMarkdownChart from './HDXMarkdownChart';
import { withAppNav } from './layout';
import SearchInputV2 from './SearchInputV2';
import {
getFirstTimestampValueExpression,
useSource,
useSources,
} from './source';
import { parseTimeQuery, useNewTimeQuery } from './timeQuery';
import { useConfirm } from './useConfirm';
import { getMetricTableName } from './utils';
import { useZIndex, ZIndexContext } from './zIndex';
import 'react-grid-layout/css/styles.css';
import 'react-resizable/css/styles.css';
const makeId = () => Math.floor(100000000 * Math.random()).toString(36);
const ReactGridLayout = WidthProvider(RGL);
// TODO: This is a hack to set the default time range
const defaultTimeRange = parseTimeQuery('Past 1h', false) as [Date, Date];
const Tile = forwardRef(
(
{
chart,
dateRange,
onDuplicateClick,
onEditClick,
onDeleteClick,
onUpdateChart,
granularity,
onTimeRangeSelect,
filters,
// Properties forwarded by grid layout
className,
style,
onMouseDown,
onMouseUp,
onTouchEnd,
children,
isHighlighted,
}: {
chart: Tile;
dateRange: [Date, Date];
onDuplicateClick: () => void;
onEditClick: () => void;
onAddAlertClick?: () => void;
onDeleteClick: () => void;
onUpdateChart?: (chart: Tile) => void;
onSettled?: () => void;
granularity: SQLInterval | undefined;
onTimeRangeSelect: (start: Date, end: Date) => void;
filters?: Filter[];
// Properties forwarded by grid layout
className?: string;
style?: React.CSSProperties;
onMouseDown?: (e: React.MouseEvent) => void;
onMouseUp?: (e: React.MouseEvent) => void;
onTouchEnd?: (e: React.TouchEvent) => void;
children?: React.ReactNode; // Resizer tooltip
isHighlighted?: boolean;
},
ref: ForwardedRef<HTMLDivElement>,
) => {
useEffect(() => {
if (isHighlighted) {
document
.getElementById(`chart-${chart.id}`)
?.scrollIntoView({ behavior: 'smooth' });
}
}, [chart.id, isHighlighted]);
const [queriedConfig, setQueriedConfig] = useState<
ChartConfigWithDateRange | undefined
>(undefined);
const { data: source } = useSource({
id: chart.config.source,
});
useEffect(() => {
if (source != null) {
// TODO: will need to update this when we allow for multiple metrics per chart
const firstSelect = chart.config.select[0];
const metricType =
typeof firstSelect !== 'string' ? firstSelect?.metricType : undefined;
const tableName = getMetricTableName(source, metricType);
if (source.connection) {
setQueriedConfig({
...chart.config,
connection: source.connection,
dateRange,
granularity,
timestampValueExpression: source.timestampValueExpression,
from: {
databaseName: source.from?.databaseName || 'default',
tableName: tableName || '',
},
implicitColumnExpression: source.implicitColumnExpression,
filters,
metricTables: source.metricTables,
});
}
}
}, [source, chart, dateRange, granularity, filters]);
const [hovered, setHovered] = useState(false);
const alert = chart.config.alert;
const alertIndicatorColor = useMemo(() => {
if (!alert) {
return 'transparent';
}
if (alert.state === AlertState.OK) {
return 'green';
}
if (alert.silenced?.at) {
return 'yellow';
}
return 'red';
}, [alert]);
const alertTooltip = useMemo(() => {
if (!alert) {
return 'Add alert';
}
let tooltip = `Has alert and is in ${alert.state} state`;
if (alert.silenced?.at) {
const silencedAt = new Date(alert.silenced.at);
tooltip += `. Ack'd ${formatRelative(silencedAt, new Date())}`;
}
return tooltip;
}, [alert]);
const hoverToolbar = useMemo(() => {
return (
<Flex
gap="0px"
onMouseDown={e => e.stopPropagation()}
key="hover-toolbar"
style={{ visibility: hovered ? 'visible' : 'hidden' }}
>
{(chart.config.displayType === DisplayType.Line ||
chart.config.displayType === DisplayType.StackedBar) && (
<Indicator
size={alert?.state === AlertState.OK ? 6 : 8}
zIndex={1}
color={alertIndicatorColor}
processing={alert?.state === AlertState.ALERT}
label={!alert && <span className="fs-8">+</span>}
mr={4}
>
<Tooltip label={alertTooltip} withArrow>
<Button
data-testid={`tile-alerts-button-${chart.id}`}
variant="subtle"
color="gray"
size="xxs"
onClick={onEditClick}
>
<IconBell size={16} />
</Button>
</Tooltip>
</Indicator>
)}
<Button
data-testid={`tile-duplicate-button-${chart.id}`}
variant="subtle"
color="gray"
size="xxs"
onClick={onDuplicateClick}
title="Duplicate"
>
<IconCopy size={14} />
</Button>
<Button
data-testid={`tile-edit-button-${chart.id}`}
variant="subtle"
color="gray"
size="xxs"
onClick={onEditClick}
title="Edit"
>
<IconPencil size={14} />
</Button>
<Button
data-testid={`tile-delete-button-${chart.id}`}
variant="subtle"
color="gray"
size="xxs"
onClick={onDeleteClick}
title="Delete"
>
<IconTrash size={14} />
</Button>
</Flex>
);
}, [
alert,
alertIndicatorColor,
alertTooltip,
chart.config.displayType,
chart.id,
hovered,
onDeleteClick,
onDuplicateClick,
onEditClick,
]);
const title = useMemo(
() => (
<Text size="sm" ms="xs">
{chart.config.name}
</Text>
),
[chart.config.name],
);
return (
<div
data-testid={`dashboard-tile-${chart.id}`}
className={`p-2 pt-0 ${className} d-flex flex-column bg-muted cursor-grab rounded ${
isHighlighted && 'dashboard-chart-highlighted'
}`}
id={`chart-${chart.id}`}
onMouseEnter={() => setHovered(true)}
onMouseLeave={() => setHovered(false)}
key={chart.id}
ref={ref}
style={{
...style,
}}
onMouseDown={onMouseDown}
onMouseUp={onMouseUp}
onTouchEnd={onTouchEnd}
>
<Group justify="center" py={4}>
<Box bg={hovered ? 'gray' : undefined} w={100} h={2}></Box>
</Group>
<div
className="fs-7 text-muted flex-grow-1 overflow-hidden cursor-default"
onMouseDown={e => e.stopPropagation()}
>
<ErrorBoundary
onError={console.error}
fallback={
<div className="text-danger px-2 py-1 m-2 fs-7 font-monospace bg-danger-transparent">
An error occurred while rendering the chart.
</div>
}
>
{(queriedConfig?.displayType === DisplayType.Line ||
queriedConfig?.displayType === DisplayType.StackedBar) && (
<DBTimeChart
title={title}
toolbarPrefix={[hoverToolbar]}
sourceId={chart.config.source}
showDisplaySwitcher={true}
config={queriedConfig}
onTimeRangeSelect={onTimeRangeSelect}
setDisplayType={displayType => {
onUpdateChart?.({
...chart,
config: {
...chart.config,
displayType,
},
});
}}
/>
)}
{queriedConfig?.displayType === DisplayType.Table && (
<Box p="xs" h="100%">
<DBTableChart
title={title}
toolbarPrefix={[hoverToolbar]}
config={queriedConfig}
getRowSearchLink={row =>
buildTableRowSearchUrl({
row,
source,
config: queriedConfig,
dateRange: dateRange,
})
}
/>
</Box>
)}
{queriedConfig?.displayType === DisplayType.Number && (
<DBNumberChart
title={title}
toolbarPrefix={[hoverToolbar]}
config={queriedConfig}
/>
)}
{queriedConfig?.displayType === DisplayType.Markdown && (
<HDXMarkdownChart
title={title}
toolbarItems={[hoverToolbar]}
config={queriedConfig}
/>
)}
{queriedConfig?.displayType === DisplayType.Search && (
<DBSqlRowTableWithSideBar
enabled
sourceId={chart.config.source}
config={{
...queriedConfig,
orderBy: [
{
ordering: 'DESC',
valueExpression: getFirstTimestampValueExpression(
queriedConfig.timestampValueExpression,
),
},
],
dateRange,
select:
queriedConfig.select ||
source?.defaultTableSelectExpression ||
'',
groupBy: undefined,
granularity: undefined,
}}
isLive={false}
queryKeyPrefix={'search'}
/>
)}
</ErrorBoundary>
</div>
{children}
</div>
);
},
);
const EditTileModal = ({
dashboardId,
chart,
onClose,
onSave,
isSaving,
dateRange,
}: {
dashboardId?: string;
chart: Tile | undefined;
onClose: () => void;
dateRange: [Date, Date];
isSaving?: boolean;
onSave: (chart: Tile) => void;
}) => {
const contextZIndex = useZIndex();
const modalZIndex = contextZIndex + 10;
return (
<Modal
opened={chart != null}
onClose={onClose}
withCloseButton={false}
centered
size="90%"
padding="xs"
zIndex={modalZIndex}
>
{chart != null && (
<ZIndexContext.Provider value={modalZIndex + 10}>
<EditTimeChartForm
dashboardId={dashboardId}
chartConfig={chart.config}
dateRange={dateRange}
isSaving={isSaving}
onSave={config => {
onSave({
...chart,
config: config,
});
}}
onClose={onClose}
/>
</ZIndexContext.Provider>
)}
</Modal>
);
};
const updateLayout = (newLayout: RGL.Layout[]) => {
return (dashboard: Dashboard) => {
for (const chart of dashboard.tiles) {
const newChartLayout = newLayout.find(layout => layout.i === chart.id);
if (newChartLayout) {
chart.x = newChartLayout.x;
chart.y = newChartLayout.y;
chart.w = newChartLayout.w;
chart.h = newChartLayout.h;
}
}
};
};
function DashboardName({
name,
onSave,
}: {
name: string;
onSave: (name: string) => void;
}) {
const [editing, setEditing] = useState(false);
const [editedName, setEditedName] = useState(name);
const { hovered, ref } = useHover();
return (
<Box
ref={ref}
pe="md"
onDoubleClick={() => setEditing(true)}
className="cursor-pointer"
title="Double click to edit"
>
{editing ? (
<form
className="d-flex align-items-center"
onSubmit={e => {
e.preventDefault();
onSave(editedName);
setEditing(false);
}}
>
<Input
type="text"
value={editedName}
onChange={(e: React.ChangeEvent<HTMLInputElement>) =>
setEditedName(e.target.value)
}
placeholder="Dashboard Name"
/>
<Button ms="sm" variant="outline" type="submit" color="green">
Save Name
</Button>
</form>
) : (
<div className="d-flex align-items-center" style={{ minWidth: 100 }}>
<Title fw={400} order={3}>
{name}
</Title>
{hovered && (
<Button
ms="xs"
variant="subtle"
size="xs"
onClick={() => setEditing(true)}
>
<IconPencil size={14} />
</Button>
)}
</div>
)}
</Box>
);
}
// Download an object to users computer as JSON using specified name
function downloadObjectAsJson(object: object, fileName = 'output') {
const dataStr =
'data:text/json;charset=utf-8,' +
encodeURIComponent(JSON.stringify(object));
const downloadAnchorNode = document.createElement('a');
downloadAnchorNode.setAttribute('href', dataStr);
downloadAnchorNode.setAttribute('download', fileName + '.json');
document.body.appendChild(downloadAnchorNode); // required for firefox
downloadAnchorNode.click();
downloadAnchorNode.remove();
}
function DBDashboardPage({ presetConfig }: { presetConfig?: Dashboard }) {
const confirm = useConfirm();
const router = useRouter();
const dashboardId = router.query.dashboardId as string | undefined;
const {
dashboard,
setDashboard,
dashboardHash,
isLocalDashboard,
isFetching: isFetchingDashboard,
isSetting: isSavingDashboard,
} = useDashboard({
dashboardId: dashboardId as string | undefined,
presetConfig,
});
const { data: sources } = useSources();
const [highlightedTileId] = useQueryState('highlightedTileId');
const tableConnections = useMemo(() => {
if (!dashboard) return [];
const tc: TableConnection[] = [];
for (const { config } of dashboard.tiles) {
const source = sources?.find(v => v.id === config.source);
if (!source) continue;
// TODO: will need to update this when we allow for multiple metrics per chart
const firstSelect = config.select[0];
const metricType =
typeof firstSelect !== 'string' ? firstSelect?.metricType : undefined;
const tableName = getMetricTableName(source, metricType);
if (!tableName) continue;
tc.push({
databaseName: source.from.databaseName,
tableName: tableName,
connectionId: source.connection,
});
}
return tc;
}, [dashboard, sources]);
const [granularity, setGranularity] = useQueryState(
'granularity',
parseAsString,
// TODO: Build parser
) as [SQLInterval | undefined, (value: SQLInterval | undefined) => void];
const [where, setWhere] = useQueryState(
'where',
parseAsStringWithNewLines.withDefault(''),
);
const [whereLanguage, setWhereLanguage] = useQueryState(
'whereLanguage',
parseAsString.withDefault('lucene'),
);
const [showFiltersModal, setShowFiltersModal] = useState(false);
const filters = dashboard?.filters ?? [];
const { filterValues, setFilterValue, filterQueries } =
useDashboardFilters(filters);
const handleSaveFilter = (filter: DashboardFilter) => {
if (!dashboard) return;
setDashboard(
produce(dashboard, draft => {
const filterIndex =
draft.filters?.findIndex(p => p.id === filter.id) ?? -1;
if (draft.filters && filterIndex !== -1) {
draft.filters[filterIndex] = filter;
} else {
draft.filters = [...(draft.filters ?? []), filter];
}
}),
);
};
const handleRemoveFilter = (id: string) => {
if (!dashboard) return;
setDashboard({
...dashboard,
filters: dashboard.filters?.filter(p => p.id !== id) ?? [],
});
};
const [isLive, setIsLive] = useState(false);
const { control, setValue, handleSubmit } = useForm<{
granularity: SQLInterval | 'auto';
where: SearchCondition;
whereLanguage: SearchConditionLanguage;
}>({
defaultValues: {
granularity: granularity ?? 'auto',
where: where ?? '',
whereLanguage: (whereLanguage as SearchConditionLanguage) ?? 'lucene',
},
});
const watchedGranularity = useWatch({ control, name: 'granularity' });
useEffect(() => {
if (watchedGranularity && watchedGranularity !== granularity) {
setGranularity(watchedGranularity as SQLInterval);
}
}, [watchedGranularity, granularity, setGranularity]);
const [displayedTimeInputValue, setDisplayedTimeInputValue] =
useState('Past 1h');
const { searchedTimeRange, onSearch, onTimeRangeSelect } = useNewTimeQuery({
initialDisplayValue: 'Past 1h',
initialTimeRange: defaultTimeRange,
setDisplayedTimeInputValue,
});
const {
granularityOverride,
isRefreshEnabled,
manualRefreshCooloff,
refresh,
} = useDashboardRefresh({
searchedTimeRange,
onTimeRangeSelect,
isLive,
});
const onSubmit = () => {
onSearch(displayedTimeInputValue);
handleSubmit(data => {
setWhere(data.where as SearchCondition);
setWhereLanguage((data.whereLanguage as SearchConditionLanguage) ?? null);
})();
};
const [editedTile, setEditedTile] = useState<undefined | Tile>();
const onAddTile = () => {
setEditedTile({
id: makeId(),
x: 0,
y: 0,
w: 8,
h: 10,
config: {
...DEFAULT_CHART_CONFIG,
source: sources?.[0]?.id ?? '',
},
});
};
const layout = (dashboard?.tiles ?? []).map(chart => {
return {
i: chart.id,
x: chart.x,
y: chart.y,
w: chart.w,
h: chart.h,
minH: 1,
minW: 1,
};
});
const tiles = useMemo(
() =>
(dashboard?.tiles ?? []).map(chart => {
return (
<Tile
key={chart.id}
chart={chart}
dateRange={searchedTimeRange}
onEditClick={() => setEditedTile(chart)}
granularity={
isRefreshEnabled
? granularityOverride
: (granularity ?? undefined)
}
filters={[
{
type: whereLanguage === 'sql' ? 'sql' : 'lucene',
condition: where,
},
...(filterQueries ?? []),
]}
onTimeRangeSelect={onTimeRangeSelect}
isHighlighted={highlightedTileId === chart.id}
onUpdateChart={newChart => {
if (!dashboard) {
return;
}
setDashboard(
produce(dashboard, draft => {
const chartIndex = draft.tiles.findIndex(
c => c.id === chart.id,
);
if (chartIndex === -1) {
return;
}
draft.tiles[chartIndex] = newChart;
}),
);
}}
onDuplicateClick={async () => {
if (dashboard != null) {
if (
!(await confirm(
`Duplicate ${chart.config.name}?`,
'Duplicate',
))
) {
return;
}
setDashboard({
...dashboard,
tiles: [
...dashboard.tiles,
{
...chart,
id: makeId(),
},
],
});
}
}}
onDeleteClick={async () => {
if (dashboard != null) {
if (
!(await confirm(`Delete ${chart.config.name}?`, 'Delete'))
) {
return;
}
setDashboard({
...dashboard,
tiles: dashboard.tiles.filter(c => c.id !== chart.id),
});
}
}}
/>
);
}),
[
dashboard,
searchedTimeRange,
isRefreshEnabled,
granularityOverride,
granularity,
highlightedTileId,
confirm,
setDashboard,
where,
whereLanguage,
onTimeRangeSelect,
filterQueries,
],
);
const deleteDashboard = useDeleteDashboard();
const handleUpdateTags = useCallback(
(newTags: string[]) => {
if (dashboard?.id) {
setDashboard(
{
...dashboard,
tags: newTags,
},
() => {
notifications.show({
color: 'green',
message: 'Tags updated successfully',
});
},
() => {
notifications.show({
color: 'red',
message: (
<>
An error occurred. <ContactSupportText />
</>
),
});
},
);
}
},
[dashboard, setDashboard],
);
const createDashboard = useCreateDashboard();
const onCreateDashboard = useCallback(() => {
createDashboard.mutate(
{
name: 'My Dashboard',
tiles: [],
tags: [],
},
{
onSuccess: data => {
router.push(`/dashboards/${data.id}`);
},
},
);
}, [createDashboard, router]);
const [isSaving, setIsSaving] = useState(false);
const hasTiles = dashboard && dashboard.tiles.length > 0;
return (
<Box p="sm" data-testid="dashboard-page">
<Head>
<title>Dashboard – HyperDX</title>
</Head>
<OnboardingModal />
<EditTileModal
dashboardId={dashboardId}
chart={editedTile}
onClose={() => {
if (!isSaving) {
setEditedTile(undefined);
}
}}
dateRange={searchedTimeRange}
isSaving={isSaving}
onSave={newChart => {
if (dashboard == null) {
return;
}
setIsSaving(true);
setDashboard(
produce(dashboard, draft => {
const chartIndex = draft.tiles.findIndex(
chart => chart.id === newChart.id,
);
// This is a new chart (probably?)
if (chartIndex === -1) {
draft.tiles.push(newChart);
} else {
draft.tiles[chartIndex] = newChart;
}
}),
() => {
setEditedTile(undefined);
setIsSaving(false);
},
() => {
setIsSaving(false);
},
);
}}
/>
{IS_LOCAL_MODE === false && isLocalDashboard && (
<Paper my="lg" p="md" data-testid="temporary-dashboard-banner">
<Flex justify="space-between" align="center">
<Text size="sm">
This is a temporary dashboard and can not be saved.
</Text>
<Button
variant="outline"
color="green"
fw={400}
onClick={onCreateDashboard}
>
Create New Saved Dashboard
</Button>
</Flex>
</Paper>
)}
<Flex mt="xs" mb="md" justify="space-between" align="center">
<DashboardName
key={`${dashboardHash}`}
name={dashboard?.name ?? ''}
onSave={editedName => {
if (dashboard != null) {
setDashboard({
...dashboard,
name: editedName,
});
}
}}
/>
<Group gap="xs">
{!isLocalDashboard && dashboard?.id && (
<Tags
allowCreate
values={dashboard?.tags || []}
onChange={handleUpdateTags}
>
<Button
variant="default"
px="xs"
size="xs"
style={{ flexShrink: 0 }}
>
<IconTags size={14} className="me-2" />
{dashboard?.tags?.length || 0}{' '}
{dashboard?.tags?.length === 1 ? 'Tag' : 'Tags'}
</Button>
</Tags>
)}
{!isLocalDashboard /* local dashboards cant be "deleted" */ && (
<Menu width={250}>
<Menu.Target>
<Button variant="default" px="xs" size="xs">
<IconDotsVertical size={14} />
</Button>
</Menu.Target>
<Menu.Dropdown>
{hasTiles && (
<Menu.Item
leftSection={<IconDownload size={16} />}
onClick={() => {
if (!sources || !dashboard) {
notifications.show({
color: 'red',
message: 'Export Failed',
});
return;
}
downloadObjectAsJson(
convertToDashboardTemplate(
dashboard,
// TODO: fix this type issue
sources as TSourceUnion[],
),
dashboard?.name,
);
}}
>