* refactor: menuRow directive to MenuRow component * refactor: migrate footer to react * refactor: migrate actions menu to react * refactor: migrate history menu to react * fix: click outside handler use capture to trigger event before re-render occurs which would otherwise cause node.contains to return incorrect result (specifically for the account menu) * refactor: migrate revision preview modal to react * refactor: migrate permissions modal to react * refactor: migrate password wizard to react * refactor: remove unused input modal directive * refactor: remove unused delay hide component * refactor: remove unused filechange directive * refactor: remove unused elemReady directive * refactor: remove unused sn-enter directive * refactor: remove unused lowercase directive * refactor: remove unused autofocus directive * refactor(wip): note view to react * refactor: use mutation observer to deinit textarea listeners * refactor: migrate challenge modal to react * refactor: migrate note group view to react * refactor(wip): migrate remaining classes * fix: navigation parent ref * refactor: fully remove angular assets * fix: account switcher * fix: application view state * refactor: remove unused password wizard type * fix: revision preview and permissions modal * fix: remove angular comment * refactor: react panel resizers for editor * feat: simple panel resizer * fix: use simple panel resizer everywhere * fix: simplify panel resizer state * chore: rename simple panel resizer to panel resizer * refactor: simplify column layout * fix: editor mount safety check * fix: use inline onLoad callback for iframe, as setting onload after it loads will never call it * chore: fix note view test * chore(deps): upgrade snjs
141 lines
3.4 KiB
TypeScript
141 lines
3.4 KiB
TypeScript
import { ApplicationEvent } from '@standardnotes/snjs';
|
|
import { WebApplication } from '@/ui_models/application';
|
|
import { AppState } from '@/ui_models/app_state';
|
|
import { autorun, IReactionDisposer, IReactionPublic } from 'mobx';
|
|
import { Component } from 'preact';
|
|
import { findDOMNode, unmountComponentAtNode } from 'preact/compat';
|
|
|
|
export type PureComponentState = Partial<Record<string, any>>;
|
|
export type PureComponentProps = Partial<Record<string, any>>;
|
|
|
|
export abstract class PureComponent<
|
|
P = PureComponentProps,
|
|
S = PureComponentState
|
|
> extends Component<P, S> {
|
|
private unsubApp!: () => void;
|
|
private unsubState!: () => void;
|
|
private reactionDisposers: IReactionDisposer[] = [];
|
|
|
|
constructor(props: P, protected application: WebApplication) {
|
|
super(props);
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.addAppEventObserver();
|
|
this.addAppStateObserver();
|
|
}
|
|
|
|
deinit(): void {
|
|
this.unsubApp?.();
|
|
this.unsubState?.();
|
|
for (const disposer of this.reactionDisposers) {
|
|
disposer();
|
|
}
|
|
this.reactionDisposers.length = 0;
|
|
(this.unsubApp as unknown) = undefined;
|
|
(this.unsubState as unknown) = undefined;
|
|
}
|
|
|
|
protected dismissModal(): void {
|
|
const elem = this.getElement();
|
|
if (!elem) {
|
|
return;
|
|
}
|
|
|
|
const parent = elem.parentElement;
|
|
if (!parent) {
|
|
return;
|
|
}
|
|
parent.remove();
|
|
unmountComponentAtNode(parent);
|
|
}
|
|
|
|
componentWillUnmount(): void {
|
|
this.deinit();
|
|
}
|
|
|
|
render() {
|
|
return <div>Must override</div>;
|
|
}
|
|
|
|
public get appState(): AppState {
|
|
return this.application.getAppState();
|
|
}
|
|
|
|
protected getElement(): Element | null {
|
|
return findDOMNode(this);
|
|
}
|
|
|
|
autorun(view: (r: IReactionPublic) => void): void {
|
|
this.reactionDisposers.push(autorun(view));
|
|
}
|
|
|
|
addAppStateObserver() {
|
|
this.unsubState = this.application!.getAppState().addObserver(
|
|
async (eventName, data) => {
|
|
this.onAppStateEvent(eventName, data);
|
|
}
|
|
);
|
|
}
|
|
|
|
onAppStateEvent(eventName: any, data: any) {
|
|
/** Optional override */
|
|
}
|
|
|
|
addAppEventObserver() {
|
|
if (this.application!.isStarted()) {
|
|
this.onAppStart();
|
|
}
|
|
if (this.application!.isLaunched()) {
|
|
this.onAppLaunch();
|
|
}
|
|
this.unsubApp = this.application!.addEventObserver(
|
|
async (eventName, data: any) => {
|
|
this.onAppEvent(eventName, data);
|
|
if (eventName === ApplicationEvent.Started) {
|
|
await this.onAppStart();
|
|
} else if (eventName === ApplicationEvent.Launched) {
|
|
await this.onAppLaunch();
|
|
} else if (eventName === ApplicationEvent.CompletedIncrementalSync) {
|
|
this.onAppIncrementalSync();
|
|
} else if (eventName === ApplicationEvent.CompletedFullSync) {
|
|
this.onAppFullSync();
|
|
} else if (eventName === ApplicationEvent.KeyStatusChanged) {
|
|
this.onAppKeyChange();
|
|
} else if (eventName === ApplicationEvent.LocalDataLoaded) {
|
|
this.onLocalDataLoaded();
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
onAppEvent(eventName: ApplicationEvent, data?: any) {
|
|
/** Optional override */
|
|
}
|
|
|
|
/** @override */
|
|
async onAppStart() {
|
|
/** Optional override */
|
|
}
|
|
|
|
onLocalDataLoaded() {
|
|
/** Optional override */
|
|
}
|
|
|
|
async onAppLaunch() {
|
|
/** Optional override */
|
|
}
|
|
|
|
async onAppKeyChange() {
|
|
/** Optional override */
|
|
}
|
|
|
|
onAppIncrementalSync() {
|
|
/** Optional override */
|
|
}
|
|
|
|
onAppFullSync() {
|
|
/** Optional override */
|
|
}
|
|
}
|