.circleci
.github
app
chewy
controllers
helpers
javascript
fonts
images
mastodon
actions
components
__tests__
account.js
attachment_list.js
autosuggest_emoji.js
autosuggest_textarea.js
avatar.js
avatar_overlay.js
button.js
collapsable.js
column.js
column_back_button.js
column_back_button_slim.js
column_header.js
display_name.js
domain.js
dropdown_menu.js
extended_video_player.js
icon_button.js
intersection_observer_article.js
load_gap.js
load_more.js
loading_indicator.js
media_gallery.js
missing_indicator.js
modal_root.js
permalink.js
relative_timestamp.js
scrollable_list.js
setting_text.js
status.js
status_action_bar.js
status_content.js
status_list.js
containers
features
locales
middleware
reducers
selectors
service_worker
storage
store
utils
.gitkeep
api.js
base_polyfills.js
compare_id.js
extra_polyfills.js
initial_state.js
is_mobile.js
link_header.js
load_polyfills.js
main.js
performance.js
ready.js
rtl.js
scroll.js
settings.js
stream.js
test_setup.js
uuid.js
packs
styles
lib
mailers
models
policies
presenters
serializers
services
validators
views
workers
bin
config
db
docs
lib
log
nanobox
public
spec
streaming
vendor
.babelrc
.buildpacks
.codeclimate.yml
.dockerignore
.editorconfig
.env.nanobox
.env.production.sample
.env.test
.env.vagrant
.eslintignore
.eslintrc.yml
.foreman
.gitattributes
.gitignore
.haml-lint.yml
.nanoignore
.nvmrc
.postcssrc.yml
.profile
.rspec
.rubocop.yml
.ruby-version
.scss-lint.yml
.slugignore
.yarnclean
AUTHORS.md
Aptfile
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Capfile
Dockerfile
Gemfile
Gemfile.lock
LICENSE
Procfile
Procfile.dev
README.md
Rakefile
Vagrantfile
app.json
boxfile.yml
config.ru
docker-compose.yml
jest.config.js
package.json
scalingo.json
yarn.lock
* Improved media modal ImageLoader: Impliment pinch zoom by CSS `transform: scale(X)` ImageLoader: Impliment panning by CSS `overflow: scroll` ImageLoader: Larger image MediaModal: Larger close button MediaModal: Close the modal by swiping vertically MediaModal: Show/hide close button and right/left navigation on tapping image MediaModal: Change the `pointer-event` CSS prpp to get more blank space to close the modal ImageLoader: Zoom/reset zoom on double tap MediaModal: disable vertical swiping while horizontally swiped ImageLoader: prevent propagating touchmove event to MediaModal MediaModal: Adjust size and potision of buttons ImageLoader: Adjust scroll potision on pinch zoom * Remove "swipe to close" and "double tap to zoom" features * remove unused prop and functions removed `onScroll` prop and `handleScroll` func in ImageLoader * separate zoom functionary to ZoomableImage component adjust styling of ImageLoader add styling for ZoomableImage * adjust size and potision of close button of media modal * Fix for gif video add `onClick` prop to ExtendedVideoPlayer specify `onClick` prop to video tag for switching nav of `MediaModal` add `.video-modal` class to scss to separate styling for `VideoModal` * fix styling for centering specify height of `ZoomableImage` by pixel clean styling for `ImageLoader` * fix lint errors * small fix * fixed designated parts
63 lines
1.3 KiB
JavaScript
63 lines
1.3 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
export default class ExtendedVideoPlayer extends React.PureComponent {
|
|
|
|
static propTypes = {
|
|
src: PropTypes.string.isRequired,
|
|
alt: PropTypes.string,
|
|
width: PropTypes.number,
|
|
height: PropTypes.number,
|
|
time: PropTypes.number,
|
|
controls: PropTypes.bool.isRequired,
|
|
muted: PropTypes.bool.isRequired,
|
|
onClick: PropTypes.func,
|
|
};
|
|
|
|
handleLoadedData = () => {
|
|
if (this.props.time) {
|
|
this.video.currentTime = this.props.time;
|
|
}
|
|
}
|
|
|
|
componentDidMount () {
|
|
this.video.addEventListener('loadeddata', this.handleLoadedData);
|
|
}
|
|
|
|
componentWillUnmount () {
|
|
this.video.removeEventListener('loadeddata', this.handleLoadedData);
|
|
}
|
|
|
|
setRef = (c) => {
|
|
this.video = c;
|
|
}
|
|
|
|
handleClick = e => {
|
|
e.stopPropagation();
|
|
const handler = this.props.onClick;
|
|
if (handler) handler();
|
|
}
|
|
|
|
render () {
|
|
const { src, muted, controls, alt } = this.props;
|
|
|
|
return (
|
|
<div className='extended-video-player'>
|
|
<video
|
|
ref={this.setRef}
|
|
src={src}
|
|
autoPlay
|
|
role='button'
|
|
tabIndex='0'
|
|
aria-label={alt}
|
|
muted={muted}
|
|
controls={controls}
|
|
loop={!controls}
|
|
onClick={this.handleClick}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|