/* 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 { // 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. const 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 => {} : () => 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 =

; } return

{} : this.onClick.bind(this)} /> { selection }
{dots}
; } 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); } } 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 { render(): React.ReactNode { let className = "mx_Slider_dot"; if (!this.props.disabled && this.props.active) { className += " mx_Slider_dotActive"; } return
{this.props.label}
; } }