Options ui (#222)
* wip * Commenting stuff to keep the build happy * Revealing sections * Custom select elements & more form work * Range input styles * Text fields with inputs do the right thing * Safari & Firefox fixes * Large compress select * oops * MozJPEG options updated * OptPNG options * These asserts weren't true * Generic options * WebP options * Hiding "edit" when "original image" * Download icon * Copy setting button - still not happy with this * Progress indicator * Loading icon enter/exit anim * Preventing controls going under options * Ahh so that's what was causing scrolling * Ahh so that's what was causing outlines * Simplifying range styles and fixing cross-browser * Processing custom element styles * Get precision from step by default * I don't know how or when this happened. * Don't need that many steps * Avoid having an element that covers the pinch zoom * Preventing overlap with zoom controls * Prevent ts warning * Fixing spinner position * Simplifying FileSize
This commit is contained in:
@ -5,4 +5,4 @@ export const type = 'browser-jpeg';
|
|||||||
export const label = 'Browser JPEG';
|
export const label = 'Browser JPEG';
|
||||||
export const mimeType = 'image/jpeg';
|
export const mimeType = 'image/jpeg';
|
||||||
export const extension = 'jpg';
|
export const extension = 'jpg';
|
||||||
export const defaultOptions: EncodeOptions = { quality: 0.5 };
|
export const defaultOptions: EncodeOptions = { quality: 0.75 };
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
import qualityOption from '../generic/quality-option';
|
import qualityOption from '../generic/quality-option';
|
||||||
|
|
||||||
export default qualityOption({ min: 0, max: 1, step: 0 });
|
export default qualityOption({ min: 0, max: 1, step: 0.01 });
|
||||||
|
@ -7,5 +7,5 @@ export const type = 'browser-webp';
|
|||||||
export const label = 'Browser WebP';
|
export const label = 'Browser WebP';
|
||||||
export const mimeType = 'image/webp';
|
export const mimeType = 'image/webp';
|
||||||
export const extension = 'webp';
|
export const extension = 'webp';
|
||||||
export const defaultOptions: EncodeOptions = { quality: 0.5 };
|
export const defaultOptions: EncodeOptions = { quality: 0.75 };
|
||||||
export const featureTest = () => canvasEncodeTest(mimeType);
|
export const featureTest = () => canvasEncodeTest(mimeType);
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
import qualityOption from '../generic/quality-option';
|
import qualityOption from '../generic/quality-option';
|
||||||
|
|
||||||
export default qualityOption({ min: 0, max: 1, step: 0 });
|
export default qualityOption({ min: 0, max: 1, step: 0.01 });
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import { h, Component } from 'preact';
|
import { h, Component } from 'preact';
|
||||||
import { bind } from '../../lib/initial-util';
|
import { bind } from '../../lib/initial-util';
|
||||||
import '../../custom-els/RangeInput';
|
import * as style from '../../components/Options/style.scss';
|
||||||
|
import Range from '../../components/range';
|
||||||
|
|
||||||
interface EncodeOptions {
|
interface EncodeOptions {
|
||||||
quality: number;
|
quality: number;
|
||||||
@ -33,18 +34,19 @@ export default function qualityOption(opts: QualityOptionArg = {}) {
|
|||||||
|
|
||||||
render({ options }: Props) {
|
render({ options }: Props) {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div class={style.optionsSection}>
|
||||||
<label>
|
<div class={style.optionOneCell}>
|
||||||
Quality:
|
<Range
|
||||||
<range-input
|
|
||||||
name="quality"
|
name="quality"
|
||||||
min={min}
|
min={min}
|
||||||
max={max}
|
max={max}
|
||||||
step={step || 'any'}
|
step={step || 'any'}
|
||||||
value={'' + options.quality}
|
value={options.quality}
|
||||||
onChange={this.onChange}
|
onInput={this.onChange}
|
||||||
/>
|
>
|
||||||
</label>
|
Quality:
|
||||||
|
</Range>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,10 @@ import { h, Component } from 'preact';
|
|||||||
import { bind } from '../../lib/initial-util';
|
import { bind } from '../../lib/initial-util';
|
||||||
import { inputFieldValueAsNumber, konami } from '../../lib/util';
|
import { inputFieldValueAsNumber, konami } from '../../lib/util';
|
||||||
import { QuantizeOptions } from './processor-meta';
|
import { QuantizeOptions } from './processor-meta';
|
||||||
|
import * as style from '../../components/Options/style.scss';
|
||||||
|
import Expander from '../../components/expander';
|
||||||
|
import Select from '../../components/select';
|
||||||
|
import Range from '../../components/range';
|
||||||
|
|
||||||
const konamiPromise = konami();
|
const konamiPromise = konami();
|
||||||
|
|
||||||
@ -26,50 +30,61 @@ export default class QuantizerOptions extends Component<Props, State> {
|
|||||||
@bind
|
@bind
|
||||||
onChange(event: Event) {
|
onChange(event: Event) {
|
||||||
const form = (event.currentTarget as HTMLInputElement).closest('form') as HTMLFormElement;
|
const form = (event.currentTarget as HTMLInputElement).closest('form') as HTMLFormElement;
|
||||||
|
const { options } = this.props;
|
||||||
|
|
||||||
const options: QuantizeOptions = {
|
const newOptions: QuantizeOptions = {
|
||||||
zx: inputFieldValueAsNumber(form.zx),
|
zx: inputFieldValueAsNumber(form.zx, options.zx),
|
||||||
maxNumColors: inputFieldValueAsNumber(form.maxNumColors),
|
maxNumColors: inputFieldValueAsNumber(form.maxNumColors, options.maxNumColors),
|
||||||
dither: inputFieldValueAsNumber(form.dither),
|
dither: inputFieldValueAsNumber(form.dither),
|
||||||
};
|
};
|
||||||
this.props.onChange(options);
|
this.props.onChange(newOptions);
|
||||||
}
|
}
|
||||||
|
|
||||||
render({ options }: Props, { extendedSettings }: State) {
|
render({ options }: Props, { extendedSettings }: State) {
|
||||||
return (
|
return (
|
||||||
<form>
|
<form class={style.optionsSection}>
|
||||||
<label style={{ display: extendedSettings ? '' : 'none' }}>
|
<Expander>
|
||||||
Type:
|
{extendedSettings ?
|
||||||
<select
|
<label class={style.optionTextFirst}>
|
||||||
name="zx"
|
Type:
|
||||||
value={'' + options.zx}
|
<Select
|
||||||
onChange={this.onChange}
|
name="zx"
|
||||||
>
|
value={'' + options.zx}
|
||||||
<option value="0">Standard</option>
|
onChange={this.onChange}
|
||||||
<option value="1">ZX</option>
|
>
|
||||||
</select>
|
<option value="0">Standard</option>
|
||||||
</label>
|
<option value="1">ZX</option>
|
||||||
<label style={{ display: options.zx ? 'none' : '' }}>
|
</Select>
|
||||||
Palette Colors:
|
</label>
|
||||||
<range-input
|
: null}
|
||||||
name="maxNumColors"
|
</Expander>
|
||||||
min="2"
|
<Expander>
|
||||||
max="256"
|
{options.zx ? null :
|
||||||
value={'' + options.maxNumColors}
|
<div class={style.optionOneCell}>
|
||||||
onChange={this.onChange}
|
<Range
|
||||||
/>
|
name="maxNumColors"
|
||||||
</label>
|
min="2"
|
||||||
<label>
|
max="256"
|
||||||
Dithering:
|
value={options.maxNumColors}
|
||||||
<range-input
|
onInput={this.onChange}
|
||||||
|
>
|
||||||
|
Colors:
|
||||||
|
</Range>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
</Expander>
|
||||||
|
<div class={style.optionOneCell}>
|
||||||
|
<Range
|
||||||
name="dither"
|
name="dither"
|
||||||
min="0"
|
min="0"
|
||||||
max="1"
|
max="1"
|
||||||
step="0.01"
|
step="0.01"
|
||||||
value={'' + options.dither}
|
value={options.dither}
|
||||||
onChange={this.onChange}
|
onInput={this.onChange}
|
||||||
/>
|
>
|
||||||
</label>
|
Dithering:
|
||||||
|
</Range>
|
||||||
|
</div>
|
||||||
</form>
|
</form>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -2,158 +2,197 @@ import { h, Component } from 'preact';
|
|||||||
import { bind } from '../../lib/initial-util';
|
import { bind } from '../../lib/initial-util';
|
||||||
import { inputFieldChecked, inputFieldValueAsNumber } from '../../lib/util';
|
import { inputFieldChecked, inputFieldValueAsNumber } from '../../lib/util';
|
||||||
import { EncodeOptions, MozJpegColorSpace } from './encoder-meta';
|
import { EncodeOptions, MozJpegColorSpace } from './encoder-meta';
|
||||||
import '../../custom-els/RangeInput';
|
import * as style from '../../components/Options/style.scss';
|
||||||
|
import Checkbox from '../../components/checkbox';
|
||||||
|
import Expander from '../../components/expander';
|
||||||
|
import Select from '../../components/select';
|
||||||
|
import Range from '../../components/range';
|
||||||
|
import linkState from 'linkstate';
|
||||||
|
|
||||||
type Props = {
|
interface Props {
|
||||||
options: EncodeOptions,
|
options: EncodeOptions;
|
||||||
onChange(newOptions: EncodeOptions): void,
|
onChange(newOptions: EncodeOptions): void;
|
||||||
};
|
}
|
||||||
|
|
||||||
|
interface State {
|
||||||
|
showAdvanced: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default class MozJPEGEncoderOptions extends Component<Props, State> {
|
||||||
|
state: State = {
|
||||||
|
showAdvanced: false,
|
||||||
|
};
|
||||||
|
|
||||||
export default class MozJPEGEncoderOptions extends Component<Props, {}> {
|
|
||||||
@bind
|
@bind
|
||||||
onChange(event: Event) {
|
onChange(event: Event) {
|
||||||
const form = (event.currentTarget as HTMLInputElement).closest('form') as HTMLFormElement;
|
const form = (event.currentTarget as HTMLInputElement).closest('form') as HTMLFormElement;
|
||||||
|
const { options } = this.props;
|
||||||
|
|
||||||
const options: EncodeOptions = {
|
const newOptions: EncodeOptions = {
|
||||||
// Copy over options the form doesn't currently care about, eg arithmetic
|
// Copy over options the form doesn't currently care about, eg arithmetic
|
||||||
...this.props.options,
|
...this.props.options,
|
||||||
// And now stuff from the form:
|
// And now stuff from the form:
|
||||||
// .checked
|
// .checked
|
||||||
baseline: inputFieldChecked(form.baseline),
|
baseline: inputFieldChecked(form.baseline, options.baseline),
|
||||||
progressive: inputFieldChecked(form.progressive),
|
progressive: inputFieldChecked(form.progressive, options.progressive),
|
||||||
optimize_coding: inputFieldChecked(form.optimize_coding),
|
optimize_coding: inputFieldChecked(form.optimize_coding, options.optimize_coding),
|
||||||
trellis_multipass: inputFieldChecked(form.trellis_multipass),
|
trellis_multipass: inputFieldChecked(form.trellis_multipass, options.trellis_multipass),
|
||||||
trellis_opt_zero: inputFieldChecked(form.trellis_opt_zero),
|
trellis_opt_zero: inputFieldChecked(form.trellis_opt_zero, options.trellis_opt_zero),
|
||||||
trellis_opt_table: inputFieldChecked(form.trellis_opt_table),
|
trellis_opt_table: inputFieldChecked(form.trellis_opt_table, options.trellis_opt_table),
|
||||||
// .value
|
// .value
|
||||||
quality: inputFieldValueAsNumber(form.quality),
|
quality: inputFieldValueAsNumber(form.quality, options.quality),
|
||||||
smoothing: inputFieldValueAsNumber(form.smoothing),
|
smoothing: inputFieldValueAsNumber(form.smoothing, options.smoothing),
|
||||||
color_space: inputFieldValueAsNumber(form.color_space),
|
color_space: inputFieldValueAsNumber(form.color_space, options.color_space),
|
||||||
quant_table: inputFieldValueAsNumber(form.quant_table),
|
quant_table: inputFieldValueAsNumber(form.quant_table, options.quant_table),
|
||||||
trellis_loops: inputFieldValueAsNumber(form.trellis_loops),
|
trellis_loops: inputFieldValueAsNumber(form.trellis_loops, options.trellis_loops),
|
||||||
};
|
};
|
||||||
this.props.onChange(options);
|
this.props.onChange(newOptions);
|
||||||
}
|
}
|
||||||
|
|
||||||
render({ options }: Props) {
|
render({ options }: Props, { showAdvanced }: State) {
|
||||||
// I'm rendering both lossy and lossless forms, as it becomes much easier when
|
// I'm rendering both lossy and lossless forms, as it becomes much easier when
|
||||||
// gathering the data.
|
// gathering the data.
|
||||||
return (
|
return (
|
||||||
<form>
|
<form class={style.optionsSection}>
|
||||||
<label>
|
<div class={style.optionOneCell}>
|
||||||
Quality:
|
<Range
|
||||||
<range-input
|
|
||||||
name="quality"
|
name="quality"
|
||||||
min="0"
|
min="0"
|
||||||
max="100"
|
max="100"
|
||||||
value={'' + options.quality}
|
value={options.quality}
|
||||||
onChange={this.onChange}
|
onInput={this.onChange}
|
||||||
/>
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
<input
|
|
||||||
name="baseline"
|
|
||||||
type="checkbox"
|
|
||||||
checked={options.baseline}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
<span>Baseline (worse but legacy-compatible)</span>
|
|
||||||
</label>
|
|
||||||
<label style={{ display: options.baseline ? 'none' : '' }}>
|
|
||||||
<input
|
|
||||||
name="progressive"
|
|
||||||
type="checkbox"
|
|
||||||
checked={options.progressive}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
<span>Progressive multi-pass rendering</span>
|
|
||||||
</label>
|
|
||||||
<label style={{ display: options.baseline ? '' : 'none' }}>
|
|
||||||
<input
|
|
||||||
name="optimize_coding"
|
|
||||||
type="checkbox"
|
|
||||||
checked={options.optimize_coding}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
<span>Optimize Huffman table</span>
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
Smoothing:
|
|
||||||
<range-input
|
|
||||||
name="smoothing"
|
|
||||||
min="0"
|
|
||||||
max="100"
|
|
||||||
value={'' + options.smoothing}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
Output color space:
|
|
||||||
<select
|
|
||||||
name="color_space"
|
|
||||||
value={'' + options.color_space}
|
|
||||||
onChange={this.onChange}
|
|
||||||
>
|
>
|
||||||
<option value={MozJpegColorSpace.GRAYSCALE}>Grayscale</option>
|
Quality:
|
||||||
<option value={MozJpegColorSpace.RGB}>RGB (sub-optimal)</option>
|
</Range>
|
||||||
<option value={MozJpegColorSpace.YCbCr}>YCbCr (optimized for color)</option>
|
</div>
|
||||||
</select>
|
<label class={style.optionInputFirst}>
|
||||||
</label>
|
<Checkbox
|
||||||
<label>
|
checked={showAdvanced}
|
||||||
Quantization table:
|
onChange={linkState(this, 'showAdvanced')}
|
||||||
<select
|
|
||||||
name="quant_table"
|
|
||||||
value={'' + options.quant_table}
|
|
||||||
onChange={this.onChange}
|
|
||||||
>
|
|
||||||
<option value="0">JPEG Annex K</option>
|
|
||||||
<option value="1">Flat</option>
|
|
||||||
<option value="2">MSSIM-tuned Kodak</option>
|
|
||||||
<option value="3">ImageMagick</option>
|
|
||||||
<option value="4">PSNR-HVS-M-tuned Kodak</option>
|
|
||||||
<option value="5">Klein et al</option>
|
|
||||||
<option value="6">Watson et al</option>
|
|
||||||
<option value="7">Ahumada et al</option>
|
|
||||||
<option value="8">Peterson et al</option>
|
|
||||||
</select>
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
<input
|
|
||||||
name="trellis_multipass"
|
|
||||||
type="checkbox"
|
|
||||||
checked={options.trellis_multipass}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
<span>Consider multiple scans during trellis quantization</span>
|
|
||||||
</label>
|
|
||||||
<label style={{ display: options.trellis_multipass ? '' : 'none' }}>
|
|
||||||
<input
|
|
||||||
name="trellis_opt_zero"
|
|
||||||
type="checkbox"
|
|
||||||
checked={options.trellis_opt_zero}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
<span>Optimize runs of zero blocks</span>
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
<input
|
|
||||||
name="trellis_opt_table"
|
|
||||||
type="checkbox"
|
|
||||||
checked={options.trellis_opt_table}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
<span>Optimize after trellis quantization</span>
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
Trellis quantization passes:
|
|
||||||
<range-input
|
|
||||||
name="trellis_loops"
|
|
||||||
min="1"
|
|
||||||
max="50"
|
|
||||||
value={'' + options.trellis_loops}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
/>
|
||||||
|
Show advanced settings
|
||||||
</label>
|
</label>
|
||||||
|
<Expander>
|
||||||
|
{showAdvanced ?
|
||||||
|
<div>
|
||||||
|
<label class={style.optionInputFirst}>
|
||||||
|
<Checkbox
|
||||||
|
name="baseline"
|
||||||
|
checked={options.baseline}
|
||||||
|
onChange={this.onChange}
|
||||||
|
/>
|
||||||
|
Pointless spec compliance
|
||||||
|
</label>
|
||||||
|
<Expander>
|
||||||
|
{options.baseline ? null :
|
||||||
|
<label class={style.optionInputFirst}>
|
||||||
|
<Checkbox
|
||||||
|
name="progressive"
|
||||||
|
checked={options.progressive}
|
||||||
|
onChange={this.onChange}
|
||||||
|
/>
|
||||||
|
Progressive rendering
|
||||||
|
</label>
|
||||||
|
}
|
||||||
|
</Expander>
|
||||||
|
<Expander>
|
||||||
|
{options.baseline ?
|
||||||
|
<label class={style.optionInputFirst}>
|
||||||
|
<Checkbox
|
||||||
|
name="optimize_coding"
|
||||||
|
checked={options.optimize_coding}
|
||||||
|
onChange={this.onChange}
|
||||||
|
/>
|
||||||
|
Optimize Huffman table
|
||||||
|
</label>
|
||||||
|
: null
|
||||||
|
}
|
||||||
|
</Expander>
|
||||||
|
<div class={style.optionOneCell}>
|
||||||
|
<Range
|
||||||
|
name="smoothing"
|
||||||
|
min="0"
|
||||||
|
max="100"
|
||||||
|
value={options.smoothing}
|
||||||
|
onInput={this.onChange}
|
||||||
|
>
|
||||||
|
Smoothing:
|
||||||
|
</Range>
|
||||||
|
</div>
|
||||||
|
<label class={style.optionTextFirst}>
|
||||||
|
Channels:
|
||||||
|
<Select
|
||||||
|
name="color_space"
|
||||||
|
value={options.color_space}
|
||||||
|
onChange={this.onChange}
|
||||||
|
>
|
||||||
|
<option value={MozJpegColorSpace.GRAYSCALE}>Grayscale</option>
|
||||||
|
<option value={MozJpegColorSpace.RGB}>RGB</option>
|
||||||
|
<option value={MozJpegColorSpace.YCbCr}>YCbCr</option>
|
||||||
|
</Select>
|
||||||
|
</label>
|
||||||
|
<label class={style.optionTextFirst}>
|
||||||
|
Quantization:
|
||||||
|
<Select
|
||||||
|
name="quant_table"
|
||||||
|
value={options.quant_table}
|
||||||
|
onChange={this.onChange}
|
||||||
|
>
|
||||||
|
<option value="0">JPEG Annex K</option>
|
||||||
|
<option value="1">Flat</option>
|
||||||
|
<option value="2">MSSIM-tuned Kodak</option>
|
||||||
|
<option value="3">ImageMagick</option>
|
||||||
|
<option value="4">PSNR-HVS-M-tuned Kodak</option>
|
||||||
|
<option value="5">Klein et al</option>
|
||||||
|
<option value="6">Watson et al</option>
|
||||||
|
<option value="7">Ahumada et al</option>
|
||||||
|
<option value="8">Peterson et al</option>
|
||||||
|
</Select>
|
||||||
|
</label>
|
||||||
|
<label class={style.optionInputFirst}>
|
||||||
|
<Checkbox
|
||||||
|
name="trellis_multipass"
|
||||||
|
checked={options.trellis_multipass}
|
||||||
|
onChange={this.onChange}
|
||||||
|
/>
|
||||||
|
Trellis multipass
|
||||||
|
</label>
|
||||||
|
<Expander>
|
||||||
|
{options.trellis_multipass ?
|
||||||
|
<label class={style.optionInputFirst}>
|
||||||
|
<Checkbox
|
||||||
|
name="trellis_opt_zero"
|
||||||
|
checked={options.trellis_opt_zero}
|
||||||
|
onChange={this.onChange}
|
||||||
|
/>
|
||||||
|
Optimize zero block runs
|
||||||
|
</label>
|
||||||
|
: null
|
||||||
|
}
|
||||||
|
</Expander>
|
||||||
|
<label class={style.optionInputFirst}>
|
||||||
|
<Checkbox
|
||||||
|
name="trellis_opt_table"
|
||||||
|
checked={options.trellis_opt_table}
|
||||||
|
onChange={this.onChange}
|
||||||
|
/>
|
||||||
|
Optimize after trellis quantization
|
||||||
|
</label>
|
||||||
|
<div class={style.optionOneCell}>
|
||||||
|
<Range
|
||||||
|
name="trellis_loops"
|
||||||
|
min="1"
|
||||||
|
max="50"
|
||||||
|
value={options.trellis_loops}
|
||||||
|
onInput={this.onChange}
|
||||||
|
>
|
||||||
|
Trellis quantization passes:
|
||||||
|
</Range>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
: null
|
||||||
|
}
|
||||||
|
</Expander>
|
||||||
</form>
|
</form>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,8 @@ import { h, Component } from 'preact';
|
|||||||
import { bind } from '../../lib/initial-util';
|
import { bind } from '../../lib/initial-util';
|
||||||
import { inputFieldValueAsNumber } from '../../lib/util';
|
import { inputFieldValueAsNumber } from '../../lib/util';
|
||||||
import { EncodeOptions } from './encoder-meta';
|
import { EncodeOptions } from './encoder-meta';
|
||||||
|
import Range from '../../components/range';
|
||||||
|
import * as style from '../../components/Options/style.scss';
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
options: EncodeOptions;
|
options: EncodeOptions;
|
||||||
@ -21,19 +23,19 @@ export default class OptiPNGEncoderOptions extends Component<Props, {}> {
|
|||||||
|
|
||||||
render({ options }: Props) {
|
render({ options }: Props) {
|
||||||
return (
|
return (
|
||||||
<form>
|
<form class={style.optionsSection}>
|
||||||
<label>
|
<div class={style.optionOneCell}>
|
||||||
Effort:
|
<Range
|
||||||
<input
|
|
||||||
name="level"
|
name="level"
|
||||||
type="range"
|
|
||||||
min="0"
|
min="0"
|
||||||
max="7"
|
max="7"
|
||||||
step="1"
|
step="1"
|
||||||
value={'' + options.level}
|
value={options.level}
|
||||||
onChange={this.onChange}
|
onInput={this.onChange}
|
||||||
/>
|
>
|
||||||
</label>
|
Effort:
|
||||||
|
</Range>
|
||||||
|
</div>
|
||||||
</form>
|
</form>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -92,7 +92,6 @@ export default class Processor {
|
|||||||
// If the worker is unused for 10 seconds, remove it to save memory.
|
// If the worker is unused for 10 seconds, remove it to save memory.
|
||||||
this._workerTimeoutId = self.setTimeout(
|
this._workerTimeoutId = self.setTimeout(
|
||||||
() => {
|
() => {
|
||||||
if (this._busy) throw Error("Worker shouldn't be busy");
|
|
||||||
if (!this._worker) return;
|
if (!this._worker) return;
|
||||||
this._worker.terminate();
|
this._worker.terminate();
|
||||||
this._worker = undefined;
|
this._worker = undefined;
|
||||||
@ -104,14 +103,14 @@ export default class Processor {
|
|||||||
/** Abort the current job, if any */
|
/** Abort the current job, if any */
|
||||||
abortCurrent() {
|
abortCurrent() {
|
||||||
if (!this._busy) return;
|
if (!this._busy) return;
|
||||||
if (!this._worker || !this._abortRejector) {
|
if (!this._abortRejector) throw Error("There must be a rejector if it's busy");
|
||||||
throw Error("There must be a worker/rejector if it's busy");
|
|
||||||
}
|
|
||||||
this._abortRejector(new DOMException('Aborted', 'AbortError'));
|
this._abortRejector(new DOMException('Aborted', 'AbortError'));
|
||||||
this._worker.terminate();
|
|
||||||
this._worker = undefined;
|
|
||||||
this._abortRejector = undefined;
|
this._abortRejector = undefined;
|
||||||
this._busy = false;
|
this._busy = false;
|
||||||
|
|
||||||
|
if (!this._worker) return;
|
||||||
|
this._worker.terminate();
|
||||||
|
this._worker = undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Off main thread jobs:
|
// Off main thread jobs:
|
||||||
|
@ -1,8 +1,12 @@
|
|||||||
import { h, Component } from 'preact';
|
import { h, Component } from 'preact';
|
||||||
import linkState from 'linkstate';
|
import linkState from 'linkstate';
|
||||||
import { bind } from '../../lib/initial-util';
|
import { bind, linkRef } from '../../lib/initial-util';
|
||||||
import { inputFieldValueAsNumber } from '../../lib/util';
|
import { inputFieldValueAsNumber, inputFieldValue } from '../../lib/util';
|
||||||
import { ResizeOptions } from './processor-meta';
|
import { ResizeOptions } from './processor-meta';
|
||||||
|
import * as style from '../../components/Options/style.scss';
|
||||||
|
import Checkbox from '../../components/checkbox';
|
||||||
|
import Expander from '../../components/expander';
|
||||||
|
import Select from '../../components/select';
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
isVector: Boolean;
|
isVector: Boolean;
|
||||||
@ -22,23 +26,26 @@ export default class ResizerOptions extends Component<Props, State> {
|
|||||||
|
|
||||||
form?: HTMLFormElement;
|
form?: HTMLFormElement;
|
||||||
|
|
||||||
reportOptions() {
|
private reportOptions() {
|
||||||
const width = this.form!.width as HTMLInputElement;
|
const form = this.form!;
|
||||||
const height = this.form!.height as HTMLInputElement;
|
const width = form.width as HTMLInputElement;
|
||||||
|
const height = form.height as HTMLInputElement;
|
||||||
|
const { options } = this.props;
|
||||||
|
|
||||||
if (!width.checkValidity() || !height.checkValidity()) return;
|
if (!width.checkValidity() || !height.checkValidity()) return;
|
||||||
|
|
||||||
const options: ResizeOptions = {
|
const newOptions: ResizeOptions = {
|
||||||
width: inputFieldValueAsNumber(width),
|
width: inputFieldValueAsNumber(width),
|
||||||
height: inputFieldValueAsNumber(height),
|
height: inputFieldValueAsNumber(height),
|
||||||
method: this.form!.resizeMethod.value,
|
method: form.resizeMethod.value,
|
||||||
fitMethod: this.form!.fitMethod.value,
|
// Casting, as the formfield only returns the correct values.
|
||||||
|
fitMethod: inputFieldValue(form.fitMethod, options.fitMethod) as ResizeOptions['fitMethod'],
|
||||||
};
|
};
|
||||||
this.props.onChange(options);
|
this.props.onChange(newOptions);
|
||||||
}
|
}
|
||||||
|
|
||||||
@bind
|
@bind
|
||||||
onChange(event: Event) {
|
private onChange() {
|
||||||
this.reportOptions();
|
this.reportOptions();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -50,27 +57,31 @@ export default class ResizerOptions extends Component<Props, State> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@bind
|
@bind
|
||||||
onWidthInput(event: Event) {
|
private onWidthInput() {
|
||||||
if (!this.state.maintainAspect) return;
|
if (this.state.maintainAspect) {
|
||||||
|
const width = inputFieldValueAsNumber(this.form!.width);
|
||||||
|
this.form!.height.value = Math.round(width / this.props.aspect);
|
||||||
|
}
|
||||||
|
|
||||||
const width = inputFieldValueAsNumber(this.form!.width);
|
this.reportOptions();
|
||||||
this.form!.height.value = Math.round(width / this.props.aspect);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@bind
|
@bind
|
||||||
onHeightInput(event: Event) {
|
private onHeightInput() {
|
||||||
if (!this.state.maintainAspect) return;
|
if (this.state.maintainAspect) {
|
||||||
|
const height = inputFieldValueAsNumber(this.form!.height);
|
||||||
|
this.form!.width.value = Math.round(height * this.props.aspect);
|
||||||
|
}
|
||||||
|
|
||||||
const height = inputFieldValueAsNumber(this.form!.height);
|
this.reportOptions();
|
||||||
this.form!.width.value = Math.round(height * this.props.aspect);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
render({ options, aspect, isVector }: Props, { maintainAspect }: State) {
|
render({ options, isVector }: Props, { maintainAspect }: State) {
|
||||||
return (
|
return (
|
||||||
<form ref={el => this.form = el}>
|
<form ref={linkRef(this, 'form')} class={style.optionsSection}>
|
||||||
<label>
|
<label class={style.optionTextFirst}>
|
||||||
Method:
|
Method:
|
||||||
<select
|
<Select
|
||||||
name="resizeMethod"
|
name="resizeMethod"
|
||||||
value={options.method}
|
value={options.method}
|
||||||
onChange={this.onChange}
|
onChange={this.onChange}
|
||||||
@ -80,51 +91,55 @@ export default class ResizerOptions extends Component<Props, State> {
|
|||||||
<option value="browser-low">Browser low quality</option>
|
<option value="browser-low">Browser low quality</option>
|
||||||
<option value="browser-medium">Browser medium quality</option>
|
<option value="browser-medium">Browser medium quality</option>
|
||||||
<option value="browser-high">Browser high quality</option>
|
<option value="browser-high">Browser high quality</option>
|
||||||
</select>
|
</Select>
|
||||||
</label>
|
</label>
|
||||||
<label>
|
<label class={style.optionTextFirst}>
|
||||||
Width:
|
Width:
|
||||||
<input
|
<input
|
||||||
required
|
required
|
||||||
|
class={style.textField}
|
||||||
name="width"
|
name="width"
|
||||||
type="number"
|
type="number"
|
||||||
min="1"
|
min="1"
|
||||||
value={'' + options.width}
|
value={'' + options.width}
|
||||||
onChange={this.onChange}
|
|
||||||
onInput={this.onWidthInput}
|
onInput={this.onWidthInput}
|
||||||
/>
|
/>
|
||||||
</label>
|
</label>
|
||||||
<label>
|
<label class={style.optionTextFirst}>
|
||||||
Height:
|
Height:
|
||||||
<input
|
<input
|
||||||
required
|
required
|
||||||
|
class={style.textField}
|
||||||
name="height"
|
name="height"
|
||||||
type="number"
|
type="number"
|
||||||
min="1"
|
min="1"
|
||||||
value={'' + options.height}
|
value={'' + options.height}
|
||||||
onChange={this.onChange}
|
onInput={this.onHeightInput}
|
||||||
/>
|
/>
|
||||||
</label>
|
</label>
|
||||||
<label>
|
<label class={style.optionInputFirst}>
|
||||||
<input
|
<Checkbox
|
||||||
name="maintainAspect"
|
name="maintainAspect"
|
||||||
type="checkbox"
|
|
||||||
checked={maintainAspect}
|
checked={maintainAspect}
|
||||||
onChange={linkState(this, 'maintainAspect')}
|
onChange={linkState(this, 'maintainAspect')}
|
||||||
/>
|
/>
|
||||||
Maintain aspect ratio
|
Maintain aspect ratio
|
||||||
</label>
|
</label>
|
||||||
<label style={{ display: maintainAspect ? 'none' : '' }}>
|
<Expander>
|
||||||
Fit method:
|
{maintainAspect ? null :
|
||||||
<select
|
<label class={style.optionTextFirst}>
|
||||||
name="fitMethod"
|
Fit method:
|
||||||
value={options.fitMethod}
|
<Select
|
||||||
onChange={this.onChange}
|
name="fitMethod"
|
||||||
>
|
value={options.fitMethod}
|
||||||
<option value="stretch">Stretch</option>
|
onChange={this.onChange}
|
||||||
<option value="cover">Cover</option>
|
>
|
||||||
</select>
|
<option value="stretch">Stretch</option>
|
||||||
</label>
|
<option value="cover">Cover</option>
|
||||||
|
</Select>
|
||||||
|
</label>
|
||||||
|
}
|
||||||
|
</Expander>
|
||||||
</form>
|
</form>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -2,13 +2,21 @@ import { h, Component } from 'preact';
|
|||||||
import { bind } from '../../lib/initial-util';
|
import { bind } from '../../lib/initial-util';
|
||||||
import { inputFieldCheckedAsNumber, inputFieldValueAsNumber } from '../../lib/util';
|
import { inputFieldCheckedAsNumber, inputFieldValueAsNumber } from '../../lib/util';
|
||||||
import { EncodeOptions, WebPImageHint } from './encoder-meta';
|
import { EncodeOptions, WebPImageHint } from './encoder-meta';
|
||||||
import * as styles from './styles.scss';
|
import * as style from '../../components/Options/style.scss';
|
||||||
import '../../custom-els/RangeInput';
|
import Checkbox from '../../components/checkbox';
|
||||||
|
import Expander from '../../components/expander';
|
||||||
|
import Select from '../../components/select';
|
||||||
|
import Range from '../../components/range';
|
||||||
|
import linkState from 'linkstate';
|
||||||
|
|
||||||
type Props = {
|
interface Props {
|
||||||
options: EncodeOptions,
|
options: EncodeOptions;
|
||||||
onChange(newOptions: EncodeOptions): void,
|
onChange(newOptions: EncodeOptions): void;
|
||||||
};
|
}
|
||||||
|
|
||||||
|
interface State {
|
||||||
|
showAdvanced: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
// From kLosslessPresets in config_enc.c
|
// From kLosslessPresets in config_enc.c
|
||||||
// The format is [method, quality].
|
// The format is [method, quality].
|
||||||
@ -26,249 +34,281 @@ function determineLosslessQuality(quality: number): number {
|
|||||||
return losslessPresetDefault;
|
return losslessPresetDefault;
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class WebPEncoderOptions extends Component<Props, {}> {
|
export default class WebPEncoderOptions extends Component<Props, State> {
|
||||||
|
state: State = {
|
||||||
|
showAdvanced: false,
|
||||||
|
};
|
||||||
|
|
||||||
@bind
|
@bind
|
||||||
onChange(event: Event) {
|
onChange(event: Event) {
|
||||||
const form = (event.currentTarget as HTMLInputElement).closest('form') as HTMLFormElement;
|
const form = (event.currentTarget as HTMLInputElement).closest('form') as HTMLFormElement;
|
||||||
const lossless = inputFieldCheckedAsNumber(form.lossless);
|
const lossless = inputFieldCheckedAsNumber(form.lossless);
|
||||||
const losslessPresetInput = (form.lossless_preset as HTMLInputElement);
|
const { options } = this.props;
|
||||||
|
const losslessPresetValue = inputFieldValueAsNumber(
|
||||||
|
form.lossless_preset, determineLosslessQuality(options.quality),
|
||||||
|
);
|
||||||
|
|
||||||
const options: EncodeOptions = {
|
const newOptions: EncodeOptions = {
|
||||||
// Copy over options the form doesn't care about, eg emulate_jpeg_size
|
// Copy over options the form doesn't care about, eg emulate_jpeg_size
|
||||||
...this.props.options,
|
...options,
|
||||||
// And now stuff from the form:
|
// And now stuff from the form:
|
||||||
lossless,
|
lossless,
|
||||||
// Special-cased inputs:
|
// Special-cased inputs:
|
||||||
// In lossless mode, the quality is derived from the preset.
|
// In lossless mode, the quality is derived from the preset.
|
||||||
quality: lossless ?
|
quality: lossless ?
|
||||||
losslessPresets[Number(losslessPresetInput.value)][1] :
|
losslessPresets[losslessPresetValue][1] :
|
||||||
inputFieldValueAsNumber(form.quality),
|
inputFieldValueAsNumber(form.quality, options.quality),
|
||||||
// In lossless mode, the method is derived from the preset.
|
// In lossless mode, the method is derived from the preset.
|
||||||
method: lossless ?
|
method: lossless ?
|
||||||
losslessPresets[Number(losslessPresetInput.value)][0] :
|
losslessPresets[losslessPresetValue][0] :
|
||||||
inputFieldValueAsNumber(form.method_input),
|
inputFieldValueAsNumber(form.method_input, options.method),
|
||||||
image_hint: (form.image_hint as HTMLInputElement).checked ?
|
image_hint: inputFieldCheckedAsNumber(form.image_hint, options.image_hint) ?
|
||||||
WebPImageHint.WEBP_HINT_GRAPH :
|
WebPImageHint.WEBP_HINT_GRAPH :
|
||||||
WebPImageHint.WEBP_HINT_DEFAULT,
|
WebPImageHint.WEBP_HINT_DEFAULT,
|
||||||
// .checked
|
// .checked
|
||||||
exact: inputFieldCheckedAsNumber(form.exact),
|
exact: inputFieldCheckedAsNumber(form.exact, options.exact),
|
||||||
alpha_compression: inputFieldCheckedAsNumber(form.alpha_compression),
|
alpha_compression: inputFieldCheckedAsNumber(
|
||||||
autofilter: inputFieldCheckedAsNumber(form.autofilter),
|
form.alpha_compression, options.alpha_compression,
|
||||||
filter_type: inputFieldCheckedAsNumber(form.filter_type),
|
),
|
||||||
use_sharp_yuv: inputFieldCheckedAsNumber(form.use_sharp_yuv),
|
autofilter: inputFieldCheckedAsNumber(form.autofilter, options.autofilter),
|
||||||
|
filter_type: inputFieldCheckedAsNumber(form.filter_type, options.filter_type),
|
||||||
|
use_sharp_yuv: inputFieldCheckedAsNumber(form.use_sharp_yuv, options.use_sharp_yuv),
|
||||||
// .value
|
// .value
|
||||||
near_lossless: 100 - inputFieldValueAsNumber(form.near_lossless),
|
near_lossless: 100 - inputFieldValueAsNumber(form.near_lossless, 100 - options.near_lossless),
|
||||||
alpha_quality: inputFieldValueAsNumber(form.alpha_quality),
|
alpha_quality: inputFieldValueAsNumber(form.alpha_quality, options.alpha_quality),
|
||||||
alpha_filtering: inputFieldValueAsNumber(form.alpha_filtering),
|
alpha_filtering: inputFieldValueAsNumber(form.alpha_filtering, options.alpha_filtering),
|
||||||
sns_strength: inputFieldValueAsNumber(form.sns_strength),
|
sns_strength: inputFieldValueAsNumber(form.sns_strength, options.sns_strength),
|
||||||
filter_strength: inputFieldValueAsNumber(form.filter_strength),
|
filter_strength: inputFieldValueAsNumber(form.filter_strength, options.filter_strength),
|
||||||
filter_sharpness: 7 - inputFieldValueAsNumber(form.filter_sharpness),
|
filter_sharpness:
|
||||||
pass: inputFieldValueAsNumber(form.pass),
|
7 - inputFieldValueAsNumber(form.filter_sharpness, 7 - options.filter_sharpness),
|
||||||
preprocessing: inputFieldValueAsNumber(form.preprocessing),
|
pass: inputFieldValueAsNumber(form.pass, options.pass),
|
||||||
segments: inputFieldValueAsNumber(form.segments),
|
preprocessing: inputFieldValueAsNumber(form.preprocessing, options.preprocessing),
|
||||||
partitions: inputFieldValueAsNumber(form.partitions),
|
segments: inputFieldValueAsNumber(form.segments, options.segments),
|
||||||
|
partitions: inputFieldValueAsNumber(form.partitions, options.partitions),
|
||||||
};
|
};
|
||||||
this.props.onChange(options);
|
this.props.onChange(newOptions);
|
||||||
}
|
}
|
||||||
|
|
||||||
private _losslessSpecificOptions(options: EncodeOptions) {
|
private _losslessSpecificOptions(options: EncodeOptions) {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div key="lossless">
|
||||||
<label>
|
<div class={style.optionOneCell}>
|
||||||
Effort:
|
<Range
|
||||||
<range-input
|
|
||||||
name="lossless_preset"
|
name="lossless_preset"
|
||||||
min="0"
|
min="0"
|
||||||
max="9"
|
max="9"
|
||||||
value={'' + determineLosslessQuality(options.quality)}
|
value={determineLosslessQuality(options.quality)}
|
||||||
onChange={this.onChange}
|
onInput={this.onChange}
|
||||||
/>
|
>
|
||||||
</label>
|
Effort:
|
||||||
<label>
|
</Range>
|
||||||
Slight loss:
|
</div>
|
||||||
<range-input
|
<div class={style.optionOneCell}>
|
||||||
|
<Range
|
||||||
name="near_lossless"
|
name="near_lossless"
|
||||||
min="0"
|
min="0"
|
||||||
max="100"
|
max="100"
|
||||||
value={'' + (100 - options.near_lossless)}
|
value={'' + (100 - options.near_lossless)}
|
||||||
onChange={this.onChange}
|
onInput={this.onChange}
|
||||||
/>
|
>
|
||||||
</label>
|
Slight loss:
|
||||||
<label>
|
</Range>
|
||||||
|
</div>
|
||||||
|
<label class={style.optionInputFirst}>
|
||||||
{/*
|
{/*
|
||||||
Although there are 3 different kinds of image hint, webp only
|
Although there are 3 different kinds of image hint, webp only
|
||||||
seems to do something with the 'graph' type, and I don't really
|
seems to do something with the 'graph' type, and I don't really
|
||||||
understand what it does.
|
understand what it does.
|
||||||
*/}
|
*/}
|
||||||
<input
|
<Checkbox
|
||||||
name="image_hint"
|
name="image_hint"
|
||||||
type="checkbox"
|
|
||||||
checked={options.image_hint === WebPImageHint.WEBP_HINT_GRAPH}
|
checked={options.image_hint === WebPImageHint.WEBP_HINT_GRAPH}
|
||||||
value={'' + WebPImageHint.WEBP_HINT_GRAPH}
|
|
||||||
onChange={this.onChange}
|
onChange={this.onChange}
|
||||||
/>
|
/>
|
||||||
<span>Discrete tone image (graph, map-tile etc)</span>
|
Discrete tone image
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
private _lossySpecificOptions(options: EncodeOptions) {
|
private _lossySpecificOptions(options: EncodeOptions) {
|
||||||
|
const { showAdvanced } = this.state;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div key="lossy">
|
||||||
<label>
|
<div class={style.optionOneCell}>
|
||||||
Effort:
|
<Range
|
||||||
<range-input
|
|
||||||
name="method_input"
|
name="method_input"
|
||||||
min="0"
|
min="0"
|
||||||
max="6"
|
max="6"
|
||||||
value={'' + options.method}
|
value={options.method}
|
||||||
onChange={this.onChange}
|
onInput={this.onChange}
|
||||||
/>
|
>
|
||||||
</label>
|
Effort:
|
||||||
<label>
|
</Range>
|
||||||
Quality:
|
</div>
|
||||||
<range-input
|
<div class={style.optionOneCell}>
|
||||||
|
<Range
|
||||||
name="quality"
|
name="quality"
|
||||||
min="0"
|
min="0"
|
||||||
max="100"
|
max="100"
|
||||||
step="0.01"
|
step="0.1"
|
||||||
value={'' + options.quality}
|
value={options.quality}
|
||||||
onChange={this.onChange}
|
onInput={this.onChange}
|
||||||
/>
|
|
||||||
</label>
|
|
||||||
<hr />
|
|
||||||
<label>
|
|
||||||
<input
|
|
||||||
name="alpha_compression"
|
|
||||||
type="checkbox"
|
|
||||||
checked={!!options.alpha_compression}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
Compress alpha
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
Alpha quality:
|
|
||||||
<range-input
|
|
||||||
name="alpha_quality"
|
|
||||||
min="0"
|
|
||||||
max="100"
|
|
||||||
value={'' + options.alpha_quality}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
Alpha filter quality:
|
|
||||||
<range-input
|
|
||||||
name="alpha_filtering"
|
|
||||||
min="0"
|
|
||||||
max="2"
|
|
||||||
value={'' + options.alpha_filtering}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
</label>
|
|
||||||
<hr />
|
|
||||||
<label>
|
|
||||||
<input
|
|
||||||
name="autofilter"
|
|
||||||
type="checkbox"
|
|
||||||
checked={!!options.autofilter}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
<span>Auto adjust filter strength</span>
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
Filter strength:
|
|
||||||
<range-input
|
|
||||||
name="filter_strength"
|
|
||||||
min="0"
|
|
||||||
max="100"
|
|
||||||
disabled={!!options.autofilter}
|
|
||||||
value={'' + options.filter_strength}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
<input
|
|
||||||
name="filter_type"
|
|
||||||
type="checkbox"
|
|
||||||
checked={!!options.filter_type}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
Strong filter
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
Filter sharpness:
|
|
||||||
<range-input
|
|
||||||
name="filter_sharpness"
|
|
||||||
min="0"
|
|
||||||
max="7"
|
|
||||||
value={'' + (7 - options.filter_sharpness)}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
<input
|
|
||||||
name="use_sharp_yuv"
|
|
||||||
type="checkbox"
|
|
||||||
checked={!!options.use_sharp_yuv}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
Sharp RGB->YUV conversion
|
|
||||||
</label>
|
|
||||||
<hr />
|
|
||||||
<label>
|
|
||||||
Passes:
|
|
||||||
<range-input
|
|
||||||
name="pass"
|
|
||||||
min="1"
|
|
||||||
max="10"
|
|
||||||
value={'' + options.pass}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
Spacial noise shaping:
|
|
||||||
<range-input
|
|
||||||
name="sns_strength"
|
|
||||||
min="0"
|
|
||||||
max="100"
|
|
||||||
value={'' + options.sns_strength}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
Preprocessing type:
|
|
||||||
<select
|
|
||||||
name="preprocessing"
|
|
||||||
value={'' + options.preprocessing}
|
|
||||||
onChange={this.onChange}
|
|
||||||
>
|
>
|
||||||
<option value="0">None</option>
|
Quality:
|
||||||
<option value="1">Segment smooth</option>
|
</Range>
|
||||||
<option value="2">Pseudo-random dithering</option>
|
</div>
|
||||||
</select>
|
<label class={style.optionInputFirst}>
|
||||||
</label>
|
<Checkbox
|
||||||
<label>
|
checked={showAdvanced}
|
||||||
Segments:
|
onChange={linkState(this, 'showAdvanced')}
|
||||||
<range-input
|
|
||||||
name="segments"
|
|
||||||
min="1"
|
|
||||||
max="4"
|
|
||||||
value={'' + options.segments}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
Partitions:
|
|
||||||
<range-input
|
|
||||||
name="partitions"
|
|
||||||
min="0"
|
|
||||||
max="3"
|
|
||||||
value={'' + options.partitions}
|
|
||||||
onChange={this.onChange}
|
|
||||||
/>
|
/>
|
||||||
|
Show advanced settings
|
||||||
</label>
|
</label>
|
||||||
|
<Expander>
|
||||||
|
{showAdvanced ?
|
||||||
|
<div>
|
||||||
|
<label class={style.optionInputFirst}>
|
||||||
|
<Checkbox
|
||||||
|
name="alpha_compression"
|
||||||
|
checked={!!options.alpha_compression}
|
||||||
|
onChange={this.onChange}
|
||||||
|
/>
|
||||||
|
Compress alpha
|
||||||
|
</label>
|
||||||
|
<div class={style.optionOneCell}>
|
||||||
|
<Range
|
||||||
|
name="alpha_quality"
|
||||||
|
min="0"
|
||||||
|
max="100"
|
||||||
|
value={options.alpha_quality}
|
||||||
|
onInput={this.onChange}
|
||||||
|
>
|
||||||
|
Alpha quality:
|
||||||
|
</Range>
|
||||||
|
</div>
|
||||||
|
<div class={style.optionOneCell}>
|
||||||
|
<Range
|
||||||
|
name="alpha_filtering"
|
||||||
|
min="0"
|
||||||
|
max="2"
|
||||||
|
value={options.alpha_filtering}
|
||||||
|
onInput={this.onChange}
|
||||||
|
>
|
||||||
|
Alpha filter quality:
|
||||||
|
</Range>
|
||||||
|
</div>
|
||||||
|
<label class={style.optionInputFirst}>
|
||||||
|
<Checkbox
|
||||||
|
name="autofilter"
|
||||||
|
checked={!!options.autofilter}
|
||||||
|
onChange={this.onChange}
|
||||||
|
/>
|
||||||
|
Auto adjust filter strength
|
||||||
|
</label>
|
||||||
|
<Expander>
|
||||||
|
{options.autofilter ? null :
|
||||||
|
<div class={style.optionOneCell}>
|
||||||
|
<Range
|
||||||
|
name="filter_strength"
|
||||||
|
min="0"
|
||||||
|
max="100"
|
||||||
|
value={options.filter_strength}
|
||||||
|
onInput={this.onChange}
|
||||||
|
>
|
||||||
|
Filter strength:
|
||||||
|
</Range>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
</Expander>
|
||||||
|
<label class={style.optionInputFirst}>
|
||||||
|
<Checkbox
|
||||||
|
name="filter_type"
|
||||||
|
checked={!!options.filter_type}
|
||||||
|
onChange={this.onChange}
|
||||||
|
/>
|
||||||
|
Strong filter
|
||||||
|
</label>
|
||||||
|
<div class={style.optionOneCell}>
|
||||||
|
<Range
|
||||||
|
name="filter_sharpness"
|
||||||
|
min="0"
|
||||||
|
max="7"
|
||||||
|
value={7 - options.filter_sharpness}
|
||||||
|
onInput={this.onChange}
|
||||||
|
>
|
||||||
|
Filter sharpness:
|
||||||
|
</Range>
|
||||||
|
</div>
|
||||||
|
<label class={style.optionInputFirst}>
|
||||||
|
<Checkbox
|
||||||
|
name="use_sharp_yuv"
|
||||||
|
checked={!!options.use_sharp_yuv}
|
||||||
|
onChange={this.onChange}
|
||||||
|
/>
|
||||||
|
Sharp RGB→YUV conversion
|
||||||
|
</label>
|
||||||
|
<div class={style.optionOneCell}>
|
||||||
|
<Range
|
||||||
|
name="pass"
|
||||||
|
min="1"
|
||||||
|
max="10"
|
||||||
|
value={options.pass}
|
||||||
|
onInput={this.onChange}
|
||||||
|
>
|
||||||
|
Passes:
|
||||||
|
</Range>
|
||||||
|
</div>
|
||||||
|
<div class={style.optionOneCell}>
|
||||||
|
<Range
|
||||||
|
name="sns_strength"
|
||||||
|
min="0"
|
||||||
|
max="100"
|
||||||
|
value={options.sns_strength}
|
||||||
|
onInput={this.onChange}
|
||||||
|
>
|
||||||
|
Spacial noise shaping:
|
||||||
|
</Range>
|
||||||
|
</div>
|
||||||
|
<label class={style.optionTextFirst}>
|
||||||
|
Preprocess:
|
||||||
|
<Select
|
||||||
|
name="preprocessing"
|
||||||
|
value={options.preprocessing}
|
||||||
|
onChange={this.onChange}
|
||||||
|
>
|
||||||
|
<option value="0">None</option>
|
||||||
|
<option value="1">Segment smooth</option>
|
||||||
|
<option value="2">Pseudo-random dithering</option>
|
||||||
|
</Select>
|
||||||
|
</label>
|
||||||
|
<div class={style.optionOneCell}>
|
||||||
|
<Range
|
||||||
|
name="segments"
|
||||||
|
min="1"
|
||||||
|
max="4"
|
||||||
|
value={options.segments}
|
||||||
|
onInput={this.onChange}
|
||||||
|
>
|
||||||
|
Segments:
|
||||||
|
</Range>
|
||||||
|
</div>
|
||||||
|
<div class={style.optionOneCell}>
|
||||||
|
<Range
|
||||||
|
name="partitions"
|
||||||
|
min="0"
|
||||||
|
max="3"
|
||||||
|
value={options.partitions}
|
||||||
|
onInput={this.onChange}
|
||||||
|
>
|
||||||
|
Partitions:
|
||||||
|
</Range>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
: null
|
||||||
|
}
|
||||||
|
</Expander>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -277,32 +317,26 @@ export default class WebPEncoderOptions extends Component<Props, {}> {
|
|||||||
// I'm rendering both lossy and lossless forms, as it becomes much easier when
|
// I'm rendering both lossy and lossless forms, as it becomes much easier when
|
||||||
// gathering the data.
|
// gathering the data.
|
||||||
return (
|
return (
|
||||||
<form>
|
<form class={style.optionsSection}>
|
||||||
<label>
|
<label class={style.optionInputFirst}>
|
||||||
<input
|
<Checkbox
|
||||||
name="lossless"
|
name="lossless"
|
||||||
type="checkbox"
|
|
||||||
checked={!!options.lossless}
|
checked={!!options.lossless}
|
||||||
onChange={this.onChange}
|
onChange={this.onChange}
|
||||||
/>
|
/>
|
||||||
Lossless
|
Lossless
|
||||||
</label>
|
</label>
|
||||||
<div class={options.lossless ? '' : styles.hide}>
|
{options.lossless
|
||||||
{this._losslessSpecificOptions(options)}
|
? this._losslessSpecificOptions(options)
|
||||||
</div>
|
: this._lossySpecificOptions(options)
|
||||||
<div class={options.lossless ? styles.hide : ''}>
|
}
|
||||||
{this._lossySpecificOptions(options)}
|
<label class={style.optionInputFirst}>
|
||||||
</div>
|
<Checkbox
|
||||||
<label>
|
|
||||||
<input
|
|
||||||
name="exact"
|
name="exact"
|
||||||
type="checkbox"
|
|
||||||
checked={!!options.exact}
|
checked={!!options.exact}
|
||||||
onChange={this.onChange}
|
onChange={this.onChange}
|
||||||
/>
|
/>
|
||||||
<span>
|
Preserve transparent data
|
||||||
Preserve transparent data. Otherwise, pixels with zero alpha will have RGB also zeroed.
|
|
||||||
</span>
|
|
||||||
</label>
|
</label>
|
||||||
</form>
|
</form>
|
||||||
);
|
);
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
.hide {
|
|
||||||
display: none;
|
|
||||||
}
|
|
@ -1,7 +1,3 @@
|
|||||||
/*
|
|
||||||
Note: These styles are temporary. They will be replaced before going live.
|
|
||||||
*/
|
|
||||||
|
|
||||||
.app {
|
.app {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
@ -1,87 +0,0 @@
|
|||||||
import { h, Component } from 'preact';
|
|
||||||
import * as prettyBytes from 'pretty-bytes';
|
|
||||||
|
|
||||||
type FileContents = ArrayBuffer | Blob;
|
|
||||||
|
|
||||||
interface Props extends Pick<JSX.HTMLAttributes, Exclude<keyof JSX.HTMLAttributes, 'data'>> {
|
|
||||||
file?: FileContents;
|
|
||||||
compareTo?: FileContents;
|
|
||||||
increaseClass?: string;
|
|
||||||
decreaseClass?: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface State {
|
|
||||||
size?: number;
|
|
||||||
sizeFormatted?: string;
|
|
||||||
compareSize?: number;
|
|
||||||
compareSizeFormatted?: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
function calculateSize(data: FileContents): number {
|
|
||||||
return data instanceof ArrayBuffer ? data.byteLength : data.size;
|
|
||||||
}
|
|
||||||
|
|
||||||
export default class FileSize extends Component<Props, State> {
|
|
||||||
constructor(props: Props) {
|
|
||||||
super(props);
|
|
||||||
if (props.file) {
|
|
||||||
this.computeSize('size', props.file);
|
|
||||||
}
|
|
||||||
if (props.compareTo) {
|
|
||||||
this.computeSize('compareSize', props.compareTo);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
componentWillReceiveProps({ file, compareTo }: Props) {
|
|
||||||
if (file !== this.props.file) {
|
|
||||||
this.computeSize('size', file);
|
|
||||||
}
|
|
||||||
if (compareTo !== this.props.compareTo) {
|
|
||||||
this.computeSize('compareSize', compareTo);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
componentDidMount() {
|
|
||||||
this.applyStyles();
|
|
||||||
}
|
|
||||||
|
|
||||||
componentDidUpdate() {
|
|
||||||
this.applyStyles();
|
|
||||||
}
|
|
||||||
|
|
||||||
applyStyles() {
|
|
||||||
const { size, compareSize = 0 } = this.state;
|
|
||||||
if (size != null && this.base) {
|
|
||||||
const delta = size && compareSize ? (size - compareSize) / compareSize : 0;
|
|
||||||
this.base.style.setProperty('--size', '' + size);
|
|
||||||
this.base.style.setProperty('--size-delta', '' + Math.round(Math.abs(delta * 100)));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
computeSize(prop: keyof State, data?: FileContents) {
|
|
||||||
const size = data ? calculateSize(data) : 0;
|
|
||||||
const pretty = prettyBytes(size);
|
|
||||||
this.setState({
|
|
||||||
[prop]: size,
|
|
||||||
[prop + 'Formatted']: pretty,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
render(
|
|
||||||
{ file, compareTo, increaseClass, decreaseClass, ...props }: Props,
|
|
||||||
{ size, sizeFormatted = '', compareSize }: State,
|
|
||||||
) {
|
|
||||||
const delta = size && compareSize ? (size - compareSize) / compareSize : 0;
|
|
||||||
return (
|
|
||||||
<span {...props}>
|
|
||||||
{sizeFormatted}
|
|
||||||
{compareTo && (
|
|
||||||
<span class={delta > 0 ? increaseClass : decreaseClass}>
|
|
||||||
{delta > 0 && '+'}
|
|
||||||
{Math.round(delta * 100)}%
|
|
||||||
</span>
|
|
||||||
)}
|
|
||||||
</span>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
41
src/components/Options/FileSize.tsx
Normal file
41
src/components/Options/FileSize.tsx
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import { h, Component } from 'preact';
|
||||||
|
import * as prettyBytes from 'pretty-bytes';
|
||||||
|
import * as style from './style.scss';
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
blob: Blob;
|
||||||
|
compareTo?: Blob;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface State {}
|
||||||
|
|
||||||
|
export default class FileSize extends Component<Props, State> {
|
||||||
|
render({ blob, compareTo }: Props) {
|
||||||
|
let comparison: JSX.Element | undefined;
|
||||||
|
|
||||||
|
if (compareTo) {
|
||||||
|
const delta = blob.size / compareTo.size;
|
||||||
|
if (delta > 1) {
|
||||||
|
const percent = Math.round((delta - 1) * 100) + '%';
|
||||||
|
comparison = (
|
||||||
|
<span class={`${style.sizeDelta} ${style.sizeIncrease}`}>
|
||||||
|
{percent === '0%' ? 'slightly' : percent} bigger
|
||||||
|
</span>
|
||||||
|
);
|
||||||
|
} else if (delta < 1) {
|
||||||
|
const percent = Math.round((1 - delta) * 100) + '%';
|
||||||
|
comparison = (
|
||||||
|
<span class={`${style.sizeDelta} ${style.sizeDecrease}`}>
|
||||||
|
{percent === '0%' ? 'slightly' : percent} smaller
|
||||||
|
</span>
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
comparison = (
|
||||||
|
<span class={style.sizeDelta}>no change</span>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return <span>{prettyBytes(blob.size)} {comparison}</span>;
|
||||||
|
}
|
||||||
|
}
|
@ -31,14 +31,17 @@ import {
|
|||||||
encoders,
|
encoders,
|
||||||
encodersSupported,
|
encodersSupported,
|
||||||
EncoderSupportMap,
|
EncoderSupportMap,
|
||||||
encoderMap,
|
|
||||||
} from '../../codecs/encoders';
|
} from '../../codecs/encoders';
|
||||||
import { QuantizeOptions } from '../../codecs/imagequant/processor-meta';
|
import { QuantizeOptions } from '../../codecs/imagequant/processor-meta';
|
||||||
import { ResizeOptions } from '../../codecs/resize/processor-meta';
|
import { ResizeOptions } from '../../codecs/resize/processor-meta';
|
||||||
import { PreprocessorState } from '../../codecs/preprocessors';
|
import { PreprocessorState } from '../../codecs/preprocessors';
|
||||||
import FileSize from '../FileSize';
|
import FileSize from './FileSize';
|
||||||
import { DownloadIcon } from '../../lib/icons';
|
import { DownloadIcon } from '../../lib/icons';
|
||||||
import { SourceImage } from '../App';
|
import { SourceImage } from '../App';
|
||||||
|
import Checkbox from '../checkbox';
|
||||||
|
import Expander from '../expander';
|
||||||
|
import Select from '../select';
|
||||||
|
import '../custom-els/LoadingSpinner';
|
||||||
|
|
||||||
const encoderOptionsComponentMap = {
|
const encoderOptionsComponentMap = {
|
||||||
[identity.type]: undefined,
|
[identity.type]: undefined,
|
||||||
@ -56,13 +59,9 @@ const encoderOptionsComponentMap = {
|
|||||||
[browserPDF.type]: undefined,
|
[browserPDF.type]: undefined,
|
||||||
};
|
};
|
||||||
|
|
||||||
const titles = {
|
|
||||||
horizontal: ['Left Image', 'Right Image'],
|
|
||||||
vertical: ['Top Image', 'Bottom Image'],
|
|
||||||
};
|
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
orientation: 'horizontal' | 'vertical';
|
orientation: 'horizontal' | 'vertical';
|
||||||
|
loading: boolean;
|
||||||
source?: SourceImage;
|
source?: SourceImage;
|
||||||
imageIndex: number;
|
imageIndex: number;
|
||||||
imageFile?: Fileish;
|
imageFile?: Fileish;
|
||||||
@ -77,16 +76,39 @@ interface Props {
|
|||||||
|
|
||||||
interface State {
|
interface State {
|
||||||
encoderSupportMap?: EncoderSupportMap;
|
encoderSupportMap?: EncoderSupportMap;
|
||||||
|
showLoadingState: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const loadingReactionDelay = 500;
|
||||||
|
|
||||||
export default class Options extends Component<Props, State> {
|
export default class Options extends Component<Props, State> {
|
||||||
typeSelect?: HTMLSelectElement;
|
state: State = {
|
||||||
|
encoderSupportMap: undefined,
|
||||||
|
showLoadingState: false,
|
||||||
|
};
|
||||||
|
|
||||||
|
/** The timeout ID between entering the loading state, and changing UI */
|
||||||
|
private loadingTimeoutId: number = 0;
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
encodersSupported.then(encoderSupportMap => this.setState({ encoderSupportMap }));
|
encodersSupported.then(encoderSupportMap => this.setState({ encoderSupportMap }));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
componentDidUpdate(prevProps: Props, prevState: State) {
|
||||||
|
if (prevProps.loading && !this.props.loading) {
|
||||||
|
// Just stopped loading
|
||||||
|
clearTimeout(this.loadingTimeoutId);
|
||||||
|
this.setState({ showLoadingState: false });
|
||||||
|
} else if (!prevProps.loading && this.props.loading) {
|
||||||
|
// Just started loading
|
||||||
|
this.loadingTimeoutId = self.setTimeout(
|
||||||
|
() => this.setState({ showLoadingState: true }),
|
||||||
|
loadingReactionDelay,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@bind
|
@bind
|
||||||
onEncoderTypeChange(event: Event) {
|
onEncoderTypeChange(event: Event) {
|
||||||
const el = event.currentTarget as HTMLSelectElement;
|
const el = event.currentTarget as HTMLSelectElement;
|
||||||
@ -138,105 +160,118 @@ export default class Options extends Component<Props, State> {
|
|||||||
preprocessorState,
|
preprocessorState,
|
||||||
onEncoderOptionsChange,
|
onEncoderOptionsChange,
|
||||||
}: Props,
|
}: Props,
|
||||||
{ encoderSupportMap }: State,
|
{ encoderSupportMap, showLoadingState }: State,
|
||||||
) {
|
) {
|
||||||
// tslint:disable variable-name
|
// tslint:disable variable-name
|
||||||
const EncoderOptionComponent = encoderOptionsComponentMap[encoderState.type];
|
const EncoderOptionComponent = encoderOptionsComponentMap[encoderState.type];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div class={`${style.options} ${style[orientation]}`}>
|
<div class={style.options}>
|
||||||
<h2 class={style.title}>
|
<Expander>
|
||||||
{titles[orientation][imageIndex]}
|
{encoderState.type === identity.type ? null :
|
||||||
{', '}
|
<div>
|
||||||
{encoderMap[encoderState.type].label}
|
<h3 class={style.optionsTitle}>Edit</h3>
|
||||||
</h2>
|
<label class={style.sectionEnabler}>
|
||||||
|
<Checkbox
|
||||||
<div class={style.content}>
|
|
||||||
<section class={style.picker}>
|
|
||||||
{encoderSupportMap ?
|
|
||||||
<select value={encoderState.type} onChange={this.onEncoderTypeChange}>
|
|
||||||
{encoders.filter(encoder => encoderSupportMap[encoder.type]).map(encoder => (
|
|
||||||
<option value={encoder.type}>{encoder.label}</option>
|
|
||||||
))}
|
|
||||||
</select>
|
|
||||||
:
|
|
||||||
<select><option>Loading…</option></select>
|
|
||||||
}
|
|
||||||
</section>
|
|
||||||
|
|
||||||
{encoderState.type !== 'identity' && (
|
|
||||||
<div key="preprocessors" class={style.preprocessors}>
|
|
||||||
<label class={style.toggle}>
|
|
||||||
<input
|
|
||||||
name="resize.enable"
|
name="resize.enable"
|
||||||
type="checkbox"
|
|
||||||
checked={!!preprocessorState.resize.enabled}
|
checked={!!preprocessorState.resize.enabled}
|
||||||
onChange={this.onPreprocessorEnabledChange}
|
onChange={this.onPreprocessorEnabledChange}
|
||||||
/>
|
/>
|
||||||
Resize
|
Resize
|
||||||
</label>
|
</label>
|
||||||
{preprocessorState.resize.enabled &&
|
<Expander>
|
||||||
<ResizeOptionsComponent
|
{preprocessorState.resize.enabled ?
|
||||||
isVector={Boolean(source && source.vectorImage)}
|
<ResizeOptionsComponent
|
||||||
aspect={source ? (source.data.width / source.data.height) : 1}
|
isVector={Boolean(source && source.vectorImage)}
|
||||||
options={preprocessorState.resize}
|
aspect={source ? (source.data.width / source.data.height) : 1}
|
||||||
onChange={this.onResizeOptionsChange}
|
options={preprocessorState.resize}
|
||||||
/>
|
onChange={this.onResizeOptionsChange}
|
||||||
}
|
/>
|
||||||
<label class={style.toggle}>
|
: null}
|
||||||
<input
|
</Expander>
|
||||||
|
<label class={style.sectionEnabler}>
|
||||||
|
<Checkbox
|
||||||
name="quantizer.enable"
|
name="quantizer.enable"
|
||||||
type="checkbox"
|
|
||||||
checked={!!preprocessorState.quantizer.enabled}
|
checked={!!preprocessorState.quantizer.enabled}
|
||||||
onChange={this.onPreprocessorEnabledChange}
|
onChange={this.onPreprocessorEnabledChange}
|
||||||
/>
|
/>
|
||||||
Quantize
|
Reduce palette
|
||||||
</label>
|
</label>
|
||||||
{preprocessorState.quantizer.enabled &&
|
<Expander>
|
||||||
<QuantizerOptionsComponent
|
{preprocessorState.quantizer.enabled ?
|
||||||
options={preprocessorState.quantizer}
|
<QuantizerOptionsComponent
|
||||||
onChange={this.onQuantizerOptionsChange}
|
options={preprocessorState.quantizer}
|
||||||
/>
|
onChange={this.onQuantizerOptionsChange}
|
||||||
}
|
/>
|
||||||
|
: null}
|
||||||
|
</Expander>
|
||||||
</div>
|
</div>
|
||||||
)}
|
|
||||||
|
|
||||||
{EncoderOptionComponent &&
|
|
||||||
<EncoderOptionComponent
|
|
||||||
options={
|
|
||||||
// Casting options, as encoderOptionsComponentMap[encodeData.type] ensures
|
|
||||||
// the correct type, but typescript isn't smart enough.
|
|
||||||
encoderState.options as any
|
|
||||||
}
|
|
||||||
onChange={onEncoderOptionsChange}
|
|
||||||
/>
|
|
||||||
}
|
}
|
||||||
|
</Expander>
|
||||||
|
|
||||||
|
<h3 class={style.optionsTitle}>Compress</h3>
|
||||||
|
|
||||||
|
<div class={style.optionsScroller}>
|
||||||
|
<section class={`${style.optionOneCell} ${style.optionsSection}`}>
|
||||||
|
{encoderSupportMap ?
|
||||||
|
<Select value={encoderState.type} onChange={this.onEncoderTypeChange} large>
|
||||||
|
{encoders.filter(encoder => encoderSupportMap[encoder.type]).map(encoder => (
|
||||||
|
<option value={encoder.type}>{encoder.label}</option>
|
||||||
|
))}
|
||||||
|
</Select>
|
||||||
|
:
|
||||||
|
<Select large><option>Loading…</option></Select>
|
||||||
|
}
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<Expander>
|
||||||
|
{EncoderOptionComponent ?
|
||||||
|
<EncoderOptionComponent
|
||||||
|
options={
|
||||||
|
// Casting options, as encoderOptionsComponentMap[encodeData.type] ensures
|
||||||
|
// the correct type, but typescript isn't smart enough.
|
||||||
|
encoderState.options as any
|
||||||
|
}
|
||||||
|
onChange={onEncoderOptionsChange}
|
||||||
|
/>
|
||||||
|
: null}
|
||||||
|
</Expander>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class={style.row}>
|
<div class={style.optionsCopy}>
|
||||||
<button onClick={this.onCopyToOtherClick}>Copy settings to other side</button>
|
<button onClick={this.onCopyToOtherClick} class={style.copyButton}>
|
||||||
|
{imageIndex === 1 && '← '}
|
||||||
|
Copy settings across
|
||||||
|
{imageIndex === 0 && ' →'}
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class={style.sizeDetails}>
|
<div class={style.results}>
|
||||||
<FileSize
|
<div class={style.resultData}>
|
||||||
class={style.size}
|
{!imageFile || showLoadingState ? 'Working…' :
|
||||||
increaseClass={style.increase}
|
<FileSize
|
||||||
decreaseClass={style.decrease}
|
blob={imageFile}
|
||||||
file={imageFile}
|
compareTo={(source && imageFile !== source.file) ? source.file : undefined}
|
||||||
compareTo={(source && imageFile !== source.file) ? source.file : undefined}
|
/>
|
||||||
/>
|
}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class={style.download}>
|
||||||
|
{(downloadUrl && imageFile) && (
|
||||||
|
<a
|
||||||
|
class={`${style.downloadLink} ${showLoadingState ? style.downloadLinkDisable : ''}`}
|
||||||
|
href={downloadUrl}
|
||||||
|
download={imageFile.name}
|
||||||
|
title="Download"
|
||||||
|
>
|
||||||
|
<DownloadIcon class={style.downloadIcon} />
|
||||||
|
</a>
|
||||||
|
)}
|
||||||
|
{showLoadingState && <loading-spinner class={style.spinner} />}
|
||||||
|
</div>
|
||||||
|
|
||||||
{(downloadUrl && imageFile) && (
|
|
||||||
<a
|
|
||||||
class={style.download}
|
|
||||||
href={downloadUrl}
|
|
||||||
download={imageFile.name}
|
|
||||||
title="Download"
|
|
||||||
>
|
|
||||||
<DownloadIcon />
|
|
||||||
</a>
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -1,225 +1,166 @@
|
|||||||
/*
|
$horizontalPadding: 15px;
|
||||||
Note: These styles are temporary. They will be replaced before going live.
|
|
||||||
*/
|
|
||||||
|
|
||||||
.row {
|
|
||||||
padding: 5px;
|
|
||||||
margin: 0 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.options {
|
.options {
|
||||||
box-sizing: border-box;
|
color: #fff;
|
||||||
padding: 0;
|
width: 300px;
|
||||||
background: rgba(40,40,40,0.8);
|
|
||||||
box-shadow: 0 1px 3px rgba(0,0,0,0.5);
|
|
||||||
color: #eee;
|
|
||||||
overflow: auto;
|
|
||||||
z-index: 1;
|
|
||||||
opacity: 0.9;
|
opacity: 0.9;
|
||||||
transform-origin: 50% 140%;
|
font-size: 1.2rem;
|
||||||
transition: opacity 300ms linear;
|
max-height: 100%;
|
||||||
animation: options-open 500ms cubic-bezier(.6,1.6,.6,1) forwards 1;
|
display: flex;
|
||||||
|
flex-flow: column;
|
||||||
&.horizontal {
|
|
||||||
border-radius: 1px 1px 5px 5px;
|
|
||||||
width: 230px;
|
|
||||||
|
|
||||||
> .inner {
|
|
||||||
max-height: 80vh;
|
|
||||||
overflow: auto;
|
|
||||||
-webkit-overflow-scrolling: touch;
|
|
||||||
-ms-touch-action: pan-y;
|
|
||||||
touch-action: pan-y;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&.vertical {
|
|
||||||
opacity: 1;
|
|
||||||
margin: 0 5px 10px;
|
|
||||||
border-radius: 0 0 5px 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover, &:focus, &:focus-within {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes options-open {
|
|
||||||
from {
|
|
||||||
transform: translateY(100px) scale(.8);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.content {
|
|
||||||
max-height: calc(75vh - 100px);
|
|
||||||
overflow: auto;
|
|
||||||
touch-action: pan-y;
|
|
||||||
-webkit-overflow-scrolling: touch;
|
|
||||||
}
|
|
||||||
|
|
||||||
.picker {
|
|
||||||
margin: 5px 15px;
|
|
||||||
|
|
||||||
select {
|
|
||||||
display: block;
|
|
||||||
width: 100%;
|
|
||||||
box-sizing: border-box;
|
|
||||||
-webkit-appearance: none;
|
|
||||||
appearance: none;
|
|
||||||
padding: 10px 30px 10px 10px;
|
|
||||||
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="5"><polygon fill="#fff" points="10,0 5,5 0,0"/></svg>') right center no-repeat;
|
|
||||||
background-color: var(--gray-dark);
|
|
||||||
opacity: 0.9;
|
|
||||||
border: none;
|
|
||||||
font: inherit;
|
|
||||||
color: white;
|
|
||||||
transition: box-shadow 150ms ease;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
&:focus {
|
|
||||||
opacity: 1;
|
|
||||||
outline: none;
|
|
||||||
box-shadow: 0 0 0 2px var(--button-fg, #ccc);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.title {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
padding: 10px 15px;
|
|
||||||
margin: 0 0 12px;
|
|
||||||
background: rgba(0,0,0,0.9);
|
|
||||||
font: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
label {
|
|
||||||
display: block;
|
|
||||||
padding: 5px;
|
|
||||||
margin: 0 10px;
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
|
|
||||||
// prevent labels from wrapping below checkboxes
|
|
||||||
> span {
|
|
||||||
flex: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
input[type=checkbox],
|
|
||||||
input[type=radio] {
|
|
||||||
flex: 0;
|
|
||||||
margin: 2px 8px 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
range-input {
|
|
||||||
display: block;
|
|
||||||
flex: 1 0 100%;
|
|
||||||
margin: 2px 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
hr {
|
|
||||||
height: 1px;
|
|
||||||
border: none;
|
|
||||||
margin: 5px 0;
|
|
||||||
box-shadow: inset 0 0.5px 0 rgba(0, 0, 0, 0.4), inset 0 -0.5px 0 rgba(255, 255, 255, 0.2);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.picker {
|
.options-title {
|
||||||
margin: 5px 15px;
|
background: rgba(0, 0, 0, 0.9);
|
||||||
|
margin: 0;
|
||||||
select {
|
padding: 10px $horizontalPadding;
|
||||||
display: block;
|
font-weight: normal;
|
||||||
width: 100%;
|
font-size: 1.4rem;
|
||||||
box-sizing: border-box;
|
border-bottom: 1px solid #000;
|
||||||
-webkit-appearance: none;
|
|
||||||
appearance: none;
|
|
||||||
padding: 10px 30px 10px 10px;
|
|
||||||
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="5"><polygon fill="#fff" points="10,0 5,5 0,0"/></svg>') right center no-repeat;
|
|
||||||
background-color: var(--gray-dark);
|
|
||||||
opacity: 0.9;
|
|
||||||
border: none;
|
|
||||||
font: inherit;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
hr {
|
|
||||||
height: 1px;
|
|
||||||
border: none;
|
|
||||||
margin: 5px 0;
|
|
||||||
box-shadow: inset 0 0.5px 0 rgba(0, 0, 0, 0.4), inset 0 -0.5px 0 rgba(255, 255, 255, 0.2);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.size-details {
|
.option-text-first {
|
||||||
|
display: grid;
|
||||||
|
align-items: center;
|
||||||
|
grid-template-columns: 87px 1fr;
|
||||||
|
grid-gap: 0.7em;
|
||||||
|
padding: 10px $horizontalPadding;
|
||||||
|
}
|
||||||
|
|
||||||
|
.option-one-cell {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
padding: 10px $horizontalPadding;
|
||||||
|
}
|
||||||
|
|
||||||
|
.option-input-first,
|
||||||
|
.section-enabler {
|
||||||
|
cursor: pointer;
|
||||||
|
display: grid;
|
||||||
|
align-items: center;
|
||||||
|
grid-template-columns: auto 1fr;
|
||||||
|
grid-gap: 0.7em;
|
||||||
|
padding: 10px $horizontalPadding;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-enabler {
|
||||||
|
background: rgba(0, 0, 0, 0.8);
|
||||||
|
}
|
||||||
|
|
||||||
|
.options-section {
|
||||||
|
background: rgba(0, 0, 0, 0.7);
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-field {
|
||||||
|
background: #fff;
|
||||||
|
font: inherit;
|
||||||
|
border: none;
|
||||||
|
padding: 2px 0 2px 10px;
|
||||||
|
width: 100%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.options-scroller {
|
||||||
|
overflow-x: hidden;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.results {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr auto;
|
||||||
|
background: rgba(0, 0, 0, 0.9);
|
||||||
|
font-size: 1.4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.result-data {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 5px 15px;
|
padding: 0 $horizontalPadding;
|
||||||
background: rgba(0,0,0,0.5);
|
}
|
||||||
|
|
||||||
|
.size-delta {
|
||||||
|
font-size: 1.1rem;
|
||||||
|
font-style: italic;
|
||||||
|
position: relative;
|
||||||
|
top: -1px;
|
||||||
|
margin-left: 0.3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.size-increase {
|
||||||
|
color: #e35050;
|
||||||
|
}
|
||||||
|
|
||||||
|
.size-decrease {
|
||||||
|
color: #50e3c2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.options-copy {
|
||||||
|
display: grid;
|
||||||
|
background: rgba(0, 0, 0, 0.9);
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copy-button {
|
||||||
|
composes: unbutton from '../../lib/util.scss';
|
||||||
|
background: #484848;
|
||||||
|
border-radius: 4px;
|
||||||
|
color: #fff;
|
||||||
|
text-align: left;
|
||||||
|
padding: 5px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes action-enter {
|
||||||
|
from {
|
||||||
|
transform: rotate(-90deg);
|
||||||
|
opacity: 0;
|
||||||
|
animation-timing-function: ease-out;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes action-leave {
|
||||||
|
from {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
opacity: 1;
|
||||||
|
animation-timing-function: ease-out;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.download {
|
.download {
|
||||||
flex: 0;
|
background: #34B9EB;
|
||||||
margin: 0 0 0 auto;
|
--size: 38px;
|
||||||
background: rgba(255,255,255,0.1);
|
width: var(--size);
|
||||||
border-radius: 50%;
|
height: var(--size);
|
||||||
padding: 5px;
|
display: grid;
|
||||||
width: 16px;
|
align-items: center;
|
||||||
height: 16px;
|
justify-items: center;
|
||||||
text-decoration: none;
|
|
||||||
|
|
||||||
> svg {
|
|
||||||
width: 16px;
|
|
||||||
height: 16px;
|
|
||||||
fill: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
background-color: rgba(255,255,255,0.3);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.size-details {
|
.download-link {
|
||||||
padding: 5px 15px;
|
animation: action-enter 0.2s;
|
||||||
background: rgba(0,0,0,0.5);
|
grid-area: 1/1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.size {
|
.download-link-disable {
|
||||||
font-weight: normal;
|
pointer-events: none;
|
||||||
|
opacity: 0;
|
||||||
|
transform: rotate(90deg);
|
||||||
|
animation: action-leave 0.2s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.increase,
|
.download-icon {
|
||||||
.decrease {
|
color: #fff;
|
||||||
font-style: italic;
|
display: block;
|
||||||
filter: #{"grayscale(calc(50% - var(--size-delta, 50) * 0.5%))"};
|
--size: 24px;
|
||||||
|
width: var(--size);
|
||||||
&:before {
|
height: var(--size);
|
||||||
content: ' (';
|
padding: 7px;
|
||||||
}
|
filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.7));
|
||||||
&:after {
|
|
||||||
content: ')';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.increase {
|
.spinner {
|
||||||
color: var(--negative);
|
--color: #fff;
|
||||||
}
|
--delay: 0;
|
||||||
.decrease {
|
--size: 22px;
|
||||||
color: var(--positive);
|
grid-area: 1/1;
|
||||||
}
|
|
||||||
|
|
||||||
.preprocessors {
|
|
||||||
padding: 5px 0;
|
|
||||||
margin: 5px 0;
|
|
||||||
box-shadow: inset 0 -.5px 0 rgba(0,0,0,0.4), 0 .5px 0 rgba(255,255,255,0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
.toggle {
|
|
||||||
display: flex;
|
|
||||||
position: relative;
|
|
||||||
align-content: center;
|
|
||||||
font-size: 14px;
|
|
||||||
box-shadow: inset 0 -.5px 0 rgba(0,0,0,0.4), 0 .5px 0 rgba(255,255,255,0.2);
|
|
||||||
}
|
}
|
||||||
|
@ -52,7 +52,7 @@ two-up[legacy-clip-compat] > :not(.two-up-handle) {
|
|||||||
height: calc(var(--thumb-size) * 0.9);
|
height: calc(var(--thumb-size) * 0.9);
|
||||||
background: var(--thumb-background);
|
background: var(--thumb-background);
|
||||||
border: 1px solid rgba(0,0,0,0.2);
|
border: 1px solid rgba(0,0,0,0.2);
|
||||||
border-radius: calc(var(--thumb-size) * 0.08);
|
border-radius: var(--thumb-size);
|
||||||
box-shadow: 0 1px 4px rgba(0,0,0,0.1);
|
box-shadow: 0 1px 4px rgba(0,0,0,0.1);
|
||||||
color: var(--thumb-color);
|
color: var(--thumb-color);
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
@ -47,10 +47,10 @@ Note: These styles are temporary. They will be replaced before going live.
|
|||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
contain: content;
|
contain: content;
|
||||||
|
|
||||||
@media (min-width: 680px) {
|
@media (min-width: 860px) {
|
||||||
top: auto;
|
top: auto;
|
||||||
left: 220px;
|
left: 320px;
|
||||||
right: 220px;
|
right: 320px;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
20
src/components/checkbox/index.tsx
Normal file
20
src/components/checkbox/index.tsx
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
import { h, Component } from 'preact';
|
||||||
|
import * as style from './style.scss';
|
||||||
|
import { UncheckedIcon, CheckedIcon } from '../../lib/icons';
|
||||||
|
|
||||||
|
interface Props extends JSX.HTMLAttributes {}
|
||||||
|
interface State {}
|
||||||
|
|
||||||
|
export default class Checkbox extends Component<Props, State> {
|
||||||
|
render(props: Props) {
|
||||||
|
return (
|
||||||
|
<div class={style.checkbox}>
|
||||||
|
{props.checked
|
||||||
|
? <CheckedIcon class={`${style.icon} ${style.checked}`} />
|
||||||
|
: <UncheckedIcon class={style.icon} />
|
||||||
|
}
|
||||||
|
<input class={style.realCheckbox} type="checkbox" {...props}/>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
22
src/components/checkbox/style.scss
Normal file
22
src/components/checkbox/style.scss
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
.checkbox {
|
||||||
|
display: inline-block;
|
||||||
|
position: relative;
|
||||||
|
--size: 17px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.real-checkbox {
|
||||||
|
top: 0;
|
||||||
|
position: absolute;
|
||||||
|
opacity: 0;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon {
|
||||||
|
display: block;
|
||||||
|
width: var(--size);
|
||||||
|
height: var(--size);
|
||||||
|
}
|
||||||
|
|
||||||
|
.checked {
|
||||||
|
fill: #34B9EB;
|
||||||
|
}
|
@ -65,7 +65,9 @@ interface Props {
|
|||||||
interface State {
|
interface State {
|
||||||
source?: SourceImage;
|
source?: SourceImage;
|
||||||
images: [EncodedImage, EncodedImage];
|
images: [EncodedImage, EncodedImage];
|
||||||
|
/** Source image load */
|
||||||
loading: boolean;
|
loading: boolean;
|
||||||
|
loadingCounter: number;
|
||||||
error?: string;
|
error?: string;
|
||||||
orientation: Orientation;
|
orientation: Orientation;
|
||||||
}
|
}
|
||||||
@ -159,6 +161,7 @@ export default class Compress extends Component<Props, State> {
|
|||||||
state: State = {
|
state: State = {
|
||||||
source: undefined,
|
source: undefined,
|
||||||
loading: false,
|
loading: false,
|
||||||
|
loadingCounter: 0,
|
||||||
images: [
|
images: [
|
||||||
{
|
{
|
||||||
preprocessorState: defaultPreprocessorState,
|
preprocessorState: defaultPreprocessorState,
|
||||||
@ -252,7 +255,9 @@ export default class Compress extends Component<Props, State> {
|
|||||||
|
|
||||||
@bind
|
@bind
|
||||||
private async updateFile(file: File | Fileish) {
|
private async updateFile(file: File | Fileish) {
|
||||||
this.setState({ loading: true });
|
const loadingCounter = this.state.loadingCounter + 1;
|
||||||
|
|
||||||
|
this.setState({ loadingCounter, loading: true });
|
||||||
|
|
||||||
// Abort any current encode jobs, as they're redundant now.
|
// Abort any current encode jobs, as they're redundant now.
|
||||||
this.leftProcessor.abortCurrent();
|
this.leftProcessor.abortCurrent();
|
||||||
@ -273,6 +278,9 @@ export default class Compress extends Component<Props, State> {
|
|||||||
data = await decodeImage(file, this.leftProcessor);
|
data = await decodeImage(file, this.leftProcessor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Another file has been opened before this one processed.
|
||||||
|
if (this.state.loadingCounter !== loadingCounter) return;
|
||||||
|
|
||||||
let newState: State = {
|
let newState: State = {
|
||||||
...this.state,
|
...this.state,
|
||||||
source: { data, file, vectorImage },
|
source: { data, file, vectorImage },
|
||||||
@ -303,6 +311,8 @@ export default class Compress extends Component<Props, State> {
|
|||||||
} catch (err) {
|
} catch (err) {
|
||||||
if (err.name === 'AbortError') return;
|
if (err.name === 'AbortError') return;
|
||||||
console.error(err);
|
console.error(err);
|
||||||
|
// Another file has been opened before this one processed.
|
||||||
|
if (this.state.loadingCounter !== loadingCounter) return;
|
||||||
this.props.onError('Invalid image');
|
this.props.onError('Invalid image');
|
||||||
this.setState({ loading: false });
|
this.setState({ loading: false });
|
||||||
}
|
}
|
||||||
@ -388,10 +398,9 @@ export default class Compress extends Component<Props, State> {
|
|||||||
render({ }: Props, { loading, images, source, orientation }: State) {
|
render({ }: Props, { loading, images, source, orientation }: State) {
|
||||||
const [leftImage, rightImage] = images;
|
const [leftImage, rightImage] = images;
|
||||||
const [leftImageData, rightImageData] = images.map(i => i.data);
|
const [leftImageData, rightImageData] = images.map(i => i.data);
|
||||||
const anyLoading = loading || images.some(image => image.loading);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div class={style.compress}>
|
<div class={`${style.compress} ${style[orientation]}`}>
|
||||||
<Output
|
<Output
|
||||||
originalImage={source && source.data}
|
originalImage={source && source.data}
|
||||||
orientation={orientation}
|
orientation={orientation}
|
||||||
@ -400,24 +409,22 @@ export default class Compress extends Component<Props, State> {
|
|||||||
leftImgContain={leftImage.preprocessorState.resize.fitMethod === 'cover'}
|
leftImgContain={leftImage.preprocessorState.resize.fitMethod === 'cover'}
|
||||||
rightImgContain={rightImage.preprocessorState.resize.fitMethod === 'cover'}
|
rightImgContain={rightImage.preprocessorState.resize.fitMethod === 'cover'}
|
||||||
/>
|
/>
|
||||||
<div class={`${style.optionPair} ${style[orientation]}`}>
|
{images.map((image, index) => (
|
||||||
{images.map((image, index) => (
|
<Options
|
||||||
<Options
|
loading={loading || image.loading}
|
||||||
source={source}
|
source={source}
|
||||||
orientation={orientation}
|
orientation={orientation}
|
||||||
imageIndex={index}
|
imageIndex={index}
|
||||||
imageFile={image.file}
|
imageFile={image.file}
|
||||||
downloadUrl={image.downloadUrl}
|
downloadUrl={image.downloadUrl}
|
||||||
preprocessorState={image.preprocessorState}
|
preprocessorState={image.preprocessorState}
|
||||||
encoderState={image.encoderState}
|
encoderState={image.encoderState}
|
||||||
onEncoderTypeChange={this.onEncoderTypeChange.bind(this, index)}
|
onEncoderTypeChange={this.onEncoderTypeChange.bind(this, index)}
|
||||||
onEncoderOptionsChange={this.onEncoderOptionsChange.bind(this, index)}
|
onEncoderOptionsChange={this.onEncoderOptionsChange.bind(this, index)}
|
||||||
onPreprocessorOptionsChange={this.onPreprocessorOptionsChange.bind(this, index)}
|
onPreprocessorOptionsChange={this.onPreprocessorOptionsChange.bind(this, index)}
|
||||||
onCopyToOtherClick={this.onCopyToOtherClick.bind(this, index)}
|
onCopyToOtherClick={this.onCopyToOtherClick.bind(this, index)}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
</div>
|
|
||||||
{anyLoading && <span style={{ position: 'fixed', top: 0, left: 0 }}>Loading...</span>}
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -1,19 +1,22 @@
|
|||||||
.compress {
|
.compress {
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.option-pair {
|
|
||||||
display: flex;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
contain: strict;
|
||||||
|
display: grid;
|
||||||
|
|
||||||
&.horizontal {
|
&.horizontal {
|
||||||
justify-content: space-between;
|
grid-template-columns: 1fr auto;
|
||||||
align-items: flex-end;
|
grid-template-rows: calc(100% - 75px);
|
||||||
|
|
||||||
|
@media (min-width: 860px) {
|
||||||
|
grid-template-rows: 100%;
|
||||||
|
}
|
||||||
|
align-items: end;
|
||||||
|
align-content: end;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.vertical {
|
&.vertical {
|
||||||
flex-direction: column;
|
// TODO: make the mobile view work
|
||||||
justify-content: flex-end;
|
background: red;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
92
src/components/expander/index.tsx
Normal file
92
src/components/expander/index.tsx
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
import { h, Component, ComponentChild, ComponentChildren } from 'preact';
|
||||||
|
import * as style from './style.scss';
|
||||||
|
import { linkRef } from '../../lib/initial-util';
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
children: ComponentChildren;
|
||||||
|
}
|
||||||
|
interface State {
|
||||||
|
outgoingChildren: ComponentChild[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export default class Expander extends Component<Props, State> {
|
||||||
|
state: State = {
|
||||||
|
outgoingChildren: [],
|
||||||
|
};
|
||||||
|
private el?: HTMLDivElement;
|
||||||
|
private lastElHeight: number = 0;
|
||||||
|
|
||||||
|
componentWillReceiveProps(nextProps: Props) {
|
||||||
|
const children = this.props.children as ComponentChild[];
|
||||||
|
const nextChildren = nextProps.children as ComponentChild[];
|
||||||
|
|
||||||
|
if (!nextChildren[0] && children[0]) {
|
||||||
|
// Cache the current children for the shrink animation.
|
||||||
|
this.setState({ outgoingChildren: children });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
componentWillUpdate(nextProps: Props) {
|
||||||
|
const children = this.props.children as ComponentChild[];
|
||||||
|
const nextChildren = nextProps.children as ComponentChild[];
|
||||||
|
|
||||||
|
// Only interested if going from empty to not-empty, or not-empty to empty.
|
||||||
|
if ((children[0] && nextChildren[0]) || (!children[0] && !nextChildren[0])) return;
|
||||||
|
this.lastElHeight = this.el!.getBoundingClientRect().height;
|
||||||
|
}
|
||||||
|
|
||||||
|
componentDidUpdate(previousProps: Props) {
|
||||||
|
const children = this.props.children as ComponentChild[];
|
||||||
|
const previousChildren = previousProps.children as ComponentChild[];
|
||||||
|
|
||||||
|
// Only interested if going from empty to not-empty, or not-empty to empty.
|
||||||
|
if ((children[0] && previousChildren[0]) || (!children[0] && !previousChildren[0])) return;
|
||||||
|
|
||||||
|
// What height do we need to transition to?
|
||||||
|
this.el!.style.transition = 'none';
|
||||||
|
this.el!.style.height = '';
|
||||||
|
const newHeight = children[0] ? this.el!.getBoundingClientRect().height : 0;
|
||||||
|
|
||||||
|
if (this.lastElHeight === newHeight) {
|
||||||
|
this.el!.style.transition = '';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set the currently rendered height absolutely.
|
||||||
|
this.el!.style.height = this.lastElHeight + 'px';
|
||||||
|
this.el!.style.transition = '';
|
||||||
|
this.el!.style.overflow = 'hidden';
|
||||||
|
// Force a style calc so the browser picks up the start value.
|
||||||
|
getComputedStyle(this.el!).height;
|
||||||
|
// Animate to the new height.
|
||||||
|
this.el!.style.height = newHeight + 'px';
|
||||||
|
|
||||||
|
const listener = () => {
|
||||||
|
// Unset the height & overflow, so element changes do the right thing.
|
||||||
|
this.el!.style.height = '';
|
||||||
|
this.el!.style.overflow = '';
|
||||||
|
this.el!.removeEventListener('transitionend', listener);
|
||||||
|
this.el!.removeEventListener('transitioncancel', listener);
|
||||||
|
if (this.state.outgoingChildren[0]) {
|
||||||
|
this.setState({ outgoingChildren: [] });
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
this.el!.addEventListener('transitionend', listener);
|
||||||
|
this.el!.addEventListener('transitioncancel', listener);
|
||||||
|
}
|
||||||
|
|
||||||
|
render(props: Props, { outgoingChildren }: State) {
|
||||||
|
const children = props.children as ComponentChild[];
|
||||||
|
const childrenExiting = !children[0] && outgoingChildren[0];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
ref={linkRef(this, 'el')}
|
||||||
|
class={`${style.expander} ${childrenExiting ? style.childrenExiting : ''}`}
|
||||||
|
>
|
||||||
|
{children[0] ? children : outgoingChildren}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
9
src/components/expander/style.scss
Normal file
9
src/components/expander/style.scss
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
.expander {
|
||||||
|
transition: height 200ms ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.children-exiting {
|
||||||
|
& > * {
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
}
|
55
src/components/range/index.tsx
Normal file
55
src/components/range/index.tsx
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
import { h, Component } from 'preact';
|
||||||
|
import * as style from './style.scss';
|
||||||
|
import RangeInputElement from '../../custom-els/RangeInput';
|
||||||
|
import '../../custom-els/RangeInput';
|
||||||
|
import { linkRef, bind } from '../../lib/initial-util';
|
||||||
|
|
||||||
|
interface Props extends JSX.HTMLAttributes {}
|
||||||
|
interface State {}
|
||||||
|
|
||||||
|
export default class Range extends Component<Props, State> {
|
||||||
|
rangeWc?: RangeInputElement;
|
||||||
|
|
||||||
|
@bind
|
||||||
|
private onTextInput(event: Event) {
|
||||||
|
const input = event.target as HTMLInputElement;
|
||||||
|
this.rangeWc!.value = input.value;
|
||||||
|
const { onInput } = this.props;
|
||||||
|
if (onInput) onInput(event);
|
||||||
|
}
|
||||||
|
|
||||||
|
render(props: Props) {
|
||||||
|
const {
|
||||||
|
children,
|
||||||
|
...otherProps
|
||||||
|
} = props;
|
||||||
|
|
||||||
|
const {
|
||||||
|
value, min, max, step,
|
||||||
|
} = props;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<label class={style.range}>
|
||||||
|
<span class={style.labelText}>{children}</span>
|
||||||
|
{/* On interaction, Safari gives focus to the first element in the label, so the
|
||||||
|
<range-input> is deliberately first. */}
|
||||||
|
<div class={style.rangeWcContainer}>
|
||||||
|
<range-input
|
||||||
|
ref={linkRef(this, 'rangeWc')}
|
||||||
|
class={style.rangeWc}
|
||||||
|
{...otherProps}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<input
|
||||||
|
type="number"
|
||||||
|
class={style.textInput}
|
||||||
|
value={value}
|
||||||
|
min={min}
|
||||||
|
max={max}
|
||||||
|
step={step}
|
||||||
|
onInput={this.onTextInput}
|
||||||
|
/>
|
||||||
|
</label>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
55
src/components/range/style.scss
Normal file
55
src/components/range/style.scss
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
.range {
|
||||||
|
position: relative;
|
||||||
|
z-index: 0;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.label-text {
|
||||||
|
color: #fff; /* TEMP */
|
||||||
|
}
|
||||||
|
|
||||||
|
.range-wc-container {
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
|
grid-row: 2 / 3;
|
||||||
|
grid-column: 1 / 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.range-wc {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-input {
|
||||||
|
grid-row: 1 / 2;
|
||||||
|
grid-column: 2 / 3;
|
||||||
|
|
||||||
|
text-align: right;
|
||||||
|
background: transparent;
|
||||||
|
color: inherit;
|
||||||
|
font: inherit;
|
||||||
|
border: none;
|
||||||
|
padding: 2px 5px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
text-decoration: underline;
|
||||||
|
text-decoration-style: dotted;
|
||||||
|
text-underline-position: under;
|
||||||
|
width: 48px;
|
||||||
|
position: relative;
|
||||||
|
left: 5px;
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
background: #fff;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove the number controls
|
||||||
|
-moz-appearance: textfield;
|
||||||
|
|
||||||
|
&::-webkit-outer-spin-button,
|
||||||
|
&::-webkit-inner-spin-button {
|
||||||
|
-moz-appearance: none;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
20
src/components/select/index.tsx
Normal file
20
src/components/select/index.tsx
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
import { h, Component } from 'preact';
|
||||||
|
import * as style from './style.scss';
|
||||||
|
|
||||||
|
interface Props extends JSX.HTMLAttributes {
|
||||||
|
large?: boolean;
|
||||||
|
}
|
||||||
|
interface State {}
|
||||||
|
|
||||||
|
export default class Select extends Component<Props, State> {
|
||||||
|
render(props: Props) {
|
||||||
|
const { large, ...otherProps } = props;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div class={style.select}>
|
||||||
|
<select class={`${style.nativeSelect} ${large ? style.large : ''}`} {...otherProps}/>
|
||||||
|
<svg class={style.arrow} viewBox="0 0 10 5"><path d="M0 0l5 5 5-5z"/></svg>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
33
src/components/select/style.scss
Normal file
33
src/components/select/style.scss
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
.select {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.native-select {
|
||||||
|
background: #2f2f2f;
|
||||||
|
border-radius: 4px;
|
||||||
|
font: inherit;
|
||||||
|
padding: 4px 25px 4px 10px;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
-moz-appearance: none;
|
||||||
|
border: none;
|
||||||
|
color: #fff;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.arrow {
|
||||||
|
position: absolute;
|
||||||
|
right: 8px;
|
||||||
|
top: 50%;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
fill: #fff;
|
||||||
|
width: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.large {
|
||||||
|
padding: 10px 35px 10px 10px;
|
||||||
|
background: #151515;
|
||||||
|
|
||||||
|
& .arrow {
|
||||||
|
right: 13px;
|
||||||
|
}
|
||||||
|
}
|
@ -1,15 +1,19 @@
|
|||||||
import { bind } from '../../lib/initial-util';
|
import { bind } from '../../lib/initial-util';
|
||||||
import './styles.css';
|
import * as style from './styles.css';
|
||||||
|
|
||||||
const RETARGETED_EVENTS = ['focus', 'blur'];
|
const RETARGETED_EVENTS = ['focus', 'blur'];
|
||||||
const UPDATE_EVENTS = ['input', 'change'];
|
const UPDATE_EVENTS = ['input', 'change'];
|
||||||
const REFLECTED_PROPERTIES = ['name', 'min', 'max', 'step', 'value', 'disabled'];
|
const REFLECTED_PROPERTIES = ['name', 'min', 'max', 'step', 'value', 'disabled'];
|
||||||
const REFLECTED_ATTRIBUTES = ['name', 'min', 'max', 'step', 'value', 'disabled'];
|
const REFLECTED_ATTRIBUTES = ['name', 'min', 'max', 'step', 'value', 'disabled'];
|
||||||
|
|
||||||
|
function getPrescision(value: string): number {
|
||||||
|
const afterDecimal = value.split('.')[1];
|
||||||
|
return afterDecimal ? afterDecimal.length : 0;
|
||||||
|
}
|
||||||
|
|
||||||
class RangeInputElement extends HTMLElement {
|
class RangeInputElement extends HTMLElement {
|
||||||
private _input = document.createElement('input');
|
private _input: HTMLInputElement;
|
||||||
private _valueDisplayWrapper = document.createElement('div');
|
private _valueDisplay?: HTMLDivElement;
|
||||||
private _valueDisplay = document.createElement('span');
|
|
||||||
private _ignoreChange = false;
|
private _ignoreChange = false;
|
||||||
|
|
||||||
static get observedAttributes() {
|
static get observedAttributes() {
|
||||||
@ -18,7 +22,9 @@ class RangeInputElement extends HTMLElement {
|
|||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
|
this._input = document.createElement('input');
|
||||||
this._input.type = 'range';
|
this._input.type = 'range';
|
||||||
|
this._input.className = style.input;
|
||||||
|
|
||||||
for (const event of RETARGETED_EVENTS) {
|
for (const event of RETARGETED_EVENTS) {
|
||||||
this._input.addEventListener(event, this._retargetEvent, true);
|
this._input.addEventListener(event, this._retargetEvent, true);
|
||||||
@ -29,6 +35,18 @@ class RangeInputElement extends HTMLElement {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
connectedCallback() {
|
||||||
|
if (this.contains(this._input)) return;
|
||||||
|
this.innerHTML =
|
||||||
|
`<div class="${style.thumbWrapper}">` +
|
||||||
|
`<div class="${style.thumb}"></div>` +
|
||||||
|
`<div class="${style.valueDisplay}"></div>` +
|
||||||
|
'</div>';
|
||||||
|
|
||||||
|
this.insertBefore(this._input, this.firstChild);
|
||||||
|
this._valueDisplay = this.querySelector('.' + style.valueDisplay) as HTMLDivElement;
|
||||||
|
}
|
||||||
|
|
||||||
get labelPrecision(): string {
|
get labelPrecision(): string {
|
||||||
return this.getAttribute('label-precision') || '';
|
return this.getAttribute('label-precision') || '';
|
||||||
}
|
}
|
||||||
@ -37,14 +55,6 @@ class RangeInputElement extends HTMLElement {
|
|||||||
this.setAttribute('label-precision', precision);
|
this.setAttribute('label-precision', precision);
|
||||||
}
|
}
|
||||||
|
|
||||||
connectedCallback() {
|
|
||||||
if (this._input.parentNode !== this) {
|
|
||||||
this.appendChild(this._input);
|
|
||||||
this._valueDisplayWrapper.appendChild(this._valueDisplay);
|
|
||||||
this.appendChild(this._valueDisplayWrapper);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
attributeChangedCallback(name: string, oldValue: string, newValue: string | null) {
|
attributeChangedCallback(name: string, oldValue: string, newValue: string | null) {
|
||||||
if (this._ignoreChange) return;
|
if (this._ignoreChange) return;
|
||||||
if (newValue === null) {
|
if (newValue === null) {
|
||||||
@ -65,15 +75,15 @@ class RangeInputElement extends HTMLElement {
|
|||||||
|
|
||||||
@bind
|
@bind
|
||||||
private _update() {
|
private _update() {
|
||||||
const value = parseFloat(this.value || '0');
|
const value = Number(this.value) || 0;
|
||||||
const min = parseFloat(this.min || '0');
|
const min = Number(this.min) || 0;
|
||||||
const max = parseFloat(this.max || '100');
|
const max = Number(this.max) || 100;
|
||||||
const labelPrecision = parseFloat(this.labelPrecision || '0');
|
const labelPrecision = Number(this.labelPrecision) || getPrescision(this.step) || 0;
|
||||||
const percent = 100 * (value - min) / (max - min);
|
const percent = 100 * (value - min) / (max - min);
|
||||||
const displayValue = labelPrecision ? value.toPrecision(labelPrecision) :
|
const displayValue = labelPrecision ? value.toFixed(labelPrecision) :
|
||||||
Math.round(value).toString();
|
Math.round(value).toString();
|
||||||
|
|
||||||
this._valueDisplay.textContent = displayValue;
|
this._valueDisplay!.textContent = displayValue;
|
||||||
this.style.setProperty('--value-percent', percent + '%');
|
this.style.setProperty('--value-percent', percent + '%');
|
||||||
this.style.setProperty('--value-width', '' + displayValue.length);
|
this.style.setProperty('--value-width', '' + displayValue.length);
|
||||||
}
|
}
|
||||||
|
6
src/custom-els/RangeInput/missing-types.d.ts
vendored
6
src/custom-els/RangeInput/missing-types.d.ts
vendored
@ -1,9 +1,5 @@
|
|||||||
declare namespace JSX {
|
declare namespace JSX {
|
||||||
interface RangeInputAttributes extends HTMLAttributes {
|
|
||||||
reversed?: boolean;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface IntrinsicElements {
|
interface IntrinsicElements {
|
||||||
'range-input': RangeInputAttributes;
|
'range-input': HTMLAttributes;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -14,41 +14,6 @@ range-input[disabled] {
|
|||||||
filter: grayscale(1);
|
filter: grayscale(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Reversed Variant */
|
|
||||||
range-input[reversed] input,
|
|
||||||
range-input[reversed]::before,
|
|
||||||
range-input[reversed] > div {
|
|
||||||
transform: scaleX(-1);
|
|
||||||
}
|
|
||||||
range-input[reversed] > div > span {
|
|
||||||
transform: scaleX(-1) scale(.2);
|
|
||||||
}
|
|
||||||
range-input[reversed] input:focus + div span {
|
|
||||||
transform: scaleX(-1) scale(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
range-input input {
|
|
||||||
position: relative;
|
|
||||||
flex: 1;
|
|
||||||
vertical-align: middle;
|
|
||||||
width: 100%;
|
|
||||||
padding: 0 !important;
|
|
||||||
margin: 0 !important;
|
|
||||||
background: none;
|
|
||||||
appearance: none;
|
|
||||||
-webkit-appearance: none;
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
range-input input::-webkit-slider-runnable-track,
|
|
||||||
range-input input::-moz-range-track,
|
|
||||||
range-input input::-ms-track {
|
|
||||||
appearance: none;
|
|
||||||
-ms-appearance: none;
|
|
||||||
-moz-appearance: none;
|
|
||||||
-webkit-appearance: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
range-input::before {
|
range-input::before {
|
||||||
content: '';
|
content: '';
|
||||||
display: block;
|
display: block;
|
||||||
@ -57,32 +22,33 @@ range-input::before {
|
|||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 2px;
|
height: 2px;
|
||||||
outline: none;
|
|
||||||
border: none;
|
|
||||||
background: #eee;
|
|
||||||
border-radius: 1px;
|
border-radius: 1px;
|
||||||
box-shadow: 0 -.5px 0 rgba(0,0,0,0.3), inset 0 .5px 0 rgba(255,255,255,0.2), 0 .5px 0 rgba(255,255,255,0.3);
|
box-shadow: 0 -.5px 0 rgba(0,0,0,0.3), inset 0 .5px 0 rgba(255,255,255,0.2), 0 .5px 0 rgba(255,255,255,0.3);
|
||||||
background: linear-gradient(#34B9EB, #218ab1) 0/ var(--value-percent, 0%) 100% no-repeat #eee;
|
background: linear-gradient(#34B9EB, #218ab1) 0/ var(--value-percent, 0%) 100% no-repeat #eee;
|
||||||
}
|
}
|
||||||
|
|
||||||
range-input input::-webkit-slider-thumb {
|
.input {
|
||||||
appearance: none;
|
position: relative;
|
||||||
-webkit-appearance: none;
|
width: 100%;
|
||||||
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10"><circle cx="5" cy="5" r="1" fill="#5D509E" /></svg>') center no-repeat #34B9EB;
|
padding: 0;
|
||||||
box-sizing: content-box;
|
margin: 0;
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.thumb {
|
||||||
|
pointer-events: none;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 3px;
|
||||||
|
left: var(--value-percent, 0%);
|
||||||
|
margin-left: -6px;
|
||||||
|
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10"><circle cx="5" cy="5" r="1" fill="%235D509E" /></svg>') center no-repeat #34B9EB;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
width: 12px;
|
width: 12px;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
border: none;
|
|
||||||
box-shadow: 0 0.5px 2px rgba(0,0,0,0.3);
|
box-shadow: 0 0.5px 2px rgba(0,0,0,0.3);
|
||||||
outline: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
range-input input:focus::-webkit-slider-thumb {
|
.thumb-wrapper {
|
||||||
box-shadow: 0 1px 3px rgba(0,0,0,0.5);
|
|
||||||
}
|
|
||||||
|
|
||||||
range-input > div {
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 6px;
|
left: 6px;
|
||||||
right: 6px;
|
right: 6px;
|
||||||
@ -91,8 +57,8 @@ range-input > div {
|
|||||||
overflow: visible;
|
overflow: visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
range-input > div > span {
|
.value-display {
|
||||||
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="62" fill="none"><path fill="#34B9EB" d="M27.3 27.3C25 29.6 17 35.8 17 43v3c0 3 2.5 5 3.2 5.8a6 6 0 1 1-8.5 0C12.6 51 15 49 15 46v-3c0-7.2-8-13.4-10.3-15.7A16 16 0 0 1 16 0a16 16 0 0 1 11.3 27.3z"/><circle cx="16" cy="56" r="1" fill="#5D509E"/></svg>') top center no-repeat;
|
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="62" fill="none"><path fill="%2334B9EB" d="M27.3 27.3C25 29.6 17 35.8 17 43v3c0 3 2.5 5 3.2 5.8a6 6 0 1 1-8.5 0C12.6 51 15 49 15 46v-3c0-7.2-8-13.4-10.3-15.7A16 16 0 0 1 16 0a16 16 0 0 1 11.3 27.3z"/><circle cx="16" cy="56" r="1" fill="%235D509E"/></svg>') top center no-repeat;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
left: var(--value-percent, 0%);
|
left: var(--value-percent, 0%);
|
||||||
@ -111,12 +77,18 @@ range-input > div > span {
|
|||||||
font-size: calc(100% - var(--value-width, 3) / 5 * .2em);
|
font-size: calc(100% - var(--value-width, 3) / 5 * .2em);
|
||||||
text-overflow: clip;
|
text-overflow: clip;
|
||||||
text-shadow: 0 -.5px 0 rgba(0,0,0,0.4);
|
text-shadow: 0 -.5px 0 rgba(0,0,0,0.4);
|
||||||
transition: transform 200ms ease, opacity 200ms ease;
|
transition: all 200ms ease;
|
||||||
|
transition-property: opacity, transform;
|
||||||
will-change: transform;
|
will-change: transform;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
range-input input:focus + div span {
|
|
||||||
|
.input:active + .thumb-wrapper .value-display {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
transform: scale(1);
|
transform: scale(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.input:active + .thumb-wrapper .thumb {
|
||||||
|
box-shadow: 0 1px 3px rgba(0,0,0,0.5);
|
||||||
|
}
|
||||||
|
@ -8,7 +8,7 @@ const Icon = (props: JSX.HTMLAttributes) => (
|
|||||||
|
|
||||||
export const DownloadIcon = (props: JSX.HTMLAttributes) => (
|
export const DownloadIcon = (props: JSX.HTMLAttributes) => (
|
||||||
<Icon {...props}>
|
<Icon {...props}>
|
||||||
<path d="M19.35 10.04A7.49 7.49 0 0 0 12 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 0 0 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z" />
|
<path d="M19 12v7H5v-7H3v7c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2v-7h-2zm-6 .7l2.6-2.6 1.4 1.4-5 5-5-5 1.4-1.4 2.6 2.6V3h2z"/>
|
||||||
</Icon>
|
</Icon>
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -29,3 +29,15 @@ export const RemoveIcon = (props: JSX.HTMLAttributes) => (
|
|||||||
<path d="M19 13H5v-2h14v2z"/>
|
<path d="M19 13H5v-2h14v2z"/>
|
||||||
</Icon>
|
</Icon>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
export const UncheckedIcon = (props: JSX.HTMLAttributes) => (
|
||||||
|
<Icon {...props}>
|
||||||
|
<path d="M21.3 2.7v18.6H2.7V2.7h18.6m0-2.7H2.7A2.7 2.7 0 0 0 0 2.7v18.6A2.7 2.7 0 0 0 2.7 24h18.6a2.7 2.7 0 0 0 2.7-2.7V2.7A2.7 2.7 0 0 0 21.3 0z"/>
|
||||||
|
</Icon>
|
||||||
|
);
|
||||||
|
|
||||||
|
export const CheckedIcon = (props: JSX.HTMLAttributes) => (
|
||||||
|
<Icon {...props}>
|
||||||
|
<path d="M21.3 0H2.7A2.7 2.7 0 0 0 0 2.7v18.6A2.7 2.7 0 0 0 2.7 24h18.6a2.7 2.7 0 0 0 2.7-2.7V2.7A2.7 2.7 0 0 0 21.3 0zm-12 18.7L2.7 12l1.8-1.9L9.3 15 19.5 4.8l1.8 1.9z"/>
|
||||||
|
</Icon>
|
||||||
|
);
|
||||||
|
@ -203,25 +203,40 @@ export function nativeResize(
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param field An HTMLInputElement, but the casting is done here to tidy up onChange.
|
* @param field An HTMLInputElement, but the casting is done here to tidy up onChange.
|
||||||
|
* @param defaultVal Value to return if 'field' doesn't exist.
|
||||||
*/
|
*/
|
||||||
export function inputFieldValueAsNumber(field: any): number {
|
export function inputFieldValueAsNumber(field: any, defaultVal: number = 0): number {
|
||||||
return Number((field as HTMLInputElement).value);
|
if (!field) return defaultVal;
|
||||||
|
return Number(inputFieldValue(field));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param field An HTMLInputElement, but the casting is done here to tidy up onChange.
|
* @param field An HTMLInputElement, but the casting is done here to tidy up onChange.
|
||||||
|
* @param defaultVal Value to return if 'field' doesn't exist.
|
||||||
*/
|
*/
|
||||||
export function inputFieldCheckedAsNumber(field: any): number {
|
export function inputFieldCheckedAsNumber(field: any, defaultVal: number = 0): number {
|
||||||
|
if (!field) return defaultVal;
|
||||||
return Number(inputFieldChecked(field));
|
return Number(inputFieldChecked(field));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param field An HTMLInputElement, but the casting is done here to tidy up onChange.
|
* @param field An HTMLInputElement, but the casting is done here to tidy up onChange.
|
||||||
|
* @param defaultVal Value to return if 'field' doesn't exist.
|
||||||
*/
|
*/
|
||||||
export function inputFieldChecked(field: any): boolean {
|
export function inputFieldChecked(field: any, defaultVal: boolean = false): boolean {
|
||||||
|
if (!field) return defaultVal;
|
||||||
return (field as HTMLInputElement).checked;
|
return (field as HTMLInputElement).checked;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param field An HTMLInputElement, but the casting is done here to tidy up onChange.
|
||||||
|
* @param defaultVal Value to return if 'field' doesn't exist.
|
||||||
|
*/
|
||||||
|
export function inputFieldValue(field: any, defaultVal: string = ''): string {
|
||||||
|
if (!field) return defaultVal;
|
||||||
|
return (field as HTMLInputElement).value;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a promise that resolves when the user types the konami code.
|
* Creates a promise that resolves when the user types the konami code.
|
||||||
*/
|
*/
|
||||||
|
@ -1,7 +1,3 @@
|
|||||||
/*
|
|
||||||
Note: These styles are temporary. They will be replaced before going live.
|
|
||||||
*/
|
|
||||||
|
|
||||||
@import './reset.scss';
|
@import './reset.scss';
|
||||||
|
|
||||||
html, body {
|
html, body {
|
||||||
|
@ -1,7 +1,3 @@
|
|||||||
/*
|
|
||||||
Note: These styles are temporary. They will be replaced before going live.
|
|
||||||
*/
|
|
||||||
|
|
||||||
button, a, img, input, select, textarea {
|
button, a, img, input, select, textarea {
|
||||||
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
||||||
}
|
}
|
||||||
|
@ -23,7 +23,8 @@ module.exports = function (_, env) {
|
|||||||
const nodeModules = path.join(__dirname, 'node_modules');
|
const nodeModules = path.join(__dirname, 'node_modules');
|
||||||
const componentStyleDirs = [
|
const componentStyleDirs = [
|
||||||
path.join(__dirname, 'src/components'),
|
path.join(__dirname, 'src/components'),
|
||||||
path.join(__dirname, 'src/codecs')
|
path.join(__dirname, 'src/codecs'),
|
||||||
|
path.join(__dirname, 'src/custom-els'),
|
||||||
];
|
];
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
Reference in New Issue
Block a user