티스토리 뷰
안녕하세요 강정호입니다.
오늘은 앱에서 캐시를 사용하여 데이터를 로딩할 수 있도록 구현해보겠습니다.
github.com/apollographql/apollo-cache-persist
import { StatusBar } from 'expo-status-bar';
import React, { useState, useEffect } from 'react';
import { Ionicons } from "@expo/vector-icons";
import { Text, View } from 'react-native';
import AppLoading from "expo-app-loading";
import * as Font from "expo-font";
import { Asset } from 'expo-asset';
import { InMemoryCache } from "apollo-cache-inmemory";
import { persistCache } from "apollo3-cache-persist";
import ApolloClient from "apollo-boost";
import AsyncStorage from "@react-native-community/async-storage";
import apolloClientOptions from "./apollo";
import { ApolloProvider } from "react-apollo-hooks";
export default function App() {
const [loaded, setLoaded] = useState(false);
const [client, setClient] = useState(null);
const preLoad = async () => {
try{
await Font.loadAsync({
...Ionicons.font
});
await Asset.loadAsync([require("./assets/instagram_logo.png")]);
const cache = new InMemoryCache();
await persistCache({
cache,
storage: AsyncStorage
});
const client = new ApolloClient({
cache,
...apolloClientOptions
});
setLoaded(true);
setClient(client);
}catch(e){
console.log(e);
}
};
useEffect(() => {
preLoad();
}, []);
return loaded && client ? (
<ApolloProvider client={client}>
<View>
<Text>Open up App . start working with your app</Text>
</View>
</ApolloProvider>
) : (
<AppLoading />
);
}
'프로젝트' 카테고리의 다른 글
[인스타그램클론코딩] #11.1 AuthNavigation (React Navigation) (0) | 2021.01.31 |
---|---|
[인스타그램클론코딩] #10.6 AuthContext part One (useContext) (0) | 2021.01.30 |
[인스타그램클론코딩] #10.1 Preloading Assets (0) | 2021.01.24 |
[인스타그램클론코딩] #10.0 Creating the Project 프로젝트 환경설정 (0) | 2021.01.24 |
[인스타그램클론코딩] #8.2 Search Screen UI Part Two(styled-component 학습) (0) | 2021.01.12 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 열반스쿨기초반
- 내년은 빡세게!!
- 부동산공부
- 인셉션
- 개발자 회고
- 도커
- 관계대수
- 월급쟁이부자들
- 깃
- github
- front
- Inception
- pop_back
- Spring boot
- GIT
- 2023년
- 깃허브
- 항해플러스후기
- 항해솔직후기
- 항해플러스백엔드
- 월부닷컴
- 재테크공부
- docker
- resize
- ```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
- 파라메터
- Use case
- push_back
- 유즈케이스
- 폭포수
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함