├── .babelrc ├── .env.example ├── .gitignore ├── LICENSE.md ├── Procfile ├── Procfile.dev ├── README.md ├── assets.json ├── assets └── all.styl ├── client └── index.js ├── common ├── actions │ └── index.js ├── api │ ├── cached_link.js │ ├── link.js │ ├── local_link.js │ ├── local_path.js │ ├── login.js │ ├── path.js │ ├── post_connections.js │ └── query_channels.js ├── components │ ├── arrow_nav │ │ ├── index.js │ │ └── index.styl │ ├── base_styles │ │ ├── index.styl │ │ └── variables.styl │ ├── channel │ │ ├── index.js │ │ └── index.styl │ ├── home │ │ └── index.styl │ ├── link │ │ ├── index.js │ │ ├── index.styl │ │ └── overrides.styl │ ├── loading │ │ ├── index.js │ │ └── index.styl │ ├── login_form │ │ ├── index.js │ │ └── index.styl │ ├── path │ │ ├── index.js │ │ └── index.styl │ ├── path_map │ │ ├── index.js │ │ └── index.styl │ ├── save_modal │ │ ├── index.js │ │ └── index.styl │ ├── save_path_contents │ │ ├── add_to_arena.js │ │ ├── index.js │ │ └── index.styl │ ├── save_path_to_channels │ │ ├── index.js │ │ └── index.styl │ ├── saved_path_link │ │ ├── index.js │ │ └── index.styl │ ├── scroll_position │ │ └── index.js │ └── view_mode │ │ ├── index.js │ │ └── index.styl ├── lib │ ├── cache.js │ ├── clean_rulers.js │ ├── current_user.js │ ├── loggers.js │ ├── map_tree.js │ ├── parse_links.js │ ├── prefetch_links.js │ ├── queue.js │ ├── throttled.js │ └── timer.js ├── reducers │ ├── connections.js │ ├── current_user.js │ ├── highlighted_link.js │ ├── hovered_link.js │ ├── index.js │ ├── links.js │ ├── loading.js │ ├── path.js │ ├── path_url.js │ ├── root_link.js │ ├── save_modal.js │ ├── scroll_index.js │ └── view_mode.js ├── selectors │ ├── link.js │ └── path_map.js └── store │ └── configure_store.js ├── config.js ├── config └── whitelist.js ├── index.js ├── newrelic.js ├── npm-shrinkwrap.json ├── package.json ├── server ├── api │ └── index.js ├── explore │ ├── explore.js │ └── index.js ├── home │ ├── examples.js │ ├── home.js │ ├── index.js │ └── snippet.js ├── index.js ├── render.js ├── server.js └── worker │ ├── index.js │ └── worker.js ├── webpack.common.config.js ├── webpack.development.config.js ├── webpack.production.config.js └── webpack.server.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react", "es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/Procfile -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/Procfile.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/README.md -------------------------------------------------------------------------------- /assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/assets.json -------------------------------------------------------------------------------- /assets/all.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/assets/all.styl -------------------------------------------------------------------------------- /client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/client/index.js -------------------------------------------------------------------------------- /common/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/actions/index.js -------------------------------------------------------------------------------- /common/api/cached_link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/api/cached_link.js -------------------------------------------------------------------------------- /common/api/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/api/link.js -------------------------------------------------------------------------------- /common/api/local_link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/api/local_link.js -------------------------------------------------------------------------------- /common/api/local_path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/api/local_path.js -------------------------------------------------------------------------------- /common/api/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/api/login.js -------------------------------------------------------------------------------- /common/api/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/api/path.js -------------------------------------------------------------------------------- /common/api/post_connections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/api/post_connections.js -------------------------------------------------------------------------------- /common/api/query_channels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/api/query_channels.js -------------------------------------------------------------------------------- /common/components/arrow_nav/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/arrow_nav/index.js -------------------------------------------------------------------------------- /common/components/arrow_nav/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/arrow_nav/index.styl -------------------------------------------------------------------------------- /common/components/base_styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/base_styles/index.styl -------------------------------------------------------------------------------- /common/components/base_styles/variables.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/base_styles/variables.styl -------------------------------------------------------------------------------- /common/components/channel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/channel/index.js -------------------------------------------------------------------------------- /common/components/channel/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/channel/index.styl -------------------------------------------------------------------------------- /common/components/home/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/home/index.styl -------------------------------------------------------------------------------- /common/components/link/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/link/index.js -------------------------------------------------------------------------------- /common/components/link/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/link/index.styl -------------------------------------------------------------------------------- /common/components/link/overrides.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/link/overrides.styl -------------------------------------------------------------------------------- /common/components/loading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/loading/index.js -------------------------------------------------------------------------------- /common/components/loading/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/loading/index.styl -------------------------------------------------------------------------------- /common/components/login_form/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/login_form/index.js -------------------------------------------------------------------------------- /common/components/login_form/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/login_form/index.styl -------------------------------------------------------------------------------- /common/components/path/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/path/index.js -------------------------------------------------------------------------------- /common/components/path/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/path/index.styl -------------------------------------------------------------------------------- /common/components/path_map/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/path_map/index.js -------------------------------------------------------------------------------- /common/components/path_map/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/path_map/index.styl -------------------------------------------------------------------------------- /common/components/save_modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/save_modal/index.js -------------------------------------------------------------------------------- /common/components/save_modal/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/save_modal/index.styl -------------------------------------------------------------------------------- /common/components/save_path_contents/add_to_arena.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/save_path_contents/add_to_arena.js -------------------------------------------------------------------------------- /common/components/save_path_contents/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/save_path_contents/index.js -------------------------------------------------------------------------------- /common/components/save_path_contents/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/save_path_contents/index.styl -------------------------------------------------------------------------------- /common/components/save_path_to_channels/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/save_path_to_channels/index.js -------------------------------------------------------------------------------- /common/components/save_path_to_channels/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/save_path_to_channels/index.styl -------------------------------------------------------------------------------- /common/components/saved_path_link/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/saved_path_link/index.js -------------------------------------------------------------------------------- /common/components/saved_path_link/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/saved_path_link/index.styl -------------------------------------------------------------------------------- /common/components/scroll_position/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/scroll_position/index.js -------------------------------------------------------------------------------- /common/components/view_mode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/view_mode/index.js -------------------------------------------------------------------------------- /common/components/view_mode/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/components/view_mode/index.styl -------------------------------------------------------------------------------- /common/lib/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/lib/cache.js -------------------------------------------------------------------------------- /common/lib/clean_rulers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/lib/clean_rulers.js -------------------------------------------------------------------------------- /common/lib/current_user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/lib/current_user.js -------------------------------------------------------------------------------- /common/lib/loggers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/lib/loggers.js -------------------------------------------------------------------------------- /common/lib/map_tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/lib/map_tree.js -------------------------------------------------------------------------------- /common/lib/parse_links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/lib/parse_links.js -------------------------------------------------------------------------------- /common/lib/prefetch_links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/lib/prefetch_links.js -------------------------------------------------------------------------------- /common/lib/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/lib/queue.js -------------------------------------------------------------------------------- /common/lib/throttled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/lib/throttled.js -------------------------------------------------------------------------------- /common/lib/timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/lib/timer.js -------------------------------------------------------------------------------- /common/reducers/connections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/reducers/connections.js -------------------------------------------------------------------------------- /common/reducers/current_user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/reducers/current_user.js -------------------------------------------------------------------------------- /common/reducers/highlighted_link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/reducers/highlighted_link.js -------------------------------------------------------------------------------- /common/reducers/hovered_link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/reducers/hovered_link.js -------------------------------------------------------------------------------- /common/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/reducers/index.js -------------------------------------------------------------------------------- /common/reducers/links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/reducers/links.js -------------------------------------------------------------------------------- /common/reducers/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/reducers/loading.js -------------------------------------------------------------------------------- /common/reducers/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/reducers/path.js -------------------------------------------------------------------------------- /common/reducers/path_url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/reducers/path_url.js -------------------------------------------------------------------------------- /common/reducers/root_link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/reducers/root_link.js -------------------------------------------------------------------------------- /common/reducers/save_modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/reducers/save_modal.js -------------------------------------------------------------------------------- /common/reducers/scroll_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/reducers/scroll_index.js -------------------------------------------------------------------------------- /common/reducers/view_mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/reducers/view_mode.js -------------------------------------------------------------------------------- /common/selectors/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/selectors/link.js -------------------------------------------------------------------------------- /common/selectors/path_map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/selectors/path_map.js -------------------------------------------------------------------------------- /common/store/configure_store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/common/store/configure_store.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/config.js -------------------------------------------------------------------------------- /config/whitelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/config/whitelist.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | require('./client') 2 | -------------------------------------------------------------------------------- /newrelic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/newrelic.js -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/package.json -------------------------------------------------------------------------------- /server/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/server/api/index.js -------------------------------------------------------------------------------- /server/explore/explore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/server/explore/explore.js -------------------------------------------------------------------------------- /server/explore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/server/explore/index.js -------------------------------------------------------------------------------- /server/home/examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/server/home/examples.js -------------------------------------------------------------------------------- /server/home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/server/home/home.js -------------------------------------------------------------------------------- /server/home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/server/home/index.js -------------------------------------------------------------------------------- /server/home/snippet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/server/home/snippet.js -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/server/index.js -------------------------------------------------------------------------------- /server/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/server/render.js -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/server/server.js -------------------------------------------------------------------------------- /server/worker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/server/worker/index.js -------------------------------------------------------------------------------- /server/worker/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/server/worker/worker.js -------------------------------------------------------------------------------- /webpack.common.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/webpack.common.config.js -------------------------------------------------------------------------------- /webpack.development.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/webpack.development.config.js -------------------------------------------------------------------------------- /webpack.production.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/webpack.production.config.js -------------------------------------------------------------------------------- /webpack.server.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredotna/pilgrim/HEAD/webpack.server.config.js --------------------------------------------------------------------------------