2016-10-12 02:55:53 +02:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
|
|
|
(C) 2016 Inria
|
|
|
|
|
|
|
|
TALER is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
|
|
|
|
|
|
|
TALER is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-05-24 16:14:23 +02:00
|
|
|
* General helper React components.
|
2016-10-12 02:55:53 +02:00
|
|
|
*/
|
|
|
|
|
2017-05-24 16:14:23 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Imports.
|
|
|
|
*/
|
2017-04-20 03:09:25 +02:00
|
|
|
import * as React from "react";
|
|
|
|
|
2017-05-28 22:31:54 +02:00
|
|
|
/**
|
|
|
|
* Wrapper around state that will cause updates to the
|
|
|
|
* containing component.
|
|
|
|
*/
|
2016-10-12 02:55:53 +02:00
|
|
|
export interface StateHolder<T> {
|
|
|
|
(): T;
|
|
|
|
(newState: T): void;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Component that doesn't hold its state in one object,
|
|
|
|
* but has multiple state holders.
|
|
|
|
*/
|
2016-11-13 08:16:12 +01:00
|
|
|
export abstract class ImplicitStateComponent<PropType> extends React.Component<PropType, any> {
|
2017-05-28 16:27:34 +02:00
|
|
|
private _implicit = {needsUpdate: false, didMount: false};
|
2017-04-28 23:28:27 +02:00
|
|
|
componentDidMount() {
|
|
|
|
this._implicit.didMount = true;
|
|
|
|
if (this._implicit.needsUpdate) {
|
|
|
|
this.setState({} as any);
|
|
|
|
}
|
|
|
|
}
|
2016-10-12 02:55:53 +02:00
|
|
|
makeState<StateType>(initial: StateType): StateHolder<StateType> {
|
|
|
|
let state: StateType = initial;
|
|
|
|
return (s?: StateType): StateType => {
|
|
|
|
if (s !== undefined) {
|
|
|
|
state = s;
|
2017-04-28 23:28:27 +02:00
|
|
|
if (this._implicit.didMount) {
|
|
|
|
this.setState({} as any);
|
|
|
|
} else {
|
|
|
|
this._implicit.needsUpdate = true;
|
|
|
|
}
|
2016-10-12 02:55:53 +02:00
|
|
|
}
|
|
|
|
return state;
|
|
|
|
};
|
|
|
|
}
|
2016-11-13 08:16:12 +01:00
|
|
|
}
|