-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathPlaySpeed.tsx
62 lines (57 loc) · 1.64 KB
/
PlaySpeed.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import classnames from 'classnames'
import { Dropdown } from '~/components'
import { PV } from '~/resources'
type Props = {
ariaDescription?: string
ariaLabel?: string
ariaPressed?: boolean
className?: string
linkUrl?: string
onChange?: any
size: 'small' | 'medium' | 'large'
playSpeed: number
children?: any
}
export const PlaySpeed = ({ ariaDescription, ariaLabel, ariaPressed, className, onChange, playSpeed, size }: Props) => {
const wrapperClass = classnames(className, 'player-option-button', size)
const DropdownOptions = PV.Player.speedOptions
return (
<div className={wrapperClass}>
<Dropdown
aria-label={ariaLabel}
aria-pressed={ariaPressed}
options={DropdownOptions}
dropdownAriaLabel={ariaDescription}
dropdownPosition={'top'}
dropdownWidthClass={
'width-small'
// 'width-medium'
// 'width-large'
// |
// 'width-full'
}
// faIcon?: IconProp
// hasClipEditButtons?: boolean
hideCaret={true}
inlineElementStyle={false}
// isLabelUrl?: boolean
onChange={(a) => {
let newSpeed = null
if (a[0].value === -1) {
const promptInput = prompt('Please enter your play speed', '3.12')
// TODO: add validation
newSpeed = parseFloat(promptInput)
onChange(newSpeed)
} else {
newSpeed = a[0].value
onChange(newSpeed)
}
}}
// options: any[]
outlineStyle={false}
// selectedKey?: string | number
text={playSpeed + 'x'}
/>
</div>
)
}