mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* ShareModal: refactor dashboard export modal * Modal: show react modals with appEvents * ShareModal: embed panel tab * ShareModal: bind to shortcut (p s) * grafana-ui: ClipboardButton component * ShareModal: use ClipboardButton component * ClipboardButton: add to storybook * ShareModal: use event-based approach for dashboard share * ShareModal: remove unused * ModalReact: pass theme to the component * ShareModal: styles clean up * DashboardExporter: fix tests * fixed whitespace betwen icon and link * ShareModal: use theme from config * Modal: tab header refactor * ShareModal: tests * ShareModal: fix share url rendering * ShareModal: remove unused angular files * Chore: fix strictNullChecks errors * Modal: provide theme for event-based modal usage * ShareModal: use ModalsController for opening modal Co-authored-by: Torkel Ödegaard <torkel@grafana.com>
284 lines
7.8 KiB
TypeScript
284 lines
7.8 KiB
TypeScript
// Libaries
|
|
import React, { PureComponent } from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { e2e } from '@grafana/e2e';
|
|
// Utils & Services
|
|
import { appEvents } from 'app/core/app_events';
|
|
import { PlaylistSrv } from 'app/features/playlist/playlist_srv';
|
|
// Components
|
|
import { DashNavButton } from './DashNavButton';
|
|
import { DashNavTimeControls } from './DashNavTimeControls';
|
|
import { ModalsController } from '@grafana/ui';
|
|
import { BackButton } from 'app/core/components/BackButton/BackButton';
|
|
// State
|
|
import { updateLocation } from 'app/core/actions';
|
|
// Types
|
|
import { DashboardModel } from '../../state';
|
|
import { CoreEvents, StoreState } from 'app/types';
|
|
import { ShareModal } from '../ShareModal/ShareModal';
|
|
import { SaveDashboardModalProxy } from 'app/features/dashboard/components/SaveDashboard/SaveDashboardModalProxy';
|
|
|
|
export interface OwnProps {
|
|
dashboard: DashboardModel;
|
|
editview: string;
|
|
isEditing: boolean;
|
|
isFullscreen: boolean;
|
|
$injector: any;
|
|
updateLocation: typeof updateLocation;
|
|
onAddPanel: () => void;
|
|
}
|
|
|
|
export interface StateProps {
|
|
location: any;
|
|
}
|
|
|
|
type Props = StateProps & OwnProps;
|
|
|
|
export class DashNav extends PureComponent<Props> {
|
|
playlistSrv: PlaylistSrv;
|
|
|
|
constructor(props: Props) {
|
|
super(props);
|
|
this.playlistSrv = this.props.$injector.get('playlistSrv');
|
|
}
|
|
|
|
onDahboardNameClick = () => {
|
|
appEvents.emit(CoreEvents.showDashSearch);
|
|
};
|
|
|
|
onFolderNameClick = () => {
|
|
appEvents.emit(CoreEvents.showDashSearch, {
|
|
query: 'folder:current',
|
|
});
|
|
};
|
|
|
|
onClose = () => {
|
|
if (this.props.editview) {
|
|
this.props.updateLocation({
|
|
query: { editview: null },
|
|
partial: true,
|
|
});
|
|
} else {
|
|
this.props.updateLocation({
|
|
query: { panelId: null, edit: null, fullscreen: null, tab: null },
|
|
partial: true,
|
|
});
|
|
}
|
|
};
|
|
|
|
onToggleTVMode = () => {
|
|
appEvents.emit(CoreEvents.toggleKioskMode);
|
|
};
|
|
|
|
onOpenSettings = () => {
|
|
this.props.updateLocation({
|
|
query: { editview: 'settings' },
|
|
partial: true,
|
|
});
|
|
};
|
|
|
|
onStarDashboard = () => {
|
|
const { dashboard, $injector } = this.props;
|
|
const dashboardSrv = $injector.get('dashboardSrv');
|
|
|
|
dashboardSrv.starDashboard(dashboard.id, dashboard.meta.isStarred).then((newState: any) => {
|
|
dashboard.meta.isStarred = newState;
|
|
this.forceUpdate();
|
|
});
|
|
};
|
|
|
|
onPlaylistPrev = () => {
|
|
this.playlistSrv.prev();
|
|
};
|
|
|
|
onPlaylistNext = () => {
|
|
this.playlistSrv.next();
|
|
};
|
|
|
|
onPlaylistStop = () => {
|
|
this.playlistSrv.stop();
|
|
this.forceUpdate();
|
|
};
|
|
|
|
renderDashboardTitleSearchButton() {
|
|
const { dashboard } = this.props;
|
|
|
|
const folderTitle = dashboard.meta.folderTitle;
|
|
const haveFolder = dashboard.meta.folderId > 0;
|
|
|
|
return (
|
|
<>
|
|
<div>
|
|
<div className="navbar-page-btn">
|
|
{!this.isInFullscreenOrSettings && <i className="gicon gicon-dashboard" />}
|
|
{haveFolder && (
|
|
<>
|
|
<a className="navbar-page-btn__folder" onClick={this.onFolderNameClick}>
|
|
{folderTitle}
|
|
</a>
|
|
<i className="fa fa-chevron-right navbar-page-btn__folder-icon" />
|
|
</>
|
|
)}
|
|
<a onClick={this.onDahboardNameClick}>
|
|
{dashboard.title} <i className="fa fa-caret-down navbar-page-btn__search" />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{this.isSettings && <span className="navbar-settings-title"> / Settings</span>}
|
|
<div className="navbar__spacer" />
|
|
</>
|
|
);
|
|
}
|
|
|
|
get isInFullscreenOrSettings() {
|
|
return this.props.editview || this.props.isFullscreen;
|
|
}
|
|
|
|
get isSettings() {
|
|
return this.props.editview;
|
|
}
|
|
|
|
renderBackButton() {
|
|
return (
|
|
<div className="navbar-edit">
|
|
<BackButton onClick={this.onClose} aria-label={e2e.pages.Dashboard.Toolbar.selectors.backArrow} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const { dashboard, onAddPanel, location } = this.props;
|
|
const { canStar, canSave, canShare, showSettings, isStarred } = dashboard.meta;
|
|
const { snapshot } = dashboard;
|
|
const snapshotUrl = snapshot && snapshot.originalUrl;
|
|
return (
|
|
<div className="navbar">
|
|
{this.isInFullscreenOrSettings && this.renderBackButton()}
|
|
{this.renderDashboardTitleSearchButton()}
|
|
|
|
{this.playlistSrv.isPlaying && (
|
|
<div className="navbar-buttons navbar-buttons--playlist">
|
|
<DashNavButton
|
|
tooltip="Go to previous dashboard"
|
|
classSuffix="tight"
|
|
icon="fa fa-step-backward"
|
|
onClick={this.onPlaylistPrev}
|
|
/>
|
|
<DashNavButton
|
|
tooltip="Stop playlist"
|
|
classSuffix="tight"
|
|
icon="fa fa-stop"
|
|
onClick={this.onPlaylistStop}
|
|
/>
|
|
<DashNavButton
|
|
tooltip="Go to next dashboard"
|
|
classSuffix="tight"
|
|
icon="fa fa-forward"
|
|
onClick={this.onPlaylistNext}
|
|
/>
|
|
</div>
|
|
)}
|
|
|
|
<div className="navbar-buttons navbar-buttons--actions">
|
|
{canSave && (
|
|
<DashNavButton
|
|
tooltip="Add panel"
|
|
classSuffix="add-panel"
|
|
icon="gicon gicon-add-panel"
|
|
onClick={onAddPanel}
|
|
/>
|
|
)}
|
|
|
|
{canStar && (
|
|
<DashNavButton
|
|
tooltip="Mark as favorite"
|
|
classSuffix="star"
|
|
icon={`${isStarred ? 'fa fa-star' : 'fa fa-star-o'}`}
|
|
onClick={this.onStarDashboard}
|
|
/>
|
|
)}
|
|
|
|
{canShare && (
|
|
<ModalsController>
|
|
{({ showModal, hideModal }) => (
|
|
<DashNavButton
|
|
tooltip="Share dashboard"
|
|
classSuffix="share"
|
|
icon="fa fa-share-square-o"
|
|
onClick={() => {
|
|
showModal(ShareModal, {
|
|
dashboard,
|
|
onDismiss: hideModal,
|
|
});
|
|
}}
|
|
/>
|
|
)}
|
|
</ModalsController>
|
|
)}
|
|
|
|
{canSave && (
|
|
<ModalsController>
|
|
{({ showModal, hideModal }) => (
|
|
<DashNavButton
|
|
tooltip="Save dashboard"
|
|
classSuffix="save"
|
|
icon="fa fa-save"
|
|
onClick={() => {
|
|
showModal(SaveDashboardModalProxy, {
|
|
dashboard,
|
|
onDismiss: hideModal,
|
|
});
|
|
}}
|
|
/>
|
|
)}
|
|
</ModalsController>
|
|
)}
|
|
|
|
{snapshotUrl && (
|
|
<DashNavButton
|
|
tooltip="Open original dashboard"
|
|
classSuffix="snapshot-origin"
|
|
icon="gicon gicon-link"
|
|
href={snapshotUrl}
|
|
/>
|
|
)}
|
|
|
|
{showSettings && (
|
|
<DashNavButton
|
|
tooltip="Dashboard settings"
|
|
classSuffix="settings"
|
|
icon="gicon gicon-cog"
|
|
onClick={this.onOpenSettings}
|
|
/>
|
|
)}
|
|
</div>
|
|
|
|
<div className="navbar-buttons navbar-buttons--tv">
|
|
<DashNavButton
|
|
tooltip="Cycle view mode"
|
|
classSuffix="tv"
|
|
icon="fa fa-desktop"
|
|
onClick={this.onToggleTVMode}
|
|
/>
|
|
</div>
|
|
|
|
{!dashboard.timepicker.hidden && (
|
|
<div className="navbar-buttons">
|
|
<DashNavTimeControls dashboard={dashboard} location={location} updateLocation={updateLocation} />
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
const mapStateToProps = (state: StoreState) => ({
|
|
location: state.location,
|
|
});
|
|
|
|
const mapDispatchToProps = {
|
|
updateLocation,
|
|
};
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(DashNav);
|