mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-23 13:02:21 +08:00
456 lines
12 KiB
TypeScript
456 lines
12 KiB
TypeScript
import {
|
|
isFrameBlock,
|
|
type NavigatorMode,
|
|
} from '@blocksuite/affine-block-frame';
|
|
import { toast } from '@blocksuite/affine-components/toast';
|
|
import type { FrameBlockModel } from '@blocksuite/affine-model';
|
|
import { EditPropsStore } from '@blocksuite/affine-shared/services';
|
|
import type { GfxToolsFullOptionValue } from '@blocksuite/block-std/gfx';
|
|
import { Bound, clamp } from '@blocksuite/global/gfx';
|
|
import { SignalWatcher } from '@blocksuite/global/utils';
|
|
import {
|
|
EndPointArrowIcon,
|
|
ExpandCloseIcon,
|
|
ExpandFullIcon,
|
|
StartPointArrowIcon,
|
|
StopAiIcon,
|
|
} from '@blocksuite/icons/lit';
|
|
import { effect } from '@preact/signals-core';
|
|
import { cssVar } from '@toeverything/theme';
|
|
import { css, html, LitElement, nothing, type PropertyValues } from 'lit';
|
|
import { property, state } from 'lit/decorators.js';
|
|
|
|
import type { EdgelessRootBlockComponent } from '../../edgeless-root-block.js';
|
|
import { launchIntoFullscreen } from '../utils.js';
|
|
import { EdgelessToolbarToolMixin } from './mixins/tool.mixin.js';
|
|
|
|
export class PresentationToolbar extends EdgelessToolbarToolMixin(
|
|
SignalWatcher(LitElement)
|
|
) {
|
|
static override styles = css`
|
|
:host {
|
|
align-items: inherit;
|
|
width: 100%;
|
|
height: 100%;
|
|
gap: 8px;
|
|
padding-right: 2px;
|
|
}
|
|
.full-divider {
|
|
width: 8px;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.full-divider::after {
|
|
content: '';
|
|
width: 1px;
|
|
height: 100%;
|
|
background: var(--affine-border-color);
|
|
transform: scaleX(0.5);
|
|
}
|
|
.config-buttons {
|
|
display: flex;
|
|
gap: 10px;
|
|
}
|
|
.edgeless-frame-navigator {
|
|
width: 140px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.edgeless-frame-navigator.dense {
|
|
width: auto;
|
|
}
|
|
|
|
.edgeless-frame-navigator-title {
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
.edgeless-frame-navigator-count {
|
|
color: var(--affine-text-secondary-color);
|
|
white-space: nowrap;
|
|
}
|
|
.edgeless-frame-navigator-stop {
|
|
border: none;
|
|
cursor: pointer;
|
|
padding: 4px;
|
|
border-radius: 8px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
|
|
svg {
|
|
display: block;
|
|
width: 24px;
|
|
height: 24px;
|
|
color: white;
|
|
}
|
|
}
|
|
.edgeless-frame-navigator-stop::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: transparent;
|
|
border-radius: inherit;
|
|
}
|
|
.edgeless-frame-navigator-stop:hover::before {
|
|
background: var(--affine-hover-color);
|
|
}
|
|
`;
|
|
|
|
private _cachedIndex = -1;
|
|
|
|
private _timer?: ReturnType<typeof setTimeout>;
|
|
|
|
override type: GfxToolsFullOptionValue['type'] = 'frameNavigator';
|
|
|
|
private get _cachedPresentHideToolbar() {
|
|
return !!this.edgeless.std
|
|
.get(EditPropsStore)
|
|
.getStorage('presentHideToolbar');
|
|
}
|
|
|
|
private set _cachedPresentHideToolbar(value) {
|
|
this.edgeless.std
|
|
.get(EditPropsStore)
|
|
.setStorage('presentHideToolbar', !!value);
|
|
}
|
|
|
|
private get _frames(): FrameBlockModel[] {
|
|
return this.edgeless.service.frames;
|
|
}
|
|
|
|
get dense() {
|
|
return this.containerWidth < 554;
|
|
}
|
|
|
|
get host() {
|
|
return this.edgeless.host;
|
|
}
|
|
|
|
constructor(edgeless: EdgelessRootBlockComponent) {
|
|
super();
|
|
this.edgeless = edgeless;
|
|
}
|
|
|
|
private _bindHotKey() {
|
|
const handleKeyIfFrameNavigator = (action: () => void) => () => {
|
|
if (this.edgelessTool.type === 'frameNavigator') {
|
|
action();
|
|
}
|
|
};
|
|
|
|
this.edgeless.bindHotKey(
|
|
{
|
|
ArrowLeft: handleKeyIfFrameNavigator(() => this._previousFrame()),
|
|
ArrowRight: handleKeyIfFrameNavigator(() => this._nextFrame()),
|
|
Escape: handleKeyIfFrameNavigator(() => this._exitPresentation()),
|
|
},
|
|
{
|
|
global: true,
|
|
}
|
|
);
|
|
}
|
|
|
|
private _exitPresentation() {
|
|
// When exit presentation mode, we need to set the tool to default or pan
|
|
// And exit fullscreen
|
|
this.setEdgelessTool(
|
|
this.edgeless.doc.readonly
|
|
? { type: 'pan', panning: false }
|
|
: { type: 'default' }
|
|
);
|
|
|
|
if (document.fullscreenElement) {
|
|
document.exitFullscreen().catch(console.error);
|
|
}
|
|
}
|
|
|
|
private _moveToCurrentFrame() {
|
|
const current = this._currentFrameIndex;
|
|
const viewport = this.edgeless.service.viewport;
|
|
const frame = this._frames[current];
|
|
|
|
if (frame) {
|
|
let bound = Bound.deserialize(frame.xywh);
|
|
|
|
if (this._navigatorMode === 'fill') {
|
|
const vb = viewport.viewportBounds;
|
|
const center = bound.center;
|
|
let w, h;
|
|
if (vb.w / vb.h > bound.w / bound.h) {
|
|
w = bound.w;
|
|
h = (w * vb.h) / vb.w;
|
|
} else {
|
|
h = bound.h;
|
|
w = (h * vb.w) / vb.h;
|
|
}
|
|
bound = Bound.fromCenter(center, w, h);
|
|
}
|
|
|
|
viewport.setViewportByBound(bound, [0, 0, 0, 0], false);
|
|
this.edgeless.slots.navigatorFrameChanged.emit(
|
|
this._frames[this._currentFrameIndex]
|
|
);
|
|
}
|
|
}
|
|
|
|
private _nextFrame() {
|
|
const frames = this._frames;
|
|
const min = 0;
|
|
const max = frames.length - 1;
|
|
if (this._currentFrameIndex === frames.length - 1) {
|
|
toast(this.host, 'You have reached the last frame');
|
|
} else {
|
|
this._currentFrameIndex = clamp(this._currentFrameIndex + 1, min, max);
|
|
}
|
|
}
|
|
|
|
private _previousFrame() {
|
|
const frames = this._frames;
|
|
const min = 0;
|
|
const max = frames.length - 1;
|
|
if (this._currentFrameIndex === 0) {
|
|
toast(this.host, 'You have reached the first frame');
|
|
} else {
|
|
this._currentFrameIndex = clamp(this._currentFrameIndex - 1, min, max);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Toggle fullscreen, but keep edgeless tool to frameNavigator
|
|
* If already fullscreen, exit fullscreen
|
|
* If not fullscreen, enter fullscreen
|
|
*/
|
|
private _toggleFullScreen() {
|
|
if (document.fullscreenElement) {
|
|
document.exitFullscreen().catch(console.error);
|
|
this._fullScreenMode = false;
|
|
} else {
|
|
launchIntoFullscreen(this.edgeless.viewportElement);
|
|
this._fullScreenMode = true;
|
|
}
|
|
}
|
|
|
|
override connectedCallback(): void {
|
|
super.connectedCallback();
|
|
|
|
const { _disposables, edgeless } = this;
|
|
|
|
_disposables.add(
|
|
effect(() => {
|
|
const currentTool = this.edgeless.gfx.tool.currentToolOption$.value;
|
|
|
|
if (currentTool?.type === 'frameNavigator') {
|
|
this._cachedIndex = this._currentFrameIndex;
|
|
this._navigatorMode = currentTool.mode ?? this._navigatorMode;
|
|
if (isFrameBlock(edgeless.service.selection.selectedElements[0])) {
|
|
this._cachedIndex = this._frames.findIndex(
|
|
frame =>
|
|
frame.id === edgeless.service.selection.selectedElements[0].id
|
|
);
|
|
}
|
|
if (this._frames.length === 0)
|
|
toast(
|
|
this.host,
|
|
'The presentation requires at least 1 frame. You can firstly create a frame.',
|
|
5000
|
|
);
|
|
this._toggleFullScreen();
|
|
}
|
|
|
|
this.requestUpdate();
|
|
})
|
|
);
|
|
}
|
|
|
|
override firstUpdated() {
|
|
const { _disposables, edgeless } = this;
|
|
|
|
this._bindHotKey();
|
|
|
|
_disposables.add(
|
|
edgeless.slots.navigatorSettingUpdated.on(({ fillScreen }) => {
|
|
if (fillScreen !== undefined) {
|
|
this._navigatorMode = fillScreen ? 'fill' : 'fit';
|
|
}
|
|
})
|
|
);
|
|
|
|
_disposables.addFromEvent(document, 'fullscreenchange', () => {
|
|
if (document.fullscreenElement) {
|
|
// When enter fullscreen, we need to set current frame to the cached index
|
|
this._timer = setTimeout(() => {
|
|
this._currentFrameIndex = this._cachedIndex;
|
|
}, 400);
|
|
} else {
|
|
// When exit fullscreen, we need to clear the timer
|
|
clearTimeout(this._timer);
|
|
if (
|
|
this.edgelessTool.type === 'frameNavigator' &&
|
|
this._fullScreenMode
|
|
) {
|
|
this.setEdgelessTool(
|
|
this.edgeless.doc.readonly
|
|
? { type: 'pan', panning: false }
|
|
: { type: 'default' }
|
|
);
|
|
}
|
|
}
|
|
|
|
setTimeout(() => this._moveToCurrentFrame(), 400);
|
|
this.edgeless.slots.fullScreenToggled.emit();
|
|
});
|
|
|
|
this._navigatorMode =
|
|
this.edgeless.std.get(EditPropsStore).getStorage('presentFillScreen') ===
|
|
true
|
|
? 'fill'
|
|
: 'fit';
|
|
}
|
|
|
|
override render() {
|
|
const current = this._currentFrameIndex;
|
|
const frames = this._frames;
|
|
const frame = frames[current];
|
|
|
|
return html`
|
|
<style>
|
|
:host {
|
|
display: flex;
|
|
}
|
|
</style>
|
|
<edgeless-tool-icon-button
|
|
.iconContainerPadding=${0}
|
|
.tooltip=${'Previous'}
|
|
.iconSize=${'24px'}
|
|
@click=${() => this._previousFrame()}
|
|
>
|
|
${StartPointArrowIcon()}
|
|
</edgeless-tool-icon-button>
|
|
|
|
<div class="edgeless-frame-navigator ${this.dense ? 'dense' : ''}">
|
|
${this.dense
|
|
? nothing
|
|
: html`<span
|
|
style="color: ${cssVar('textPrimaryColor')}"
|
|
class="edgeless-frame-navigator-title"
|
|
@click=${() => this._moveToCurrentFrame()}
|
|
>
|
|
${frame?.title ?? 'no frame'}
|
|
</span>`}
|
|
|
|
<span class="edgeless-frame-navigator-count">
|
|
${frames.length === 0 ? 0 : current + 1} / ${frames.length}
|
|
</span>
|
|
</div>
|
|
|
|
<edgeless-tool-icon-button
|
|
.tooltip=${'Next'}
|
|
@click=${() => this._nextFrame()}
|
|
.iconContainerPadding=${0}
|
|
.iconSize=${'24px'}
|
|
>
|
|
${EndPointArrowIcon()}
|
|
</edgeless-tool-icon-button>
|
|
|
|
<div class="full-divider"></div>
|
|
|
|
<div class="config-buttons">
|
|
<edgeless-tool-icon-button
|
|
.tooltip=${document.fullscreenElement
|
|
? 'Exit Full Screen'
|
|
: 'Enter Full Screen'}
|
|
@click=${() => this._toggleFullScreen()}
|
|
.iconContainerPadding=${0}
|
|
.iconContainerWidth=${'24px'}
|
|
.iconSize=${'24px'}
|
|
>
|
|
${document.fullscreenElement ? ExpandCloseIcon() : ExpandFullIcon()}
|
|
</edgeless-tool-icon-button>
|
|
|
|
${this.dense
|
|
? nothing
|
|
: html`<edgeless-frame-order-button
|
|
.popperShow=${this.frameMenuShow}
|
|
.setPopperShow=${this.setFrameMenuShow}
|
|
.edgeless=${this.edgeless}
|
|
>
|
|
</edgeless-frame-order-button>`}
|
|
|
|
<edgeless-navigator-setting-button
|
|
.edgeless=${this.edgeless}
|
|
.hideToolbar=${this._cachedPresentHideToolbar}
|
|
.onHideToolbarChange=${(hideToolbar: boolean) => {
|
|
this._cachedPresentHideToolbar = hideToolbar;
|
|
}}
|
|
.popperShow=${this.settingMenuShow}
|
|
.setPopperShow=${this.setSettingMenuShow}
|
|
.includeFrameOrder=${this.dense}
|
|
>
|
|
</edgeless-navigator-setting-button>
|
|
</div>
|
|
|
|
<div class="full-divider"></div>
|
|
|
|
<button
|
|
class="edgeless-frame-navigator-stop"
|
|
@click=${this._exitPresentation}
|
|
style="background: ${cssVar('warningColor')}"
|
|
>
|
|
${StopAiIcon()}
|
|
</button>
|
|
`;
|
|
}
|
|
|
|
protected override updated(changedProperties: PropertyValues) {
|
|
if (
|
|
changedProperties.has('_currentFrameIndex') &&
|
|
this.edgelessTool.type === 'frameNavigator'
|
|
) {
|
|
this._moveToCurrentFrame();
|
|
}
|
|
}
|
|
|
|
@state({
|
|
hasChanged() {
|
|
return true;
|
|
},
|
|
})
|
|
private accessor _currentFrameIndex = 0;
|
|
|
|
private accessor _fullScreenMode = true;
|
|
|
|
@state()
|
|
private accessor _navigatorMode: NavigatorMode = 'fit';
|
|
|
|
@property({ attribute: false })
|
|
accessor containerWidth = 1920;
|
|
|
|
@property({ type: Boolean })
|
|
accessor frameMenuShow = false;
|
|
|
|
@property()
|
|
accessor setFrameMenuShow: (show: boolean) => void = () => {};
|
|
|
|
@property()
|
|
accessor setSettingMenuShow: (show: boolean) => void = () => {};
|
|
|
|
@property({ type: Boolean })
|
|
accessor settingMenuShow = false;
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
'presentation-toolbar': PresentationToolbar;
|
|
}
|
|
}
|