/* eslint-disable @typescript-eslint/no-var-requires, @typescript-eslint/no-require-imports, import/no-commonjs */ import React from 'react'; import { Animated, Dimensions, View, StyleSheet } from 'react-native'; import PropTypes from 'prop-types'; import LottieView from 'lottie-react-native'; import { useAppThemeFromContext, mockTheme, useAssetFromTheme, } from '../../../util/theme'; const LOGO_SIZE = 175; const LOGO_PADDING = 25; const wordmarkLight = require('../../../animations/wordmark-light.json'); const wordmarkDark = require('../../../animations/wordmark-dark.json'); const createStyles = (colors: any) => StyleSheet.create({ main: { ...StyleSheet.absoluteFillObject, backgroundColor: colors.background.default, }, metamaskName: { marginTop: 10, height: 25, width: 170, alignSelf: 'center', alignItems: 'center', justifyContent: 'center', }, logoWrapper: { paddingTop: 50, marginTop: Dimensions.get('window').height / 2 - LOGO_SIZE / 2 - LOGO_PADDING, height: LOGO_SIZE + LOGO_PADDING * 2, }, foxAndName: { alignSelf: 'center', alignItems: 'center', justifyContent: 'center', }, animation: { width: 110, height: 110, alignSelf: 'center', alignItems: 'center', justifyContent: 'center', }, fox: { width: 110, height: 110, alignSelf: 'center', alignItems: 'center', justifyContent: 'center', }, }); const MetaMaskAnimation = ({ opacity, animation, animationName, onAnimationFinish, }: { opacity: number; animation: any; animationName: any; onAnimationFinish: () => void; }): JSX.Element => { const { colors } = useAppThemeFromContext() || mockTheme; const styles = createStyles(colors); const wordmark = useAssetFromTheme(wordmarkLight, wordmarkDark); return ( ); }; MetaMaskAnimation.propTypes = { opacity: PropTypes.object, animation: PropTypes.object, animationName: PropTypes.object, onAnimationFinish: PropTypes.func, }; export default MetaMaskAnimation;