mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-07-08 01:31:00 +08:00
Update task render
This commit is contained in:
85
components/Progress.tsx
Normal file
85
components/Progress.tsx
Normal file
@@ -0,0 +1,85 @@
|
||||
import {
|
||||
Component,
|
||||
ComponentChildren,
|
||||
ContextType,
|
||||
createContext,
|
||||
} from "preact";
|
||||
|
||||
type CtxProps = {
|
||||
min: number;
|
||||
max: number;
|
||||
striped: boolean;
|
||||
animated: boolean;
|
||||
};
|
||||
|
||||
const PCtx = createContext<CtxProps | null>(null);
|
||||
|
||||
type BarProps = {
|
||||
value: number;
|
||||
striped?: boolean;
|
||||
animated?: boolean;
|
||||
class?: string;
|
||||
};
|
||||
|
||||
class ProgressBar extends Component<BarProps> {
|
||||
static contextType = PCtx;
|
||||
declare context: ContextType<typeof PCtx>;
|
||||
render() {
|
||||
let cls = "progress-bar";
|
||||
const striped = this.props.striped === undefined
|
||||
? this.context?.striped
|
||||
: this.props.striped;
|
||||
const animated = this.props.animated === undefined
|
||||
? this.context?.animated
|
||||
: this.props.animated;
|
||||
if (striped || animated) cls += " progress-bar-striped";
|
||||
if (animated) cls += " progress-bar-animated";
|
||||
if (this.props.class) cls += " " + this.props.class;
|
||||
const max = this.context?.max || 100;
|
||||
const min = this.context?.min || 0;
|
||||
const v = this.props.value;
|
||||
const style = `width: ${(v - min) / (max - min) * 100}%;`;
|
||||
return (
|
||||
<div
|
||||
class={cls}
|
||||
style={style}
|
||||
role="progressbar"
|
||||
aria-valuenow={v}
|
||||
aria-valuemin={min}
|
||||
aria-valuemax={max}
|
||||
/>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
type Props = {
|
||||
/**@default {0} */
|
||||
min?: number;
|
||||
/**@default {100} */
|
||||
max?: number;
|
||||
/**@default {false} */
|
||||
striped?: boolean;
|
||||
/**@default {false} */
|
||||
animated?: boolean;
|
||||
children: ComponentChildren;
|
||||
};
|
||||
|
||||
export default class Progress extends Component<Props> {
|
||||
static readonly Bar = ProgressBar;
|
||||
render() {
|
||||
return (
|
||||
<div class="progress">
|
||||
<PCtx.Provider
|
||||
value={{
|
||||
min: this.props.min || 0,
|
||||
max: this.props.max || 100,
|
||||
striped: this.props.striped || false,
|
||||
animated: this.props.animated || false,
|
||||
}}
|
||||
>
|
||||
{this.props.children}
|
||||
</PCtx.Provider>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user