DocSpace-client/packages/asc-web-common/components/MediaViewer/sub-components/progress.js

135 lines
2.9 KiB
JavaScript
Raw Normal View History

import React from "react";
2020-04-25 18:03:13 +00:00
import styled from "styled-components";
2020-04-30 07:35:02 +00:00
import PropTypes from "prop-types";
2020-04-25 18:03:13 +00:00
const StyledProgress = styled.div`
display: inline-block;
.slider-container {
display: inline-block;
2020-04-25 18:03:13 +00:00
border-radius: 2px;
position: relative;
width: ${(props) => props.width}px;
height: 6px;
background: rgba(200, 200, 200, 0.2);
margin: 15px 0;
vertical-align: middle;
2020-04-25 18:03:13 +00:00
}
.fill {
2020-04-25 18:03:13 +00:00
cursor: pointer;
width: ${(props) => 100 * props.value}%;
position: absolute;
top: calc(50% - 3px);
height: 6px;
2020-04-25 18:03:13 +00:00
background: #d1d1d1;
border-radius: 2px;
}
input[type="range"] {
display: block;
overflow: visible;
background: transparent;
width: ${(props) => props.width}px;
height: 6px;
outline: none;
margin: 0;
-webkit-appearance: none;
position: relative;
cursor: pointer;
2020-04-25 18:03:13 +00:00
}
input[type="range"]::-webkit-slider-thumb {
position: relative;
appearance: none;
box-sizing: content-box;
width: 12px;
height: 12px;
margin-top: -3px;
background: white;
border-radius: 50%;
cursor: pointer;
2020-04-25 18:03:13 +00:00
}
input[type="range"]::-moz-range-thumb {
position: relative;
appearance: none;
box-sizing: content-box;
width: 12px;
height: 12px;
background: white;
border-radius: 50%;
margin-top: -3px;
cursor: pointer;
2020-04-25 18:03:13 +00:00
}
input[type="range"]::-ms-thumb {
position: relative;
appearance: none;
box-sizing: content-box;
width: 12px;
height: 12px;
background: white;
border-radius: 50%;
margin-top: -3px;
cursor: pointer;
2020-04-25 18:03:13 +00:00
}
input[type="range"]::-webkit-slider-runnable-track {
2020-04-25 18:03:13 +00:00
margin: 12px 0;
height: 6px;
border-radius: 2px;
cursor: pointer;
-webkit-appearance: none;
text-align: right;
pointer-events: none;
}
input[type="range"]::-moz-range-track {
2020-04-25 18:03:13 +00:00
margin: 12px 0;
height: 6px;
border-radius: 2px;
cursor: pointer;
-webkit-appearance: none;
text-align: right;
pointer-events: none;
}
input[type="range"]::-ms-track {
2020-04-25 18:03:13 +00:00
border-color: transparent;
color: transparent;
2020-04-25 18:03:13 +00:00
margin: 12px 0;
height: 6px;
border-radius: 2px;
cursor: pointer;
-webkit-appearance: none;
text-align: right;
pointer-events: none;
}
`;
const Progress = (props) => {
2020-04-30 07:35:02 +00:00
return (
<StyledProgress {...props}>
2020-04-30 07:35:02 +00:00
<div className="slider-container">
<div className="fill"></div>
<input
type="range"
min={0}
max={0.999999}
step="any"
2020-04-30 07:35:02 +00:00
value={props.value}
onMouseDown={props.handleSeekMouseDown}
2020-05-17 17:00:45 +00:00
onChange={(event) => props.handleSeekChange(event)}
2020-04-30 07:35:02 +00:00
onMouseUp={props.handleSeekMouseUp}
/>
</div>
</StyledProgress>
);
};
2020-04-25 18:03:13 +00:00
2020-04-30 07:35:02 +00:00
Progress.propTypes = {
value: PropTypes.number,
handleSeekMouseDown: PropTypes.func,
handleSeekChange: PropTypes.func,
handleSeekMouseUp: PropTypes.func,
};
2020-04-25 18:03:13 +00:00
export default Progress;