2021-02-19 08:07:53 -07:00
|
|
|
import * as React from 'react';
|
2023-09-25 04:57:03 -06:00
|
|
|
import { useRef, useState, useCallback, useMemo } from 'react';
|
2023-07-21 16:15:11 -06:00
|
|
|
import { StyleSheet, Text, View } from 'react-native';
|
2021-05-14 03:52:28 -06:00
|
|
|
import { PinchGestureHandler, PinchGestureHandlerGestureEvent, TapGestureHandler } from 'react-native-gesture-handler';
|
2023-09-21 03:20:33 -06:00
|
|
|
import { CameraRuntimeError, PhotoFile, useCameraDevice, useCameraFormat, useFrameProcessor, VideoFile } from 'react-native-vision-camera';
|
2023-08-21 04:50:14 -06:00
|
|
|
import { Camera } from 'react-native-vision-camera';
|
2023-09-25 04:57:03 -06:00
|
|
|
import { CONTENT_SPACING, MAX_ZOOM_FACTOR, SAFE_AREA_PADDING, SCREEN_HEIGHT, SCREEN_WIDTH } from './Constants';
|
2021-02-19 11:06:28 -07:00
|
|
|
import Reanimated, { Extrapolate, interpolate, useAnimatedGestureHandler, useAnimatedProps, useSharedValue } from 'react-native-reanimated';
|
|
|
|
import { useEffect } from 'react';
|
|
|
|
import { useIsForeground } from './hooks/useIsForeground';
|
|
|
|
import { StatusBarBlurBackground } from './views/StatusBarBlurBackground';
|
|
|
|
import { CaptureButton } from './views/CaptureButton';
|
2021-05-11 04:59:05 -06:00
|
|
|
import { PressableOpacity } from 'react-native-pressable-opacity';
|
2021-02-19 11:06:28 -07:00
|
|
|
import MaterialIcon from 'react-native-vector-icons/MaterialCommunityIcons';
|
|
|
|
import IonIcon from 'react-native-vector-icons/Ionicons';
|
2021-10-05 04:22:14 -06:00
|
|
|
import type { Routes } from './Routes';
|
|
|
|
import type { NativeStackScreenProps } from '@react-navigation/native-stack';
|
|
|
|
import { useIsFocused } from '@react-navigation/core';
|
2023-07-21 16:15:11 -06:00
|
|
|
import { examplePlugin } from './frame-processors/ExamplePlugin';
|
2021-02-19 08:07:53 -07:00
|
|
|
|
2021-05-06 06:11:55 -06:00
|
|
|
const ReanimatedCamera = Reanimated.createAnimatedComponent(Camera);
|
2021-02-19 11:06:28 -07:00
|
|
|
Reanimated.addWhitelistedNativeProps({
|
|
|
|
zoom: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
const SCALE_FULL_ZOOM = 3;
|
|
|
|
const BUTTON_SIZE = 40;
|
|
|
|
|
2021-10-05 04:22:14 -06:00
|
|
|
type Props = NativeStackScreenProps<Routes, 'CameraPage'>;
|
|
|
|
export function CameraPage({ navigation }: Props): React.ReactElement {
|
2021-02-19 11:06:28 -07:00
|
|
|
const camera = useRef<Camera>(null);
|
|
|
|
const [isCameraInitialized, setIsCameraInitialized] = useState(false);
|
2021-10-05 04:22:14 -06:00
|
|
|
const [hasMicrophonePermission, setHasMicrophonePermission] = useState(false);
|
2021-02-19 11:06:28 -07:00
|
|
|
const zoom = useSharedValue(0);
|
|
|
|
const isPressingButton = useSharedValue(false);
|
|
|
|
|
|
|
|
// check if camera page is active
|
2021-10-05 04:22:14 -06:00
|
|
|
const isFocussed = useIsFocused();
|
2021-02-19 11:06:28 -07:00
|
|
|
const isForeground = useIsForeground();
|
|
|
|
const isActive = isFocussed && isForeground;
|
|
|
|
|
2021-02-20 09:07:10 -07:00
|
|
|
const [cameraPosition, setCameraPosition] = useState<'front' | 'back'>('back');
|
2021-02-19 11:06:28 -07:00
|
|
|
const [enableHdr, setEnableHdr] = useState(false);
|
2021-02-20 09:07:10 -07:00
|
|
|
const [flash, setFlash] = useState<'off' | 'on'>('off');
|
2021-02-19 11:06:28 -07:00
|
|
|
const [enableNightMode, setEnableNightMode] = useState(false);
|
|
|
|
|
|
|
|
// camera format settings
|
2023-09-23 03:24:15 -06:00
|
|
|
const device = useCameraDevice(cameraPosition, {
|
|
|
|
physicalDevices: ['ultra-wide-angle-camera', 'wide-angle-camera', 'telephoto-camera'],
|
2023-09-21 03:20:33 -06:00
|
|
|
});
|
2021-02-19 11:06:28 -07:00
|
|
|
|
2023-09-25 04:57:03 -06:00
|
|
|
const [targetFps, setTargetFps] = useState(60);
|
|
|
|
|
|
|
|
const screenAspectRatio = SCREEN_HEIGHT / SCREEN_WIDTH;
|
2023-09-23 03:24:15 -06:00
|
|
|
const format = useCameraFormat(device, [
|
2023-09-25 04:57:03 -06:00
|
|
|
{ fps: targetFps },
|
|
|
|
{ videoAspectRatio: screenAspectRatio },
|
|
|
|
{ videoResolution: 'max' },
|
|
|
|
{ photoAspectRatio: screenAspectRatio },
|
|
|
|
{ photoResolution: 'max' },
|
2023-09-23 03:24:15 -06:00
|
|
|
]);
|
|
|
|
|
2023-09-21 03:20:33 -06:00
|
|
|
const fps = Math.min(format?.maxFps ?? 1, targetFps);
|
2021-02-19 11:06:28 -07:00
|
|
|
|
|
|
|
const supportsFlash = device?.hasFlash ?? false;
|
2023-09-21 03:20:33 -06:00
|
|
|
const supportsHdr = format?.supportsPhotoHDR;
|
2023-09-25 04:57:03 -06:00
|
|
|
const supports60Fps = useMemo(() => device?.formats.some((f) => f.maxFps >= 60), [device?.formats]);
|
2023-09-21 03:20:33 -06:00
|
|
|
const canToggleNightMode = device?.supportsLowLightBoost ?? false;
|
2021-02-19 11:06:28 -07:00
|
|
|
|
|
|
|
//#region Animated Zoom
|
2021-06-07 02:46:53 -06:00
|
|
|
// This just maps the zoom factor to a percentage value.
|
|
|
|
// so e.g. for [min, neutr., max] values [1, 2, 128] this would result in [0, 0.0081, 1]
|
2021-07-29 03:44:22 -06:00
|
|
|
const minZoom = device?.minZoom ?? 1;
|
|
|
|
const maxZoom = Math.min(device?.maxZoom ?? 1, MAX_ZOOM_FACTOR);
|
2021-06-07 02:46:53 -06:00
|
|
|
|
|
|
|
const cameraAnimatedProps = useAnimatedProps(() => {
|
2021-07-29 03:44:22 -06:00
|
|
|
const z = Math.max(Math.min(zoom.value, maxZoom), minZoom);
|
2021-06-07 02:46:53 -06:00
|
|
|
return {
|
2021-07-29 03:44:22 -06:00
|
|
|
zoom: z,
|
2021-06-07 02:46:53 -06:00
|
|
|
};
|
2021-07-29 03:44:22 -06:00
|
|
|
}, [maxZoom, minZoom, zoom]);
|
2021-02-19 11:06:28 -07:00
|
|
|
//#endregion
|
|
|
|
|
|
|
|
//#region Callbacks
|
|
|
|
const setIsPressingButton = useCallback(
|
|
|
|
(_isPressingButton: boolean) => {
|
|
|
|
isPressingButton.value = _isPressingButton;
|
|
|
|
},
|
2021-02-20 09:07:10 -07:00
|
|
|
[isPressingButton],
|
2021-02-19 11:06:28 -07:00
|
|
|
);
|
|
|
|
// Camera callbacks
|
|
|
|
const onError = useCallback((error: CameraRuntimeError) => {
|
|
|
|
console.error(error);
|
|
|
|
}, []);
|
|
|
|
const onInitialized = useCallback(() => {
|
2021-02-20 09:07:10 -07:00
|
|
|
console.log('Camera initialized!');
|
2021-02-19 11:06:28 -07:00
|
|
|
setIsCameraInitialized(true);
|
|
|
|
}, []);
|
2021-10-05 04:22:14 -06:00
|
|
|
const onMediaCaptured = useCallback(
|
|
|
|
(media: PhotoFile | VideoFile, type: 'photo' | 'video') => {
|
|
|
|
console.log(`Media captured! ${JSON.stringify(media)}`);
|
|
|
|
navigation.navigate('MediaPage', {
|
|
|
|
path: media.path,
|
|
|
|
type: type,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
[navigation],
|
|
|
|
);
|
2021-02-19 11:06:28 -07:00
|
|
|
const onFlipCameraPressed = useCallback(() => {
|
2021-02-20 09:07:10 -07:00
|
|
|
setCameraPosition((p) => (p === 'back' ? 'front' : 'back'));
|
2021-02-19 11:06:28 -07:00
|
|
|
}, []);
|
|
|
|
const onFlashPressed = useCallback(() => {
|
2021-02-20 09:07:10 -07:00
|
|
|
setFlash((f) => (f === 'off' ? 'on' : 'off'));
|
2021-02-19 11:06:28 -07:00
|
|
|
}, []);
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
//#region Tap Gesture
|
2021-05-14 03:52:28 -06:00
|
|
|
const onDoubleTap = useCallback(() => {
|
|
|
|
onFlipCameraPressed();
|
2021-06-11 13:06:19 -06:00
|
|
|
}, [onFlipCameraPressed]);
|
2021-02-19 11:06:28 -07:00
|
|
|
//#endregion
|
|
|
|
|
|
|
|
//#region Effects
|
2021-07-29 03:44:22 -06:00
|
|
|
const neutralZoom = device?.neutralZoom ?? 1;
|
2021-02-19 11:06:28 -07:00
|
|
|
useEffect(() => {
|
|
|
|
// Run everytime the neutralZoomScaled value changes. (reset zoom when device changes)
|
2021-07-29 03:44:22 -06:00
|
|
|
zoom.value = neutralZoom;
|
|
|
|
}, [neutralZoom, zoom]);
|
2021-10-05 04:22:14 -06:00
|
|
|
|
|
|
|
useEffect(() => {
|
2023-08-21 04:50:14 -06:00
|
|
|
Camera.getMicrophonePermissionStatus().then((status) => setHasMicrophonePermission(status === 'granted'));
|
2021-10-05 04:22:14 -06:00
|
|
|
}, []);
|
2021-02-19 11:06:28 -07:00
|
|
|
//#endregion
|
|
|
|
|
|
|
|
//#region Pinch to Zoom Gesture
|
|
|
|
// The gesture handler maps the linear pinch gesture (0 - 1) to an exponential curve since a camera's zoom
|
|
|
|
// function does not appear linear to the user. (aka zoom 0.1 -> 0.2 does not look equal in difference as 0.8 -> 0.9)
|
|
|
|
const onPinchGesture = useAnimatedGestureHandler<PinchGestureHandlerGestureEvent, { startZoom?: number }>({
|
|
|
|
onStart: (_, context) => {
|
|
|
|
context.startZoom = zoom.value;
|
|
|
|
},
|
|
|
|
onActive: (event, context) => {
|
|
|
|
// we're trying to map the scale gesture to a linear zoom here
|
|
|
|
const startZoom = context.startZoom ?? 0;
|
2021-02-20 09:07:10 -07:00
|
|
|
const scale = interpolate(event.scale, [1 - 1 / SCALE_FULL_ZOOM, 1, SCALE_FULL_ZOOM], [-1, 0, 1], Extrapolate.CLAMP);
|
2021-07-29 03:44:22 -06:00
|
|
|
zoom.value = interpolate(scale, [-1, 0, 1], [minZoom, startZoom, maxZoom], Extrapolate.CLAMP);
|
2021-02-19 11:06:28 -07:00
|
|
|
},
|
|
|
|
});
|
|
|
|
//#endregion
|
|
|
|
|
2021-02-19 12:05:02 -07:00
|
|
|
if (device != null && format != null) {
|
2021-02-20 09:07:10 -07:00
|
|
|
console.log(
|
|
|
|
`Re-rendering camera page with ${isActive ? 'active' : 'inactive'} camera. ` +
|
2023-08-21 04:50:14 -06:00
|
|
|
`Device: "${device.name}" (${format.photoWidth}x${format.photoHeight} photo / ${format.videoWidth}x${format.videoHeight} video @ ${fps}fps)`,
|
2021-02-20 09:07:10 -07:00
|
|
|
);
|
2021-02-19 12:05:02 -07:00
|
|
|
} else {
|
2021-02-20 09:07:10 -07:00
|
|
|
console.log('re-rendering camera page without active camera');
|
2021-02-19 12:05:02 -07:00
|
|
|
}
|
|
|
|
|
2023-09-01 04:20:17 -06:00
|
|
|
const frameProcessor = useFrameProcessor((frame) => {
|
2023-07-21 16:15:11 -06:00
|
|
|
'worklet';
|
2023-02-21 07:00:48 -07:00
|
|
|
|
2023-09-01 07:07:16 -06:00
|
|
|
console.log(`${frame.timestamp}: ${frame.width}x${frame.height} ${frame.pixelFormat} Frame (${frame.orientation})`);
|
2023-09-01 04:20:17 -06:00
|
|
|
examplePlugin(frame);
|
2023-07-21 16:15:11 -06:00
|
|
|
}, []);
|
2021-05-06 06:11:55 -06:00
|
|
|
|
2021-02-19 08:07:53 -07:00
|
|
|
return (
|
|
|
|
<View style={styles.container}>
|
2021-02-19 11:06:28 -07:00
|
|
|
{device != null && (
|
|
|
|
<PinchGestureHandler onGestureEvent={onPinchGesture} enabled={isActive}>
|
|
|
|
<Reanimated.View style={StyleSheet.absoluteFill}>
|
2021-05-14 03:52:28 -06:00
|
|
|
<TapGestureHandler onEnded={onDoubleTap} numberOfTaps={2}>
|
2021-02-19 12:05:02 -07:00
|
|
|
<ReanimatedCamera
|
|
|
|
ref={camera}
|
|
|
|
style={StyleSheet.absoluteFill}
|
|
|
|
device={device}
|
|
|
|
format={format}
|
|
|
|
fps={fps}
|
|
|
|
hdr={enableHdr}
|
2021-02-20 09:07:10 -07:00
|
|
|
lowLightBoost={device.supportsLowLightBoost && enableNightMode}
|
2021-02-19 12:05:02 -07:00
|
|
|
isActive={isActive}
|
|
|
|
onInitialized={onInitialized}
|
|
|
|
onError={onError}
|
|
|
|
enableZoomGesture={false}
|
|
|
|
animatedProps={cameraAnimatedProps}
|
2023-02-21 07:00:48 -07:00
|
|
|
enableFpsGraph={true}
|
2022-01-04 08:57:40 -07:00
|
|
|
orientation="portrait"
|
2023-08-21 04:50:14 -06:00
|
|
|
photo={true}
|
|
|
|
video={true}
|
|
|
|
audio={hasMicrophonePermission}
|
2023-07-21 16:15:11 -06:00
|
|
|
frameProcessor={frameProcessor}
|
2021-02-19 12:05:02 -07:00
|
|
|
/>
|
2021-02-19 11:06:28 -07:00
|
|
|
</TapGestureHandler>
|
|
|
|
</Reanimated.View>
|
|
|
|
</PinchGestureHandler>
|
|
|
|
)}
|
|
|
|
|
|
|
|
<CaptureButton
|
|
|
|
style={styles.captureButton}
|
|
|
|
camera={camera}
|
|
|
|
onMediaCaptured={onMediaCaptured}
|
|
|
|
cameraZoom={zoom}
|
2021-07-29 03:44:22 -06:00
|
|
|
minZoom={minZoom}
|
|
|
|
maxZoom={maxZoom}
|
2021-02-20 09:07:10 -07:00
|
|
|
flash={supportsFlash ? flash : 'off'}
|
2021-02-19 11:06:28 -07:00
|
|
|
enabled={isCameraInitialized && isActive}
|
|
|
|
setIsPressingButton={setIsPressingButton}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<StatusBarBlurBackground />
|
|
|
|
|
|
|
|
<View style={styles.rightButtonRow}>
|
2023-09-21 03:20:33 -06:00
|
|
|
<PressableOpacity style={styles.button} onPress={onFlipCameraPressed} disabledOpacity={0.4}>
|
|
|
|
<IonIcon name="camera-reverse" color="white" size={24} />
|
|
|
|
</PressableOpacity>
|
2021-02-19 11:06:28 -07:00
|
|
|
{supportsFlash && (
|
2021-02-20 09:07:10 -07:00
|
|
|
<PressableOpacity style={styles.button} onPress={onFlashPressed} disabledOpacity={0.4}>
|
|
|
|
<IonIcon name={flash === 'on' ? 'flash' : 'flash-off'} color="white" size={24} />
|
2021-02-19 11:06:28 -07:00
|
|
|
</PressableOpacity>
|
|
|
|
)}
|
2021-05-11 04:59:05 -06:00
|
|
|
{supports60Fps && (
|
2023-09-21 03:20:33 -06:00
|
|
|
<PressableOpacity style={styles.button} onPress={() => setTargetFps((t) => (t === 30 ? 60 : 30))}>
|
2023-09-21 08:29:46 -06:00
|
|
|
<Text style={styles.text}>{`${targetFps}\nFPS`}</Text>
|
2021-02-19 11:06:28 -07:00
|
|
|
</PressableOpacity>
|
|
|
|
)}
|
|
|
|
{supportsHdr && (
|
2021-05-11 04:59:05 -06:00
|
|
|
<PressableOpacity style={styles.button} onPress={() => setEnableHdr((h) => !h)}>
|
2021-02-20 09:07:10 -07:00
|
|
|
<MaterialIcon name={enableHdr ? 'hdr' : 'hdr-off'} color="white" size={24} />
|
2021-02-19 11:06:28 -07:00
|
|
|
</PressableOpacity>
|
|
|
|
)}
|
2021-05-11 04:59:05 -06:00
|
|
|
{canToggleNightMode && (
|
|
|
|
<PressableOpacity style={styles.button} onPress={() => setEnableNightMode(!enableNightMode)} disabledOpacity={0.4}>
|
|
|
|
<IonIcon name={enableNightMode ? 'moon' : 'moon-outline'} color="white" size={24} />
|
|
|
|
</PressableOpacity>
|
|
|
|
)}
|
2021-02-19 11:06:28 -07:00
|
|
|
</View>
|
2021-02-19 08:07:53 -07:00
|
|
|
</View>
|
|
|
|
);
|
2021-10-05 04:22:14 -06:00
|
|
|
}
|
2021-02-19 08:07:53 -07:00
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
container: {
|
|
|
|
flex: 1,
|
2021-02-20 09:07:10 -07:00
|
|
|
backgroundColor: 'black',
|
2021-02-19 11:06:28 -07:00
|
|
|
},
|
|
|
|
captureButton: {
|
2021-02-20 09:07:10 -07:00
|
|
|
position: 'absolute',
|
|
|
|
alignSelf: 'center',
|
|
|
|
bottom: SAFE_AREA_PADDING.paddingBottom,
|
2021-02-19 11:06:28 -07:00
|
|
|
},
|
|
|
|
button: {
|
2021-02-20 09:42:37 -07:00
|
|
|
marginBottom: CONTENT_SPACING,
|
2021-02-19 11:06:28 -07:00
|
|
|
width: BUTTON_SIZE,
|
|
|
|
height: BUTTON_SIZE,
|
|
|
|
borderRadius: BUTTON_SIZE / 2,
|
2021-02-20 09:07:10 -07:00
|
|
|
backgroundColor: 'rgba(140, 140, 140, 0.3)',
|
|
|
|
justifyContent: 'center',
|
|
|
|
alignItems: 'center',
|
2021-02-19 08:07:53 -07:00
|
|
|
},
|
2021-02-19 11:06:28 -07:00
|
|
|
rightButtonRow: {
|
2021-02-20 09:07:10 -07:00
|
|
|
position: 'absolute',
|
2021-02-20 09:42:37 -07:00
|
|
|
right: SAFE_AREA_PADDING.paddingRight,
|
2021-02-20 09:07:10 -07:00
|
|
|
top: SAFE_AREA_PADDING.paddingTop,
|
2021-02-19 08:07:53 -07:00
|
|
|
},
|
2021-05-11 04:59:05 -06:00
|
|
|
text: {
|
|
|
|
color: 'white',
|
|
|
|
fontSize: 11,
|
|
|
|
fontWeight: 'bold',
|
|
|
|
textAlign: 'center',
|
|
|
|
},
|
2021-02-19 08:07:53 -07:00
|
|
|
});
|