├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── App.js ├── App.test.js ├── README.md ├── app.json ├── babel.config.js ├── components ├── AuthenticationScreen.js ├── CreateLinkScreen.js ├── HackerNews.js ├── HeaderActions.js ├── HeaderIconButton.js ├── HeaderTitle.js ├── Link.js ├── LinkList.js ├── LinkListContainer.js ├── LinksScreen.js ├── RootStackNavigator.js ├── SearchScreen.js └── StyledTextInput.js ├── constants ├── Colors.js └── Graphcool.js ├── package.json ├── project.graphcool ├── utils ├── getNavigationParam.js ├── timeDifferenceForDate.js └── url.js ├── webtasks ├── cron │ ├── README.md │ └── index.js └── votes │ ├── .gitignore │ ├── README.md │ ├── index.js │ ├── package.json │ └── yarn.lock └── yarn.lock /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .expo/ 3 | npm-debug.* 4 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/App.js -------------------------------------------------------------------------------- /App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/App.test.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/AuthenticationScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/components/AuthenticationScreen.js -------------------------------------------------------------------------------- /components/CreateLinkScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/components/CreateLinkScreen.js -------------------------------------------------------------------------------- /components/HackerNews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/components/HackerNews.js -------------------------------------------------------------------------------- /components/HeaderActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/components/HeaderActions.js -------------------------------------------------------------------------------- /components/HeaderIconButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/components/HeaderIconButton.js -------------------------------------------------------------------------------- /components/HeaderTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/components/HeaderTitle.js -------------------------------------------------------------------------------- /components/Link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/components/Link.js -------------------------------------------------------------------------------- /components/LinkList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/components/LinkList.js -------------------------------------------------------------------------------- /components/LinkListContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/components/LinkListContainer.js -------------------------------------------------------------------------------- /components/LinksScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/components/LinksScreen.js -------------------------------------------------------------------------------- /components/RootStackNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/components/RootStackNavigator.js -------------------------------------------------------------------------------- /components/SearchScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/components/SearchScreen.js -------------------------------------------------------------------------------- /components/StyledTextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/components/StyledTextInput.js -------------------------------------------------------------------------------- /constants/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/constants/Colors.js -------------------------------------------------------------------------------- /constants/Graphcool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/constants/Graphcool.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/package.json -------------------------------------------------------------------------------- /project.graphcool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/project.graphcool -------------------------------------------------------------------------------- /utils/getNavigationParam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/utils/getNavigationParam.js -------------------------------------------------------------------------------- /utils/timeDifferenceForDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/utils/timeDifferenceForDate.js -------------------------------------------------------------------------------- /utils/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/utils/url.js -------------------------------------------------------------------------------- /webtasks/cron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/webtasks/cron/README.md -------------------------------------------------------------------------------- /webtasks/cron/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/webtasks/cron/index.js -------------------------------------------------------------------------------- /webtasks/votes/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /webtasks/votes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/webtasks/votes/README.md -------------------------------------------------------------------------------- /webtasks/votes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/webtasks/votes/index.js -------------------------------------------------------------------------------- /webtasks/votes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/webtasks/votes/package.json -------------------------------------------------------------------------------- /webtasks/votes/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/webtasks/votes/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvatne/hackernews-react-native-apollo/HEAD/yarn.lock --------------------------------------------------------------------------------