forked from external-repos/squoosh
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:
@@ -92,7 +92,6 @@ export default class Processor {
|
||||
// If the worker is unused for 10 seconds, remove it to save memory.
|
||||
this._workerTimeoutId = self.setTimeout(
|
||||
() => {
|
||||
if (this._busy) throw Error("Worker shouldn't be busy");
|
||||
if (!this._worker) return;
|
||||
this._worker.terminate();
|
||||
this._worker = undefined;
|
||||
@@ -104,14 +103,14 @@ export default class Processor {
|
||||
/** Abort the current job, if any */
|
||||
abortCurrent() {
|
||||
if (!this._busy) return;
|
||||
if (!this._worker || !this._abortRejector) {
|
||||
throw Error("There must be a worker/rejector if it's busy");
|
||||
}
|
||||
if (!this._abortRejector) throw Error("There must be a rejector if it's busy");
|
||||
this._abortRejector(new DOMException('Aborted', 'AbortError'));
|
||||
this._worker.terminate();
|
||||
this._worker = undefined;
|
||||
this._abortRejector = undefined;
|
||||
this._busy = false;
|
||||
|
||||
if (!this._worker) return;
|
||||
this._worker.terminate();
|
||||
this._worker = undefined;
|
||||
}
|
||||
|
||||
// Off main thread jobs:
|
||||
|
||||
Reference in New Issue
Block a user