/*
* Copyright (c) 2019 - 2020 Arnaud Vergnet.
*
* This file is part of Campus INSAT.
*
* Campus INSAT is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Campus INSAT is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Campus INSAT. If not, see .
*/
// @flow
import * as React from 'react';
import {IconButton, Text} from 'react-native-paper';
import ImageViewer from 'react-native-image-zoom-viewer';
import {StackNavigationProp} from '@react-navigation/stack';
import * as Animatable from 'react-native-animatable';
type PropsType = {
navigation: StackNavigationProp,
route: {params: {images: Array<{url: string}>}},
};
class ImageGalleryScreen extends React.Component {
images: Array<{url: string}>;
closeButtonRef: {current: null | Animatable.View};
indicatorRef: {current: null | Animatable.View};
controlsShown: boolean;
constructor(props: PropsType) {
super(props);
this.closeButtonRef = React.createRef();
this.indicatorRef = React.createRef();
this.controlsShown = true;
if (props.route.params != null) this.images = props.route.params.images;
}
goBack = () => {
const {navigation} = this.props;
navigation.goBack();
};
getRenderHeader = (): React.Node => {
return (
);
};
getRenderIndicator = (
currentIndex?: number,
allSize?: number,
): React.Node => {
if (currentIndex != null && allSize != null && allSize !== 1)
return (
{currentIndex}/{allSize}
);
return null;
};
onImageClick = () => {
if (this.controlsShown) this.hideControls();
else this.showControls();
this.controlsShown = !this.controlsShown;
};
hideControls() {
if (this.closeButtonRef.current != null)
this.closeButtonRef.current.fadeOutUp(200);
if (this.indicatorRef.current != null)
this.indicatorRef.current.fadeOutUp(300);
}
showControls() {
if (this.closeButtonRef.current != null)
this.closeButtonRef.current.fadeInDown(300);
if (this.indicatorRef.current != null)
this.indicatorRef.current.fadeInDown(400);
}
render(): React.Node {
return (
);
}
}
export default ImageGalleryScreen;