2020-04-22 20:53:18 +02:00
|
|
|
import {errorToDOM} from "./error.js";
|
|
|
|
|
2020-04-20 21:26:39 +02:00
|
|
|
export class SwitchView {
|
2019-06-15 17:49:45 +02:00
|
|
|
constructor(defaultView) {
|
|
|
|
this._childView = defaultView;
|
|
|
|
}
|
|
|
|
|
|
|
|
mount() {
|
|
|
|
return this._childView.mount();
|
|
|
|
}
|
|
|
|
|
|
|
|
unmount() {
|
|
|
|
return this._childView.unmount();
|
|
|
|
}
|
|
|
|
|
|
|
|
root() {
|
|
|
|
return this._childView.root();
|
|
|
|
}
|
|
|
|
|
|
|
|
update() {
|
|
|
|
return this._childView.update();
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(newView) {
|
|
|
|
const oldRoot = this.root();
|
|
|
|
this._childView.unmount();
|
|
|
|
this._childView = newView;
|
2020-04-22 20:53:18 +02:00
|
|
|
let newRoot;
|
|
|
|
try {
|
|
|
|
newRoot = this._childView.mount();
|
|
|
|
} catch (err) {
|
|
|
|
newRoot = errorToDOM(err);
|
|
|
|
}
|
2019-06-15 17:49:45 +02:00
|
|
|
const parent = oldRoot.parentElement;
|
|
|
|
if (parent) {
|
|
|
|
parent.replaceChild(newRoot, oldRoot);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
get childView() {
|
|
|
|
return this._childView;
|
|
|
|
}
|
|
|
|
}
|
2020-04-19 19:02:10 +02:00
|
|
|
/*
|
2020-04-09 23:19:49 +02:00
|
|
|
// SessionLoadView
|
|
|
|
// should this be the new switch view?
|
|
|
|
// and the other one be the BasicSwitchView?
|
|
|
|
new BoundSwitchView(vm, vm => vm.isLoading, (loading, vm) => {
|
|
|
|
if (loading) {
|
|
|
|
return new InlineTemplateView(vm, t => {
|
|
|
|
return t.div({className: "loading"}, [
|
|
|
|
t.span({className: "spinner"}),
|
|
|
|
t.span(vm => vm.loadingText)
|
|
|
|
]);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
return new SessionView(vm.sessionViewModel);
|
|
|
|
}
|
|
|
|
});
|
2020-04-19 19:02:10 +02:00
|
|
|
*/
|
|
|
|
export class BoundSwitchView extends SwitchView {
|
2020-04-09 23:19:49 +02:00
|
|
|
constructor(value, mapper, viewCreator) {
|
|
|
|
super(viewCreator(mapper(value), value));
|
|
|
|
this._mapper = mapper;
|
|
|
|
this._viewCreator = viewCreator;
|
|
|
|
this._mappedValue = mapper(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
update(value) {
|
|
|
|
const mappedValue = this._mapper(value);
|
|
|
|
if (mappedValue !== this._mappedValue) {
|
|
|
|
this._mappedValue = mappedValue;
|
|
|
|
this.switch(this._viewCreator(this._mappedValue, value));
|
|
|
|
} else {
|
|
|
|
super.update(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|