├── .babelrc ├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── app ├── actions │ └── stories.js ├── api │ └── index.js ├── app.global.styl ├── app.html ├── app.icns ├── app.png ├── components │ ├── ActionMenu.styl │ ├── CommentList.js │ ├── CommentList.styl │ ├── CommentsActionMenu.js │ ├── DisplayChooser.js │ ├── DisplayChooser.styl │ ├── KeyboardShortcutInfo.js │ ├── KeyboardShortcutInfo.styl │ ├── ListHeader.js │ ├── ListHeader.styl │ ├── Poll.js │ ├── Poll.styl │ ├── Resizer.js │ ├── Resizer.styl │ ├── ResourceChooser.js │ ├── ResourceChooser.styl │ ├── StoryActionMenu.js │ ├── StoryList.js │ ├── StoryList.styl │ ├── StoryListItem.js │ ├── StoryListItem.styl │ └── UserLink.js ├── containers │ ├── App.js │ ├── App.styl │ ├── AppPage.js │ ├── Comments.js │ ├── Comments.styl │ ├── DevTools.js │ ├── Website.js │ └── Website.styl ├── copy.icns ├── index.js ├── reducers │ ├── index.js │ └── stories.js ├── store │ ├── configureStore.development.js │ ├── configureStore.js │ └── configureStore.production.js └── utils │ └── .gitkeep ├── ideas.md ├── main.development.js ├── package.js ├── package.json ├── server.js ├── webpack.config.base.js ├── webpack.config.development.js ├── webpack.config.electron.js ├── webpack.config.node.js └── webpack.config.production.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/README.md -------------------------------------------------------------------------------- /app/actions/stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/actions/stories.js -------------------------------------------------------------------------------- /app/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/api/index.js -------------------------------------------------------------------------------- /app/app.global.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/app.global.styl -------------------------------------------------------------------------------- /app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/app.html -------------------------------------------------------------------------------- /app/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/app.icns -------------------------------------------------------------------------------- /app/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/app.png -------------------------------------------------------------------------------- /app/components/ActionMenu.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/ActionMenu.styl -------------------------------------------------------------------------------- /app/components/CommentList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/CommentList.js -------------------------------------------------------------------------------- /app/components/CommentList.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/CommentList.styl -------------------------------------------------------------------------------- /app/components/CommentsActionMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/CommentsActionMenu.js -------------------------------------------------------------------------------- /app/components/DisplayChooser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/DisplayChooser.js -------------------------------------------------------------------------------- /app/components/DisplayChooser.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/DisplayChooser.styl -------------------------------------------------------------------------------- /app/components/KeyboardShortcutInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/KeyboardShortcutInfo.js -------------------------------------------------------------------------------- /app/components/KeyboardShortcutInfo.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/KeyboardShortcutInfo.styl -------------------------------------------------------------------------------- /app/components/ListHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/ListHeader.js -------------------------------------------------------------------------------- /app/components/ListHeader.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/ListHeader.styl -------------------------------------------------------------------------------- /app/components/Poll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/Poll.js -------------------------------------------------------------------------------- /app/components/Poll.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/Poll.styl -------------------------------------------------------------------------------- /app/components/Resizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/Resizer.js -------------------------------------------------------------------------------- /app/components/Resizer.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/Resizer.styl -------------------------------------------------------------------------------- /app/components/ResourceChooser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/ResourceChooser.js -------------------------------------------------------------------------------- /app/components/ResourceChooser.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/ResourceChooser.styl -------------------------------------------------------------------------------- /app/components/StoryActionMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/StoryActionMenu.js -------------------------------------------------------------------------------- /app/components/StoryList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/StoryList.js -------------------------------------------------------------------------------- /app/components/StoryList.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/StoryList.styl -------------------------------------------------------------------------------- /app/components/StoryListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/StoryListItem.js -------------------------------------------------------------------------------- /app/components/StoryListItem.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/StoryListItem.styl -------------------------------------------------------------------------------- /app/components/UserLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/components/UserLink.js -------------------------------------------------------------------------------- /app/containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/containers/App.js -------------------------------------------------------------------------------- /app/containers/App.styl: -------------------------------------------------------------------------------- 1 | .resizing * 2 | -webkit-user-select: none 3 | -------------------------------------------------------------------------------- /app/containers/AppPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/containers/AppPage.js -------------------------------------------------------------------------------- /app/containers/Comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/containers/Comments.js -------------------------------------------------------------------------------- /app/containers/Comments.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/containers/Comments.styl -------------------------------------------------------------------------------- /app/containers/DevTools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/containers/DevTools.js -------------------------------------------------------------------------------- /app/containers/Website.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/containers/Website.js -------------------------------------------------------------------------------- /app/containers/Website.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/containers/Website.styl -------------------------------------------------------------------------------- /app/copy.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/copy.icns -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/index.js -------------------------------------------------------------------------------- /app/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/reducers/index.js -------------------------------------------------------------------------------- /app/reducers/stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/reducers/stories.js -------------------------------------------------------------------------------- /app/store/configureStore.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/store/configureStore.development.js -------------------------------------------------------------------------------- /app/store/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/store/configureStore.js -------------------------------------------------------------------------------- /app/store/configureStore.production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/app/store/configureStore.production.js -------------------------------------------------------------------------------- /app/utils/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/ideas.md -------------------------------------------------------------------------------- /main.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/main.development.js -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/package.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/server.js -------------------------------------------------------------------------------- /webpack.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/webpack.config.base.js -------------------------------------------------------------------------------- /webpack.config.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/webpack.config.development.js -------------------------------------------------------------------------------- /webpack.config.electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/webpack.config.electron.js -------------------------------------------------------------------------------- /webpack.config.node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/webpack.config.node.js -------------------------------------------------------------------------------- /webpack.config.production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/HNClient/HEAD/webpack.config.production.js --------------------------------------------------------------------------------