-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathWithTabs.tsx
65 lines (59 loc) · 1.85 KB
/
WithTabs.tsx
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
import React, { useMemo } from 'react';
import { SceneApp, SceneAppPage } from '@grafana/scenes';
import { ROUTES } from '../../constants';
import { prefixRoute } from '../../utils/utils.routing';
import { testIds } from '../../components/testIds';
import { getBasicScene } from '../Home/scenes';
import { css } from '@emotion/css';
import { GrafanaTheme2 } from '@grafana/data';
import { useStyles2 } from '@grafana/ui';
const getTab1Scene = () => {
return getBasicScene(false, '__server_names');
};
const getTab2Scene = () => {
return getBasicScene(false, '__house_locations');
};
const getScene = () =>
new SceneApp({
pages: [
new SceneAppPage({
title: 'Page with tabs',
subTitle: 'This scene showcases a basic tabs functionality.',
// Important: Mind the page route is ambiguous for the tabs to work properly
url: prefixRoute(`${ROUTES.WithTabs}`),
hideFromBreadcrumbs: true,
preserveUrlKeys: ['from', 'to'],
getScene: getTab1Scene,
tabs: [
new SceneAppPage({
title: 'Server names',
url: prefixRoute(`${ROUTES.WithTabs}`),
preserveUrlKeys: ['from', 'to'],
getScene: getTab1Scene,
}),
new SceneAppPage({
title: 'House locations',
url: prefixRoute(`${ROUTES.WithTabs}/tab-two`),
preserveUrlKeys: ['from', 'to'],
getScene: getTab2Scene,
}),
],
}),
],
});
export const PageWithTabs = () => {
const s = useStyles2(getStyles);
const scene = useMemo(() => getScene(), []);
return (
<div className={s.container} data-testid={testIds.pageWithTabs.container}>
<scene.Component model={scene} />
</div>
);
};
const getStyles = (theme: GrafanaTheme2) => ({
container: css`
display: flex;
flex-grow: 1;
height: 100%;
`,
});