mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-15 22:21:31 +03:00
137 lines
4.2 KiB
TypeScript
137 lines
4.2 KiB
TypeScript
/*
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
import * as React from 'react';
|
|
|
|
interface IProps {
|
|
// A callback for the selected value
|
|
onSelectionChange: (value: number) => void;
|
|
|
|
// The current value of the slider
|
|
value: number;
|
|
|
|
// The range and values of the slider
|
|
// Currently only supports an ascending, constant interval range
|
|
values: number[];
|
|
|
|
// A function for formatting the the values
|
|
displayFunc: (value: number) => string;
|
|
|
|
// Whether the slider is disabled
|
|
disabled: boolean;
|
|
}
|
|
|
|
export default class Slider extends React.Component<IProps> {
|
|
// offset is a terrible inverse approximation.
|
|
// if the values represents some function f(x) = y where x is the
|
|
// index of the array and y = values[x] then offset(f, y) = x
|
|
// s.t f(x) = y.
|
|
// it assumes a monotonic function and interpolates linearly between
|
|
// y values.
|
|
// Offset is used for finding the location of a value on a
|
|
// non linear slider.
|
|
private offset(values: number[], value: number): number {
|
|
// the index of the first number greater than value.
|
|
let closest = values.reduce((prev, curr) => {
|
|
return (value > curr ? prev + 1 : prev);
|
|
}, 0);
|
|
|
|
// Off the left
|
|
if (closest === 0) {
|
|
return 0;
|
|
}
|
|
|
|
// Off the right
|
|
if (closest === values.length) {
|
|
return 100;
|
|
}
|
|
|
|
// Now
|
|
const closestLessValue = values[closest - 1];
|
|
const closestGreaterValue = values[closest];
|
|
|
|
const intervalWidth = 1 / (values.length - 1);
|
|
|
|
const linearInterpolation = (value - closestLessValue) / (closestGreaterValue - closestLessValue)
|
|
|
|
return 100 * (closest - 1 + linearInterpolation) * intervalWidth
|
|
|
|
}
|
|
|
|
render(): React.ReactNode {
|
|
const dots = this.props.values.map(v =>
|
|
<Dot active={v <= this.props.value}
|
|
label={this.props.displayFunc(v)}
|
|
onClick={this.props.disabled ? () => {} : () => this.props.onSelectionChange(v)}
|
|
key={v}
|
|
disabled={this.props.disabled}
|
|
/>);
|
|
|
|
let selection = null;
|
|
|
|
if (!this.props.disabled) {
|
|
const offset = this.offset(this.props.values, this.props.value);
|
|
selection = <div className="mx_Slider_selection">
|
|
<div className="mx_Slider_selectionDot" style={{left: "calc(-0.55em + " + offset + "%)"}} />
|
|
<hr style={{width: offset + "%"}} />
|
|
</div>
|
|
}
|
|
|
|
return <div className="mx_Slider">
|
|
<div>
|
|
<div className="mx_Slider_bar">
|
|
<hr />
|
|
{ selection }
|
|
</div>
|
|
<div className="mx_Slider_dotContainer">
|
|
{dots}
|
|
</div>
|
|
</div>
|
|
</div>;
|
|
}
|
|
}
|
|
|
|
interface IDotProps {
|
|
// Callback for behavior onclick
|
|
onClick: () => void,
|
|
|
|
// Whether the dot should appear active
|
|
active: boolean,
|
|
|
|
// The label on the dot
|
|
label: string,
|
|
|
|
// Whether the slider is disabled
|
|
disabled: boolean;
|
|
}
|
|
|
|
class Dot extends React.PureComponent<IDotProps> {
|
|
render(): React.ReactNode {
|
|
let className = "mx_Slider_dot"
|
|
if (!this.props.disabled && this.props.active) {
|
|
className += " mx_Slider_dotActive";
|
|
}
|
|
|
|
return <span onClick={this.props.onClick} className="mx_Slider_dotValue">
|
|
<div className={className} />
|
|
<div className="mx_Slider_labelContainer">
|
|
<div className="mx_Slider_label">
|
|
{this.props.label}
|
|
</div>
|
|
</div>
|
|
</span>;
|
|
}
|
|
}
|