You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
3.1 KiB
TypeScript
93 lines
3.1 KiB
TypeScript
// Copyright (C) 2020 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import React, { useState } from 'react';
|
|
|
|
import { Row, Col } from 'antd/lib/grid';
|
|
import Icon from 'antd/lib/icon';
|
|
import Slider, { SliderValue } from 'antd/lib/slider';
|
|
import Tooltip from 'antd/lib/tooltip';
|
|
import InputNumber from 'antd/lib/input-number';
|
|
import Text from 'antd/lib/typography/Text';
|
|
|
|
interface Props {
|
|
startFrame: number;
|
|
stopFrame: number;
|
|
frameNumber: number;
|
|
inputFrameRef: React.RefObject<InputNumber>;
|
|
onSliderChange(value: SliderValue): void;
|
|
onInputChange(value: number | undefined): void;
|
|
onURLIconClick(): void;
|
|
}
|
|
|
|
function PlayerNavigation(props: Props): JSX.Element {
|
|
const {
|
|
startFrame,
|
|
stopFrame,
|
|
frameNumber,
|
|
inputFrameRef,
|
|
onSliderChange,
|
|
onInputChange,
|
|
onURLIconClick,
|
|
} = props;
|
|
|
|
const [frameInputValue, setFrameInputValue] = useState<number | undefined>(frameNumber);
|
|
|
|
return (
|
|
<>
|
|
<Col className='cvat-player-controls'>
|
|
<Row type='flex'>
|
|
<Col>
|
|
<Slider
|
|
className='cvat-player-slider'
|
|
min={startFrame}
|
|
max={stopFrame}
|
|
value={frameNumber || 0}
|
|
onChange={onSliderChange}
|
|
/>
|
|
</Col>
|
|
</Row>
|
|
<Row type='flex' justify='center'>
|
|
<Col className='cvat-player-filename-wrapper'>
|
|
<Tooltip title='filename.png'>
|
|
<Text type='secondary'>filename.png</Text>
|
|
</Tooltip>
|
|
</Col>
|
|
<Col offset={1}>
|
|
<Tooltip title='Create frame URL'>
|
|
<Icon className='cvat-player-frame-url-icon' type='link' onClick={onURLIconClick} />
|
|
</Tooltip>
|
|
</Col>
|
|
</Row>
|
|
</Col>
|
|
<Col>
|
|
<InputNumber
|
|
className='cvat-player-frame-selector'
|
|
type='number'
|
|
value={frameInputValue}
|
|
// https://stackoverflow.com/questions/38256332/in-react-whats-the-difference-between-onchange-and-oninput
|
|
onChange={(value: number | undefined) => {
|
|
setFrameInputValue(
|
|
Math.max(
|
|
Math.min(
|
|
Number(value), stopFrame,
|
|
), startFrame,
|
|
),
|
|
);
|
|
}}
|
|
onBlur={() => {
|
|
onInputChange(frameInputValue);
|
|
}}
|
|
onPressEnter={() => {
|
|
onInputChange(frameInputValue);
|
|
}}
|
|
ref={inputFrameRef}
|
|
/>
|
|
</Col>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default React.memo(PlayerNavigation);
|