mirror of
https://github.com/sstent/aicyclingcoach-go.git
synced 2026-01-30 11:02:27 +00:00
sync
This commit is contained in:
24
node_modules/react-leaflet/lib/VideoOverlay.js
generated
vendored
Normal file
24
node_modules/react-leaflet/lib/VideoOverlay.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
import { createElementObject, createLayerComponent, extendContext, updateMediaOverlay } from '@react-leaflet/core';
|
||||
import { VideoOverlay as LeafletVideoOverlay } from 'leaflet';
|
||||
export const VideoOverlay = createLayerComponent(function createVideoOverlay({ bounds , url , ...options }, ctx) {
|
||||
const overlay = new LeafletVideoOverlay(url, bounds, options);
|
||||
if (options.play === true) {
|
||||
overlay.getElement()?.play();
|
||||
}
|
||||
return createElementObject(overlay, extendContext(ctx, {
|
||||
overlayContainer: overlay
|
||||
}));
|
||||
}, function updateVideoOverlay(overlay, props, prevProps) {
|
||||
updateMediaOverlay(overlay, props, prevProps);
|
||||
if (typeof props.url === 'string' && props.url !== prevProps.url) {
|
||||
overlay.setUrl(props.url);
|
||||
}
|
||||
const video = overlay.getElement();
|
||||
if (video != null) {
|
||||
if (props.play === true && !prevProps.play) {
|
||||
video.play();
|
||||
} else if (!props.play && prevProps.play === true) {
|
||||
video.pause();
|
||||
}
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user