123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543 |
- import {Fragment, useEffect} from 'react';
- import {css} from '@emotion/react';
- import styled from '@emotion/styled';
- import {Location} from 'history';
- import {hideSidebar, showSidebar} from 'sentry/actionCreators/preferences';
- import Feature from 'sentry/components/acl/feature';
- import GuideAnchor from 'sentry/components/assistant/guideAnchor';
- import HookOrDefault from 'sentry/components/hookOrDefault';
- import PerformanceOnboardingSidebar from 'sentry/components/performanceOnboarding/sidebar';
- import {
- IconChevron,
- IconDashboard,
- IconIssues,
- IconLab,
- IconLightning,
- IconList,
- IconPlay,
- IconProject,
- IconReleases,
- IconSettings,
- IconSiren,
- IconSpan,
- IconStats,
- IconSupport,
- IconTelescope,
- } from 'sentry/icons';
- import {t} from 'sentry/locale';
- import ConfigStore from 'sentry/stores/configStore';
- import HookStore from 'sentry/stores/hookStore';
- import PreferencesStore from 'sentry/stores/preferencesStore';
- import SidebarPanelStore from 'sentry/stores/sidebarPanelStore';
- import {useLegacyStore} from 'sentry/stores/useLegacyStore';
- import space from 'sentry/styles/space';
- import {Organization} from 'sentry/types';
- import {getDiscoverLandingUrl} from 'sentry/utils/discover/urls';
- import theme from 'sentry/utils/theme';
- import useMedia from 'sentry/utils/useMedia';
- import Broadcasts from './broadcasts';
- import SidebarHelp from './help';
- import OnboardingStatus from './onboardingStatus';
- import ServiceIncidents from './serviceIncidents';
- import SidebarDropdown from './sidebarDropdown';
- import SidebarItem from './sidebarItem';
- import {SidebarOrientation, SidebarPanelKey} from './types';
- const SidebarOverride = HookOrDefault({
- hookName: 'sidebar:item-override',
- defaultComponent: ({children}) => <Fragment>{children({})}</Fragment>,
- });
- type Props = {
- location?: Location;
- organization?: Organization;
- };
- function activatePanel(panel: SidebarPanelKey) {
- SidebarPanelStore.activatePanel(panel);
- }
- function togglePanel(panel: SidebarPanelKey) {
- SidebarPanelStore.togglePanel(panel);
- }
- function hidePanel() {
- SidebarPanelStore.hidePanel();
- }
- function Sidebar({location, organization}: Props) {
- const config = useLegacyStore(ConfigStore);
- const preferences = useLegacyStore(PreferencesStore);
- const activePanel = useLegacyStore(SidebarPanelStore);
- const collapsed = !!preferences.collapsed;
- const horizontal = useMedia(`(max-width: ${theme.breakpoints.medium})`);
- const toggleCollapse = () => {
- const action = collapsed ? showSidebar : hideSidebar;
- action();
- };
- const bcl = document.body.classList;
- // Close panel on any navigation
- useEffect(() => void hidePanel(), [location?.pathname]);
- // Add classname to body
- useEffect(() => {
- bcl.add('body-sidebar');
- return () => bcl.remove('body-sidebar');
- }, [bcl]);
- // Add sidebar collapse classname to body
- useEffect(() => {
- if (collapsed) {
- bcl.add('collapsed');
- } else {
- bcl.remove('collapsed');
- }
- return () => bcl.remove('collapsed');
- }, [collapsed, bcl]);
- // Trigger panels depending on the location hash
- useEffect(() => {
- if (location?.hash === '#welcome') {
- activatePanel(SidebarPanelKey.OnboardingWizard);
- }
- }, [location?.hash]);
- const hasPanel = !!activePanel;
- const hasOrganization = !!organization;
- const orientation: SidebarOrientation = horizontal ? 'top' : 'left';
- const sidebarItemProps = {
- orientation,
- collapsed,
- hasPanel,
- organization,
- };
- const projects = hasOrganization && (
- <SidebarItem
- {...sidebarItemProps}
- index
- icon={<IconProject size="md" />}
- label={<GuideAnchor target="projects">{t('Projects')}</GuideAnchor>}
- to={`/organizations/${organization.slug}/projects/`}
- id="projects"
- />
- );
- const issues = hasOrganization && (
- <SidebarItem
- {...sidebarItemProps}
- icon={<IconIssues size="md" />}
- label={<GuideAnchor target="issues">{t('Issues')}</GuideAnchor>}
- to={`/organizations/${organization.slug}/issues/`}
- id="issues"
- />
- );
- const discover2 = hasOrganization && (
- <Feature
- hookName="feature-disabled:discover2-sidebar-item"
- features={['discover-basic']}
- organization={organization}
- >
- <SidebarItem
- {...sidebarItemProps}
- icon={<IconTelescope size="md" />}
- label={<GuideAnchor target="discover">{t('Discover')}</GuideAnchor>}
- to={getDiscoverLandingUrl(organization)}
- id="discover-v2"
- />
- </Feature>
- );
- const performance = hasOrganization && (
- <Feature
- hookName="feature-disabled:performance-sidebar-item"
- features={['performance-view']}
- organization={organization}
- >
- <SidebarOverride id="performance-override">
- {(overideProps: Partial<React.ComponentProps<typeof SidebarItem>>) => (
- <SidebarItem
- {...sidebarItemProps}
- icon={<IconLightning size="md" />}
- label={<GuideAnchor target="performance">{t('Performance')}</GuideAnchor>}
- to={`/organizations/${organization.slug}/performance/`}
- id="performance"
- {...overideProps}
- />
- )}
- </SidebarOverride>
- </Feature>
- );
- const releases = hasOrganization && (
- <SidebarItem
- {...sidebarItemProps}
- icon={<IconReleases size="md" />}
- label={<GuideAnchor target="releases">{t('Releases')}</GuideAnchor>}
- to={`/organizations/${organization.slug}/releases/`}
- id="releases"
- />
- );
- const userFeedback = hasOrganization && (
- <SidebarItem
- {...sidebarItemProps}
- icon={<IconSupport size="md" />}
- label={t('User Feedback')}
- to={`/organizations/${organization.slug}/user-feedback/`}
- id="user-feedback"
- />
- );
- const alerts = hasOrganization && (
- <SidebarItem
- {...sidebarItemProps}
- icon={<IconSiren size="md" />}
- label={t('Alerts')}
- to={`/organizations/${organization.slug}/alerts/rules/`}
- id="alerts"
- />
- );
- const monitors = hasOrganization && (
- <Feature features={['monitors']} organization={organization}>
- <SidebarItem
- {...sidebarItemProps}
- icon={<IconLab size="md" />}
- label={t('Monitors')}
- to={`/organizations/${organization.slug}/monitors/`}
- id="monitors"
- />
- </Feature>
- );
- const replays = hasOrganization && (
- <Feature features={['session-replay']} organization={organization}>
- <SidebarItem
- {...sidebarItemProps}
- icon={<IconPlay size="md" />}
- label={t('Replays')}
- to={`/organizations/${organization.slug}/replays/`}
- id="replays"
- />
- </Feature>
- );
- const dashboards = hasOrganization && (
- <Feature
- hookName="feature-disabled:dashboards-sidebar-item"
- features={['discover', 'discover-query', 'dashboards-basic', 'dashboards-edit']}
- organization={organization}
- requireAll={false}
- >
- <SidebarItem
- {...sidebarItemProps}
- index
- icon={<IconDashboard size="md" />}
- label={t('Dashboards')}
- to={`/organizations/${organization.slug}/dashboards/`}
- id="customizable-dashboards"
- />
- </Feature>
- );
- const profiling = hasOrganization && (
- <Feature
- hookName="feature-disabled:profiling-sidebar-item"
- features={['profiling']}
- organization={organization}
- requireAll={false}
- >
- <SidebarItem
- {...sidebarItemProps}
- index
- icon={<IconSpan size="md" />}
- label={t('Profiling')}
- to={`/organizations/${organization.slug}/profiling/`}
- id="profiling"
- isAlpha
- />
- </Feature>
- );
- const activity = hasOrganization && (
- <SidebarItem
- {...sidebarItemProps}
- icon={<IconList size="md" />}
- label={t('Activity')}
- to={`/organizations/${organization.slug}/activity/`}
- id="activity"
- />
- );
- const stats = hasOrganization && (
- <SidebarItem
- {...sidebarItemProps}
- icon={<IconStats size="md" />}
- label={t('Stats')}
- to={`/organizations/${organization.slug}/stats/`}
- id="stats"
- />
- );
- const settings = hasOrganization && (
- <SidebarItem
- {...sidebarItemProps}
- icon={<IconSettings size="md" />}
- label={t('Settings')}
- to={`/settings/${organization.slug}/`}
- id="settings"
- />
- );
- return (
- <SidebarWrapper collapsed={collapsed}>
- <SidebarSectionGroupPrimary>
- <SidebarSection>
- <SidebarDropdown
- orientation={orientation}
- collapsed={collapsed}
- org={organization}
- user={config.user}
- config={config}
- />
- </SidebarSection>
- <PrimaryItems>
- {hasOrganization && (
- <Fragment>
- <SidebarSection>
- {projects}
- {issues}
- {performance}
- {releases}
- {userFeedback}
- {alerts}
- {discover2}
- {dashboards}
- {profiling}
- </SidebarSection>
- <SidebarSection>
- {replays}
- {monitors}
- </SidebarSection>
- <SidebarSection>
- {activity}
- {stats}
- </SidebarSection>
- <SidebarSection>{settings}</SidebarSection>
- </Fragment>
- )}
- </PrimaryItems>
- </SidebarSectionGroupPrimary>
- {hasOrganization && (
- <SidebarSectionGroup>
- <PerformanceOnboardingSidebar
- currentPanel={activePanel}
- onShowPanel={() => togglePanel(SidebarPanelKey.PerformanceOnboarding)}
- hidePanel={hidePanel}
- {...sidebarItemProps}
- />
- <SidebarSection noMargin noPadding>
- <OnboardingStatus
- org={organization}
- currentPanel={activePanel}
- onShowPanel={() => togglePanel(SidebarPanelKey.OnboardingWizard)}
- hidePanel={hidePanel}
- {...sidebarItemProps}
- />
- </SidebarSection>
- <SidebarSection>
- {HookStore.get('sidebar:bottom-items').length > 0 &&
- HookStore.get('sidebar:bottom-items')[0]({
- orientation,
- collapsed,
- hasPanel,
- organization,
- })}
- <SidebarHelp
- orientation={orientation}
- collapsed={collapsed}
- hidePanel={hidePanel}
- organization={organization}
- />
- <Broadcasts
- orientation={orientation}
- collapsed={collapsed}
- currentPanel={activePanel}
- onShowPanel={() => togglePanel(SidebarPanelKey.Broadcasts)}
- hidePanel={hidePanel}
- organization={organization}
- />
- <ServiceIncidents
- orientation={orientation}
- collapsed={collapsed}
- currentPanel={activePanel}
- onShowPanel={() => togglePanel(SidebarPanelKey.ServiceIncidents)}
- hidePanel={hidePanel}
- />
- </SidebarSection>
- {!horizontal && (
- <SidebarSection>
- <SidebarCollapseItem
- id="collapse"
- data-test-id="sidebar-collapse"
- {...sidebarItemProps}
- icon={<StyledIconChevron collapsed={collapsed} />}
- label={collapsed ? t('Expand') : t('Collapse')}
- onClick={toggleCollapse}
- />
- </SidebarSection>
- )}
- </SidebarSectionGroup>
- )}
- </SidebarWrapper>
- );
- }
- export default Sidebar;
- const responsiveFlex = css`
- display: flex;
- flex-direction: column;
- @media (max-width: ${theme.breakpoints.medium}) {
- flex-direction: row;
- }
- `;
- export const SidebarWrapper = styled('nav')<{collapsed: boolean}>`
- background: ${p => p.theme.sidebarGradient};
- color: ${p => p.theme.sidebar.color};
- line-height: 1;
- padding: 12px 0 2px; /* Allows for 32px avatars */
- width: ${p => p.theme.sidebar[p.collapsed ? 'collapsedWidth' : 'expandedWidth']};
- position: fixed;
- top: ${p => (ConfigStore.get('demoMode') ? p.theme.demo.headerSize : 0)};
- left: 0;
- bottom: 0;
- justify-content: space-between;
- z-index: ${p => p.theme.zIndex.sidebar};
- border-right: solid 1px ${p => p.theme.sidebarBorder};
- ${responsiveFlex};
- @media (max-width: ${p => p.theme.breakpoints.medium}) {
- top: 0;
- left: 0;
- right: 0;
- height: ${p => p.theme.sidebar.mobileHeight};
- bottom: auto;
- width: auto;
- padding: 0 ${space(1)};
- align-items: center;
- border-right: none;
- border-bottom: solid 1px ${p => p.theme.sidebarBorder};
- }
- `;
- const SidebarSectionGroup = styled('div')`
- ${responsiveFlex};
- flex-shrink: 0; /* prevents shrinking on Safari */
- `;
- const SidebarSectionGroupPrimary = styled('div')`
- ${responsiveFlex};
- /* necessary for child flexing on msedge and ff */
- min-height: 0;
- min-width: 0;
- flex: 1;
- /* expand to fill the entire height on mobile */
- @media (max-width: ${p => p.theme.breakpoints.medium}) {
- height: 100%;
- align-items: center;
- }
- `;
- const PrimaryItems = styled('div')`
- overflow: auto;
- flex: 1;
- display: flex;
- flex-direction: column;
- -ms-overflow-style: -ms-autohiding-scrollbar;
- @media (max-height: 675px) and (min-width: ${p => p.theme.breakpoints.medium}) {
- border-bottom: 1px solid ${p => p.theme.gray400};
- padding-bottom: ${space(1)};
- box-shadow: rgba(0, 0, 0, 0.15) 0px -10px 10px inset;
- &::-webkit-scrollbar {
- background-color: transparent;
- width: 8px;
- }
- &::-webkit-scrollbar-thumb {
- background: ${p => p.theme.gray400};
- border-radius: 8px;
- }
- }
- @media (max-width: ${p => p.theme.breakpoints.medium}) {
- overflow-y: visible;
- flex-direction: row;
- height: 100%;
- align-items: center;
- border-right: 1px solid ${p => p.theme.gray400};
- padding-right: ${space(1)};
- margin-right: ${space(0.5)};
- box-shadow: rgba(0, 0, 0, 0.15) -10px 0px 10px inset;
- ::-webkit-scrollbar {
- display: none;
- }
- }
- `;
- const SidebarSection = styled(SidebarSectionGroup)<{
- noMargin?: boolean;
- noPadding?: boolean;
- }>`
- ${p => !p.noMargin && `margin: ${space(1)} 0`};
- ${p => !p.noPadding && 'padding: 0 19px'};
- @media (max-width: ${p => p.theme.breakpoints.small}) {
- margin: 0;
- padding: 0;
- }
- &:empty {
- display: none;
- }
- `;
- const ExpandedIcon = css`
- transition: 0.3s transform ease;
- transform: rotate(270deg);
- `;
- const CollapsedIcon = css`
- transform: rotate(90deg);
- `;
- const StyledIconChevron = styled(({collapsed, ...props}) => (
- <IconChevron
- direction="left"
- size="md"
- isCircled
- css={[ExpandedIcon, collapsed && CollapsedIcon]}
- {...props}
- />
- ))``;
- const SidebarCollapseItem = styled(SidebarItem)`
- @media (max-width: ${p => p.theme.breakpoints.medium}) {
- display: none;
- }
- `;
|