├── .dockerignore ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .flowconfig ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .prettierrc.yml ├── .stylelintrc ├── .travis.yml ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── app ├── main │ └── index.js ├── renderer │ ├── .eslintrc │ ├── actions │ │ ├── dataset.js │ │ ├── settings.js │ │ └── user.js │ ├── app.css │ ├── app.js │ ├── components │ │ ├── AddDataset.js │ │ ├── Dataset.js │ │ ├── DatasetDetail.js │ │ ├── DatasetList.js │ │ ├── LoggedIn.js │ │ ├── Login.js │ │ ├── Menu.js │ │ └── Settings.js │ ├── containers │ │ ├── AddDatasetPage.js │ │ ├── App.js │ │ ├── DatasetPage.js │ │ ├── DatasetsPage.js │ │ ├── LoggedInPage.js │ │ ├── LoginPage.js │ │ ├── Root.js │ │ └── SettingsPage.js │ ├── images │ │ └── app.png │ ├── index.html │ ├── middleware │ │ └── autosave.js │ ├── reducers │ │ ├── datasets.js │ │ ├── index.js │ │ ├── newDataset.js │ │ ├── settings.js │ │ └── user.js │ ├── routes.js │ └── store.js └── utils │ └── twitter.js ├── babel.config.js ├── dist-assets └── .gitkeep ├── electron-builder.yml ├── gulpfile.js ├── images ├── app.icns ├── app.ico ├── app.png ├── closed.png ├── osx-open.png └── screencap.png ├── init.js ├── package.json ├── tasks ├── assets.js ├── distribution.js ├── electron.js ├── hotreload.js ├── scripts.js └── watch.js ├── test └── .eslintrc └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | build 4 | .DS_Store 5 | *.log 6 | .vscode 7 | .env 8 | -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "stylelint-config-standard" 3 | } 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/README.md -------------------------------------------------------------------------------- /app/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/main/index.js -------------------------------------------------------------------------------- /app/renderer/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/.eslintrc -------------------------------------------------------------------------------- /app/renderer/actions/dataset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/actions/dataset.js -------------------------------------------------------------------------------- /app/renderer/actions/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/actions/settings.js -------------------------------------------------------------------------------- /app/renderer/actions/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/actions/user.js -------------------------------------------------------------------------------- /app/renderer/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/app.css -------------------------------------------------------------------------------- /app/renderer/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/app.js -------------------------------------------------------------------------------- /app/renderer/components/AddDataset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/components/AddDataset.js -------------------------------------------------------------------------------- /app/renderer/components/Dataset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/components/Dataset.js -------------------------------------------------------------------------------- /app/renderer/components/DatasetDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/components/DatasetDetail.js -------------------------------------------------------------------------------- /app/renderer/components/DatasetList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/components/DatasetList.js -------------------------------------------------------------------------------- /app/renderer/components/LoggedIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/components/LoggedIn.js -------------------------------------------------------------------------------- /app/renderer/components/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/components/Login.js -------------------------------------------------------------------------------- /app/renderer/components/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/components/Menu.js -------------------------------------------------------------------------------- /app/renderer/components/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/components/Settings.js -------------------------------------------------------------------------------- /app/renderer/containers/AddDatasetPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/containers/AddDatasetPage.js -------------------------------------------------------------------------------- /app/renderer/containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/containers/App.js -------------------------------------------------------------------------------- /app/renderer/containers/DatasetPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/containers/DatasetPage.js -------------------------------------------------------------------------------- /app/renderer/containers/DatasetsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/containers/DatasetsPage.js -------------------------------------------------------------------------------- /app/renderer/containers/LoggedInPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/containers/LoggedInPage.js -------------------------------------------------------------------------------- /app/renderer/containers/LoginPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/containers/LoginPage.js -------------------------------------------------------------------------------- /app/renderer/containers/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/containers/Root.js -------------------------------------------------------------------------------- /app/renderer/containers/SettingsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/containers/SettingsPage.js -------------------------------------------------------------------------------- /app/renderer/images/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/images/app.png -------------------------------------------------------------------------------- /app/renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/index.html -------------------------------------------------------------------------------- /app/renderer/middleware/autosave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/middleware/autosave.js -------------------------------------------------------------------------------- /app/renderer/reducers/datasets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/reducers/datasets.js -------------------------------------------------------------------------------- /app/renderer/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/reducers/index.js -------------------------------------------------------------------------------- /app/renderer/reducers/newDataset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/reducers/newDataset.js -------------------------------------------------------------------------------- /app/renderer/reducers/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/reducers/settings.js -------------------------------------------------------------------------------- /app/renderer/reducers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/reducers/user.js -------------------------------------------------------------------------------- /app/renderer/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/routes.js -------------------------------------------------------------------------------- /app/renderer/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/renderer/store.js -------------------------------------------------------------------------------- /app/utils/twitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/app/utils/twitter.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/babel.config.js -------------------------------------------------------------------------------- /dist-assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /electron-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/electron-builder.yml -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/gulpfile.js -------------------------------------------------------------------------------- /images/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/images/app.icns -------------------------------------------------------------------------------- /images/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/images/app.ico -------------------------------------------------------------------------------- /images/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/images/app.png -------------------------------------------------------------------------------- /images/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/images/closed.png -------------------------------------------------------------------------------- /images/osx-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/images/osx-open.png -------------------------------------------------------------------------------- /images/screencap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/images/screencap.png -------------------------------------------------------------------------------- /init.js: -------------------------------------------------------------------------------- 1 | require('./build/main'); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/package.json -------------------------------------------------------------------------------- /tasks/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/tasks/assets.js -------------------------------------------------------------------------------- /tasks/distribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/tasks/distribution.js -------------------------------------------------------------------------------- /tasks/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/tasks/electron.js -------------------------------------------------------------------------------- /tasks/hotreload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/tasks/hotreload.js -------------------------------------------------------------------------------- /tasks/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/tasks/scripts.js -------------------------------------------------------------------------------- /tasks/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/tasks/watch.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DocNow/hydrator/HEAD/yarn.lock --------------------------------------------------------------------------------