Improve folder structure
This commit is contained in:
191
examples/preact/widget.js
Normal file
191
examples/preact/widget.js
Normal file
@@ -0,0 +1,191 @@
|
||||
/*
|
||||
* Copyright 2021 Google LLC
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library 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
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
import { h, Component, createRef } from 'preact';
|
||||
|
||||
/** @typedef {import('./build/libapi.mjs').Config} Config */
|
||||
|
||||
/**
|
||||
* @param {Config} config
|
||||
*/
|
||||
function getValueForComparison(config) {
|
||||
if (config.type === 'window' || config.type === 'section') {
|
||||
// compare instances themselves
|
||||
return config;
|
||||
}
|
||||
return config.value;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @extends Component<{ config: Config, setValue: (name: string, value: any) => Promise<void> }>
|
||||
*/
|
||||
export class Widget extends Component {
|
||||
state = { inProgress: false };
|
||||
|
||||
shouldComponentUpdate(
|
||||
/** @type {Widget['props']} */ nextProps,
|
||||
/** @type {Widget['state']} */ nextState
|
||||
) {
|
||||
if (this.state.inProgress && nextState.inProgress) {
|
||||
return false;
|
||||
}
|
||||
if (this.state.inProgress || nextState.inProgress) {
|
||||
return true;
|
||||
}
|
||||
let prevConfig = this.props.config;
|
||||
let { config } = nextProps;
|
||||
if (config.type === 'toggle' && config.value === undefined) {
|
||||
return false;
|
||||
}
|
||||
return (
|
||||
getValueForComparison(config) !== getValueForComparison(prevConfig) ||
|
||||
config.readonly !== prevConfig.readonly
|
||||
);
|
||||
}
|
||||
|
||||
getValueProp(out = false) {
|
||||
switch (this.props.config.type) {
|
||||
case 'toggle':
|
||||
return 'checked';
|
||||
case 'datetime':
|
||||
return 'valueAsNumber';
|
||||
case 'range':
|
||||
// Apparently can't render with `valueAsNumber` as preact property,
|
||||
// but can retrieve it back.
|
||||
return out ? 'valueAsNumber' : 'value';
|
||||
default:
|
||||
return 'value';
|
||||
}
|
||||
}
|
||||
|
||||
handleChange = async e => {
|
||||
this.setState({ inProgress: true });
|
||||
try {
|
||||
await this.props.setValue(
|
||||
this.props.config.name,
|
||||
e.target[this.getValueProp(true)]
|
||||
);
|
||||
} finally {
|
||||
this.setState({ inProgress: false });
|
||||
}
|
||||
};
|
||||
|
||||
render(
|
||||
/** @type {Widget['props']} */ { config, setValue },
|
||||
/** @type {Widget['state']} */ { inProgress }
|
||||
) {
|
||||
let { label, name } = config;
|
||||
let id = `config-${name}`;
|
||||
if (config.type === 'window' || config.type === 'section') {
|
||||
let children = Object.values(config.children);
|
||||
if (!children.length) return;
|
||||
return h(
|
||||
'fieldset',
|
||||
{ id },
|
||||
h('legend', {}, label),
|
||||
children.map(config =>
|
||||
h(Widget, { key: config.name, config, setValue })
|
||||
)
|
||||
);
|
||||
}
|
||||
let { value, readonly } = config;
|
||||
let valueProp = this.getValueProp();
|
||||
let attrs = {
|
||||
id,
|
||||
[valueProp]: value,
|
||||
readonly: readonly || inProgress,
|
||||
onChange: this.handleChange
|
||||
};
|
||||
let inputElem;
|
||||
switch (config.type) {
|
||||
case 'range': {
|
||||
let { min, max, step } = config;
|
||||
inputElem = h(EditableInput, {
|
||||
type: 'number',
|
||||
min,
|
||||
max,
|
||||
step,
|
||||
...attrs
|
||||
});
|
||||
break;
|
||||
}
|
||||
case 'text':
|
||||
inputElem = h(EditableInput, attrs);
|
||||
break;
|
||||
case 'toggle': {
|
||||
inputElem = h('input', {
|
||||
type: 'checkbox',
|
||||
...attrs
|
||||
});
|
||||
break;
|
||||
}
|
||||
case 'menu':
|
||||
case 'radio': {
|
||||
let { choices } = config;
|
||||
inputElem = h(
|
||||
'select',
|
||||
attrs,
|
||||
choices.map(choice =>
|
||||
h(
|
||||
'option',
|
||||
{
|
||||
key: choice,
|
||||
disabled: attrs.readonly && value !== choice
|
||||
},
|
||||
choice
|
||||
)
|
||||
)
|
||||
);
|
||||
break;
|
||||
}
|
||||
case 'datetime': {
|
||||
inputElem = h(EditableInput, {
|
||||
type: 'datetime-local',
|
||||
...attrs
|
||||
});
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
inputElem = '(unimplemented)';
|
||||
break;
|
||||
}
|
||||
}
|
||||
return h(
|
||||
'div',
|
||||
{ class: 'pure-control-group' },
|
||||
h('label', { for: id }, (inProgress ? '⌛ ' : '') + label),
|
||||
inputElem
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Wrapper around <input /> that doesn't update it while it's in focus to allow editing.
|
||||
*/
|
||||
class EditableInput extends Component {
|
||||
ref = createRef();
|
||||
|
||||
shouldComponentUpdate() {
|
||||
return this.props.readonly || document.activeElement !== this.ref.current;
|
||||
}
|
||||
|
||||
render(props) {
|
||||
return h('input', Object.assign(props, { ref: this.ref }));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user