element-web/src/components/views/elements/Slider.tsx

147 lines
4.7 KiB
TypeScript
Raw Normal View History

2020-04-16 12:33:23 +03:00
/*
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.
*/
2020-04-21 12:46:33 +03:00
import * as React from 'react';
2020-04-16 12:33:23 +03:00
2020-04-28 15:59:00 +03:00
interface IProps {
// A callback for the selected value
onSelectionChange: (value: number) => void;
2020-04-21 12:46:33 +03:00
2020-04-28 15:59:00 +03:00
// The current value of the slider
value: number;
2020-04-21 12:46:33 +03:00
2020-04-28 15:59:00 +03:00
// The range and values of the slider
// Currently only supports an ascending, constant interval range
values: number[];
2020-04-21 12:46:33 +03:00
2020-04-28 15:59:00 +03:00
// A function for formatting the the values
displayFunc: (value: number) => string;
2020-04-21 12:46:33 +03:00
2020-04-28 15:59:00 +03:00
// Whether the slider is disabled
disabled: boolean;
2020-04-21 12:46:33 +03:00
}
2020-04-22 12:19:17 +03:00
export default class Slider extends React.Component<IProps> {
// offset is a terrible inverse approximation.
2020-04-23 16:39:11 +03:00
// 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.
2020-04-28 16:09:54 +03:00
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);
2020-05-06 19:25:54 +03:00
}, 0);
// Off the left
2020-04-23 16:39:11 +03:00
if (closest === 0) {
return 0;
}
// Off the right
2020-04-23 16:39:11 +03:00
if (closest === values.length) {
return 100;
}
2020-04-23 16:39:11 +03:00
// Now
const closestLessValue = values[closest - 1];
const closestGreaterValue = values[closest];
const intervalWidth = 1 / (values.length - 1);
2020-06-18 16:32:43 +03:00
const linearInterpolation = (value - closestLessValue) / (closestGreaterValue - closestLessValue);
2020-06-18 16:32:43 +03:00
return 100 * (closest - 1 + linearInterpolation) * intervalWidth;
2020-04-21 12:15:37 +03:00
}
2020-04-21 12:46:33 +03:00
render(): React.ReactNode {
const dots = this.props.values.map(v =>
2020-04-21 18:18:25 +03:00
<Dot active={v <= this.props.value}
label={this.props.displayFunc(v)}
2020-04-22 13:53:29 +03:00
onClick={this.props.disabled ? () => {} : () => this.props.onSelectionChange(v)}
2020-04-16 12:33:23 +03:00
key={v}
2020-04-22 13:53:29 +03:00
disabled={this.props.disabled}
2020-04-16 12:33:23 +03:00
/>);
2020-04-28 16:09:54 +03:00
let selection = null;
2020-04-28 17:48:54 +03:00
if (!this.props.disabled) {
2020-04-28 16:09:54 +03:00
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 + "%)"}} />
2020-06-18 16:53:12 +03:00
<hr style={{width: offset + "%"}} />
2020-06-18 16:32:43 +03:00
</div>;
2020-04-28 16:09:54 +03:00
}
2020-04-16 12:33:23 +03:00
2020-04-21 13:01:52 +03:00
return <div className="mx_Slider">
2020-04-16 12:33:23 +03:00
<div>
2020-04-21 13:01:52 +03:00
<div className="mx_Slider_bar">
2020-05-20 15:07:33 +03:00
<hr onClick={this.props.disabled ? () => {} : this.onClick.bind(this)}/>
2020-04-28 16:09:54 +03:00
{ selection }
2020-04-16 12:33:23 +03:00
</div>
2020-04-21 13:01:52 +03:00
<div className="mx_Slider_dotContainer">
2020-04-16 12:33:23 +03:00
{dots}
</div>
</div>
</div>;
2020-04-16 12:33:23 +03:00
}
2020-05-20 15:07:33 +03:00
onClick(event: React.MouseEvent) {
const width = (event.target as HTMLElement).clientWidth;
// nativeEvent is safe to use because https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/offsetX
// is supported by all modern browsers
const relativeClick = (event.nativeEvent.offsetX / width);
const nearestValue = this.props.values[Math.round(relativeClick * (this.props.values.length - 1))];
this.props.onSelectionChange(nearestValue);
}
2020-04-16 12:33:23 +03:00
}
2020-04-28 16:09:54 +03:00
interface IDotProps {
2020-04-22 12:19:17 +03:00
// Callback for behavior onclick
2020-06-18 16:32:43 +03:00
onClick: () => void;
2020-04-21 12:46:33 +03:00
// Whether the dot should appear active
2020-06-18 16:32:43 +03:00
active: boolean;
2020-04-21 12:46:33 +03:00
// The label on the dot
2020-06-18 16:32:43 +03:00
label: string;
2020-04-22 13:53:29 +03:00
// Whether the slider is disabled
disabled: boolean;
2020-04-21 12:46:33 +03:00
}
2020-04-28 16:09:54 +03:00
class Dot extends React.PureComponent<IDotProps> {
2020-04-21 12:46:33 +03:00
render(): React.ReactNode {
2020-06-18 16:32:43 +03:00
let className = "mx_Slider_dot";
2020-04-22 13:53:29 +03:00
if (!this.props.disabled && this.props.active) {
className += " mx_Slider_dotActive";
}
2020-04-16 12:33:23 +03:00
2020-04-21 13:01:52 +03:00
return <span onClick={this.props.onClick} className="mx_Slider_dotValue">
2020-04-16 12:33:23 +03:00
<div className={className} />
2020-04-22 13:36:23 +03:00
<div className="mx_Slider_labelContainer">
<div className="mx_Slider_label">
2020-04-22 13:53:29 +03:00
{this.props.label}
</div>
2020-04-22 13:36:23 +03:00
</div>
</span>;
2020-04-16 12:33:23 +03:00
}
}