Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import React from 'react';
import { StyleSheet } from 'react-native';
import { Bubble } from 'react-native-gifted-chat';
import { ThemeStatic } from '../../../theme';
import posed, { Transition } from 'react-native-pose';
const TransitionBubble = posed.View({
enter: { opacity: 1, x: 0 },
exit: { opacity: 0.5, x: ({ offset }) => offset }
});
const CustomBubble: React.FC = bubbleProps => {
// @ts-ignore
const { user: { _id: authorId }, currentMessage: { user: { _id: currentId } } } = bubbleProps;
const offset = authorId === currentId ? 20 : -20;
return (
import React from 'react';
import { StyleSheet, Text, View, Animated } from 'react-native';
import posed, { Transition } from 'react-native-pose';
const Box = posed.View({
exit: {
x: ({ delta }) => delta * 100 + 'vw',
transition: { duration: 3000 }
},
preEnter: { x: ({ delta }) => -delta * 100 + 'vw' },
enter: { rotate: '45deg', x: 0, transition: { duration: 3000 } }
});
export default class App extends React.Component {
state = { show: false };
componentDidMount() {
setInterval(
() =>
this.setState({
show: !this.state.show
import React from "react";
import theme from "../theme";
import { SubHeader, Paragraph, IconButton } from "../ui";
import posed from "react-native-pose";
import { TouchableWithoutFeedback, View } from "react-native";
import universalHaptic from "../haptic";
import * as Haptic from "expo-haptics";
import {
hiddenAlerts,
hide,
hideMultipleAlerts,
isNewUser,
} from "./alertstore";
import { sortBy } from "lodash";
const PopsUp = posed.View({
full: { height: 380, paddingTop: 18, paddingBottom: 18 },
peak: {
height: 156,
paddingTop: 18,
paddingBottom: 18,
transition: { type: "spring", stiffness: 150 },
},
hidden: { height: 0, paddingTop: 0, paddingBottom: 0 },
});
interface AlertViewProps {
title: string;
body: string;
onHide: () => void;
}
export const newPopsUp = ({ fullHeight, hiddenHeight, popUpScale }) =>
posed.View({
peak: {
height:
Platform.OS === "ios" ? fullHeight * popUpScale : fullHeight * 0.6,
transition: { type: "spring", duration: 200 },
},
peakNoBounce: {
height:
Platform.OS === "ios" ? fullHeight * popUpScale : fullHeight * 0.6,
transition: { duration: 0, ease: "easeOut" },
},
full: {
height: fullHeight,
transition: { type: "spring", stiffness: 150 },
},
hiddenWiggle: {
height: hiddenHeight * 1,
import { useLazyQuery } from '@apollo/react-hooks';
import React, { useContext, useEffect, useState } from 'react';
import { StyleSheet, View } from 'react-native';
import SearchUsersBanner from '../../../assets/svg/search-users.svg';
import { AppContext } from '../../context';
import { QUERY_POSTS, QUERY_SEARCH_USERS } from '../../graphql/query';
import { AnimatedSearchBar, ExploreScreenPlaceholder, Header, SearchUsersPlaceholder, SvgBanner } from '../../layout';
import { ThemeColors } from '../../types/theme';
import ExploreGrid from './components/ExploreGrid';
import UserSearchResults from './components/UserSearchResults';
import posed, { Transition } from 'react-native-pose';
const FadeView = posed.View({
enter: { opacity: 1 },
exit: { opacity: 0.25 }
});
const ExploreScreen: React.FC = () => {
const { theme } = useContext(AppContext);
const [userSearch, setUserSearch] = useState('');
const [isSearchFocused, setIsSearchFocused] = useState(false);
const [searchResults, setSearchResults] = useState([]);
const [searchUsersQuery, {
data: searchUsersQueryData,
loading: searchUsersQueryLoading,
called: searchUsersQueryCalled,
error: searchUsersQueryError
}] = useLazyQuery(QUERY_SEARCH_USERS);