Files
element-web/src/utils/ResizeNotifier.ts
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

71 lines
1.9 KiB
TypeScript
Raw Normal View History

/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
Copyright 2019-2021 The Matrix.org Foundation C.I.C.
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-09 14:57:16 +01:00
Please see LICENSE files in the repository root for full details.
*/
/**
* Fires when the middle panel has been resized (throttled).
* @event module:utils~ResizeNotifier#"middlePanelResized"
*/
/**
* Fires when the middle panel has been resized by a pixel.
* @event module:utils~ResizeNotifier#"middlePanelResizedNoisy"
*/
2021-06-22 17:22:38 +01:00
import { EventEmitter } from "events";
import { throttle } from "lodash";
export default class ResizeNotifier extends EventEmitter {
2021-06-22 17:22:38 +01:00
private _isResizing = false;
// with default options, will call fn once at first call, and then every x ms
// if there was another call in that timespan
private throttledMiddlePanel = throttle(() => this.emit("middlePanelResized"), 200);
public get isResizing(): boolean {
return this._isResizing;
}
public startResizing(): void {
this._isResizing = true;
2020-10-19 13:08:11 +01:00
this.emit("isResizing", true);
}
public stopResizing(): void {
this._isResizing = false;
2020-10-19 13:08:11 +01:00
this.emit("isResizing", false);
}
private noisyMiddlePanel(): void {
this.emit("middlePanelResizedNoisy");
}
private updateMiddlePanel(): void {
2021-06-22 17:22:38 +01:00
this.throttledMiddlePanel();
this.noisyMiddlePanel();
}
// can be called in quick succession
public notifyLeftHandleResized(): void {
// don't emit event for own region
2021-06-22 17:22:38 +01:00
this.updateMiddlePanel();
}
// can be called in quick succession
public notifyRightHandleResized(): void {
2021-06-22 17:22:38 +01:00
this.updateMiddlePanel();
}
public notifyTimelineHeightChanged(): void {
2021-06-22 17:22:38 +01:00
this.updateMiddlePanel();
}
// can be called in quick succession
public notifyWindowResized(): void {
2021-06-22 17:22:38 +01:00
this.updateMiddlePanel();
}
}