mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 20:52:10 +08:00

* add folder actions to other tabs * fix copy pasta * add unit tests * don't need tree here * fixes some copy pasta * move into separate fixtures file
185 lines
5.3 KiB
TypeScript
185 lines
5.3 KiB
TypeScript
import { useObservable } from 'react-use';
|
|
import { BehaviorSubject } from 'rxjs';
|
|
|
|
import { AppEvents, NavModel, NavModelItem, PageLayoutType, UrlQueryValue } from '@grafana/data';
|
|
import { locationService, reportInteraction } from '@grafana/runtime';
|
|
import appEvents from 'app/core/app_events';
|
|
import { t } from 'app/core/internationalization';
|
|
import store from 'app/core/store';
|
|
import { isShallowEqual } from 'app/core/utils/isShallowEqual';
|
|
import { KioskMode } from 'app/types';
|
|
|
|
import { RouteDescriptor } from '../../navigation/types';
|
|
|
|
export interface AppChromeState {
|
|
chromeless?: boolean;
|
|
sectionNav: NavModel;
|
|
pageNav?: NavModelItem;
|
|
actions?: React.ReactNode;
|
|
searchBarHidden?: boolean;
|
|
megaMenuOpen?: boolean;
|
|
kioskMode: KioskMode | null;
|
|
layout: PageLayoutType;
|
|
}
|
|
|
|
export class AppChromeService {
|
|
searchBarStorageKey = 'SearchBar_Hidden';
|
|
private currentRoute?: RouteDescriptor;
|
|
private routeChangeHandled = true;
|
|
|
|
readonly state = new BehaviorSubject<AppChromeState>({
|
|
chromeless: true, // start out hidden to not flash it on pages without chrome
|
|
sectionNav: { node: { text: t('nav.home.title', 'Home') }, main: { text: '' } },
|
|
searchBarHidden: store.getBool(this.searchBarStorageKey, false),
|
|
kioskMode: null,
|
|
layout: PageLayoutType.Canvas,
|
|
});
|
|
|
|
setMatchedRoute(route: RouteDescriptor) {
|
|
if (this.currentRoute !== route) {
|
|
this.currentRoute = route;
|
|
this.routeChangeHandled = false;
|
|
}
|
|
}
|
|
|
|
update(update: Partial<AppChromeState>) {
|
|
const current = this.state.getValue();
|
|
const newState: AppChromeState = {
|
|
...current,
|
|
};
|
|
|
|
// when route change update props from route and clear fields
|
|
if (!this.routeChangeHandled) {
|
|
newState.actions = undefined;
|
|
newState.pageNav = undefined;
|
|
newState.sectionNav = { node: { text: t('nav.home.title', 'Home') }, main: { text: '' } };
|
|
newState.chromeless = this.currentRoute?.chromeless;
|
|
newState.layout = PageLayoutType.Standard;
|
|
this.routeChangeHandled = true;
|
|
}
|
|
|
|
Object.assign(newState, update);
|
|
|
|
// KioskMode overrides chromeless state
|
|
newState.chromeless = newState.kioskMode === KioskMode.Full || this.currentRoute?.chromeless;
|
|
|
|
if (!this.ignoreStateUpdate(newState, current)) {
|
|
this.state.next(newState);
|
|
}
|
|
}
|
|
|
|
ignoreStateUpdate(newState: AppChromeState, current: AppChromeState) {
|
|
if (isShallowEqual(newState, current)) {
|
|
return true;
|
|
}
|
|
|
|
// Some updates can have new instance of sectionNav or pageNav but with same values
|
|
if (newState.sectionNav !== current.sectionNav || newState.pageNav !== current.pageNav) {
|
|
if (
|
|
newState.actions === current.actions &&
|
|
newState.layout === current.layout &&
|
|
navItemsAreTheSame(newState.sectionNav.node, current.sectionNav.node) &&
|
|
navItemsAreTheSame(newState.pageNav, current.pageNav)
|
|
) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
useState() {
|
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
return useObservable(this.state, this.state.getValue());
|
|
}
|
|
|
|
onToggleMegaMenu = () => {
|
|
const isOpen = !this.state.getValue().megaMenuOpen;
|
|
reportInteraction('grafana_toggle_menu_clicked', { action: isOpen ? 'open' : 'close' });
|
|
this.update({ megaMenuOpen: isOpen });
|
|
};
|
|
|
|
setMegaMenu = (megaMenuOpen: boolean) => {
|
|
this.update({ megaMenuOpen });
|
|
};
|
|
|
|
onToggleSearchBar = () => {
|
|
const { searchBarHidden, kioskMode } = this.state.getValue();
|
|
const newSearchBarHidden = !searchBarHidden;
|
|
store.set(this.searchBarStorageKey, newSearchBarHidden);
|
|
|
|
if (kioskMode) {
|
|
locationService.partial({ kiosk: null });
|
|
}
|
|
|
|
this.update({ searchBarHidden: newSearchBarHidden, kioskMode: null });
|
|
};
|
|
|
|
onToggleKioskMode = () => {
|
|
const nextMode = this.getNextKioskMode();
|
|
this.update({ kioskMode: nextMode });
|
|
locationService.partial({ kiosk: this.getKioskUrlValue(nextMode) });
|
|
};
|
|
|
|
exitKioskMode() {
|
|
this.update({ kioskMode: undefined });
|
|
locationService.partial({ kiosk: null });
|
|
}
|
|
|
|
setKioskModeFromUrl(kiosk: UrlQueryValue) {
|
|
switch (kiosk) {
|
|
case 'tv':
|
|
this.update({ kioskMode: KioskMode.TV });
|
|
break;
|
|
case '1':
|
|
case true:
|
|
this.update({ kioskMode: KioskMode.Full });
|
|
}
|
|
}
|
|
|
|
getKioskUrlValue(mode: KioskMode | null) {
|
|
switch (mode) {
|
|
case KioskMode.TV:
|
|
return 'tv';
|
|
case KioskMode.Full:
|
|
return true;
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
|
|
private getNextKioskMode() {
|
|
const { kioskMode, searchBarHidden } = this.state.getValue();
|
|
|
|
if (searchBarHidden || kioskMode === KioskMode.TV) {
|
|
appEvents.emit(AppEvents.alertSuccess, [t('navigation.kiosk.tv-alert', 'Press ESC to exit kiosk mode')]);
|
|
return KioskMode.Full;
|
|
}
|
|
|
|
if (!kioskMode) {
|
|
return KioskMode.TV;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Checks if text, url, active child url and parent are the same
|
|
**/
|
|
function navItemsAreTheSame(a: NavModelItem | undefined, b: NavModelItem | undefined) {
|
|
if (a === b) {
|
|
return true;
|
|
}
|
|
|
|
const aActiveChild = a?.children?.find((child) => child.active);
|
|
const bActiveChild = b?.children?.find((child) => child.active);
|
|
|
|
return (
|
|
a?.text === b?.text &&
|
|
a?.url === b?.url &&
|
|
aActiveChild?.url === bActiveChild?.url &&
|
|
a?.parentItem === b?.parentItem
|
|
);
|
|
}
|