* Stash noImplicitAny work * Stash * Fix imports * Iterate * Fix tests * Delint * Fix tests
70 lines
2.1 KiB
TypeScript
70 lines
2.1 KiB
TypeScript
/*
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
import React from "react";
|
|
|
|
import UIStore, { UI_EVENTS } from "../../../stores/UIStore";
|
|
|
|
interface IProps {
|
|
sensor: Element;
|
|
breakpoint: number;
|
|
onMeasurement(narrow: boolean): void;
|
|
}
|
|
|
|
export default class Measured extends React.PureComponent<IProps> {
|
|
private static instanceCount = 0;
|
|
private readonly instanceId: number;
|
|
|
|
public static defaultProps = {
|
|
breakpoint: 500,
|
|
};
|
|
|
|
public constructor(props: IProps) {
|
|
super(props);
|
|
|
|
this.instanceId = Measured.instanceCount++;
|
|
}
|
|
|
|
public componentDidMount(): void {
|
|
UIStore.instance.on(`Measured${this.instanceId}`, this.onResize);
|
|
}
|
|
|
|
public componentDidUpdate(prevProps: Readonly<IProps>): void {
|
|
const previous = prevProps.sensor;
|
|
const current = this.props.sensor;
|
|
if (previous === current) return;
|
|
if (previous) {
|
|
UIStore.instance.stopTrackingElementDimensions(`Measured${this.instanceId}`);
|
|
}
|
|
if (current) {
|
|
UIStore.instance.trackElementDimensions(`Measured${this.instanceId}`, this.props.sensor);
|
|
}
|
|
}
|
|
|
|
public componentWillUnmount(): void {
|
|
UIStore.instance.off(`Measured${this.instanceId}`, this.onResize);
|
|
UIStore.instance.stopTrackingElementDimensions(`Measured${this.instanceId}`);
|
|
}
|
|
|
|
private onResize = (type: UI_EVENTS, entry: ResizeObserverEntry): void => {
|
|
if (type !== UI_EVENTS.Resize) return;
|
|
this.props.onMeasurement(entry.contentRect.width <= this.props.breakpoint);
|
|
};
|
|
|
|
public render(): JSX.Element {
|
|
return null;
|
|
}
|
|
}
|