├── .circleci └── config.yml ├── .codecov.yml ├── .drone.yml ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .flowconfig ├── .gitignore ├── .npmrc ├── .nvmrc ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── ROADMAP.md ├── docs ├── assets │ ├── boldr-text-logo.png │ └── db-diagram.png ├── editor.md ├── navigation.md ├── nginx.md ├── pkgs │ ├── cli.md │ ├── config.md │ ├── core.md │ └── tools.md ├── production.md └── setup.md ├── flow-typed └── npm │ ├── @boldr │ ├── auth_vx.x.x.js │ ├── cli_vx.x.x.js │ ├── config_vx.x.x.js │ ├── core_vx.x.x.js │ ├── icons_vx.x.x.js │ └── utils_vx.x.x.js │ ├── autoprefixer_vx.x.x.js │ ├── babel-cli_vx.x.x.js │ ├── babel-core_vx.x.x.js │ ├── babel-eslint_vx.x.x.js │ ├── babel-jest_vx.x.x.js │ ├── babel-plugin-module-resolver_vx.x.x.js │ ├── babel-preset-boldr_vx.x.x.js │ ├── babel-preset-env_vx.x.x.js │ ├── babel-watch_vx.x.x.js │ ├── bluebird_v3.x.x.js │ ├── chalk_vx.x.x.js │ ├── codecov_vx.x.x.js │ ├── color_vx.x.x.js │ ├── commitizen_vx.x.x.js │ ├── cross-env_vx.x.x.js │ ├── cz-emoji_vx.x.x.js │ ├── debug_vx.x.x.js │ ├── draft-convert_vx.x.x.js │ ├── enzyme-to-json_vx.x.x.js │ ├── enzyme_v2.3.x.js │ ├── eslint-config-boldr_vx.x.x.js │ ├── eslint-import-resolver-babel-module_vx.x.x.js │ ├── eslint_vx.x.x.js │ ├── express_v4.x.x.js │ ├── faker_vx.x.x.js │ ├── flow-bin_v0.x.x.js │ ├── fs-extra_vx.x.x.js │ ├── glob_vx.x.x.js │ ├── history_vx.x.x.js │ ├── humps_vx.x.x.js │ ├── husky_vx.x.x.js │ ├── identity-obj-proxy_vx.x.x.js │ ├── immutability-helper_vx.x.x.js │ ├── istanbul-api_vx.x.x.js │ ├── istanbul-lib-coverage_vx.x.x.js │ ├── jest-styled-components_vx.x.x.js │ ├── jest-transform-graphql_vx.x.x.js │ ├── jest-transform-graphql_vx.x.x.js~HEAD │ ├── jest-transform-graphql_vx.x.x.js~HEAD_0 │ ├── jest-transform-graphql_vx.x.x.js~develop │ ├── jest-transform-graphql_vx.x.x.js~develop_0 │ ├── jest_vx.x.x.js │ ├── lerna_vx.x.x.js │ ├── lint-staged_vx.x.x.js │ ├── lodash_v4.x.x.js │ ├── mockdate_vx.x.x.js │ ├── nodemon_vx.x.x.js │ ├── prettier_vx.x.x.js │ ├── ramda_v0.x.x.js │ ├── react-dropzone_vx.x.x.js │ ├── react-helmet_vx.x.x.js │ ├── react-hot-loader_vx.x.x.js │ ├── react-redux_v5.x.x.js │ ├── react-router-dom_v4.x.x.js │ ├── react-router-dom_vx.x.x.js │ ├── react-router-redux_vx.x.x.js │ ├── react-tagsinput_vx.x.x.js │ ├── react-test-renderer_vx.x.x.js │ ├── react-transition-group_vx.x.x.js │ ├── recompact_vx.x.x.js │ ├── recompose_vx.x.x.js │ ├── redbox-react_vx.x.x.js │ ├── redux-mock-store_v1.2.x.js │ ├── redux-thunk_vx.x.x.js │ ├── redux_v3.x.x.js │ ├── reselect_v3.x.x.js │ ├── rimraf_vx.x.x.js │ ├── semver_v5.1.x.js │ ├── serialize-javascript_vx.x.x.js │ ├── shelljs_vx.x.x.js │ ├── shortid_v2.2.x.js │ ├── sinon_vx.x.x.js │ ├── styled-components_v2.x.x.js │ ├── supertest_vx.x.x.js │ └── why-did-you-update_vx.x.x.js ├── graphql.config.json ├── internal ├── flow │ ├── defs │ │ ├── boldr-tools.js │ │ ├── classnames.js │ │ ├── commonjs.js │ │ ├── es6modules.js │ │ └── react-universal-component.js │ └── stubs │ │ └── WebpackAsset.js.flow └── scripts │ ├── mapCoverage.js │ ├── post-install.js │ ├── prettier.js │ └── task.js ├── lerna.json ├── package.json ├── packages ├── backend │ ├── .babelrc │ ├── .boldr │ │ └── config │ │ │ └── default.js │ ├── .editorconfig │ ├── .env │ ├── .gitignore │ ├── .npmignore │ ├── package.json │ ├── src │ │ ├── createBackend.js │ │ ├── index.js │ │ ├── middleware │ │ │ ├── initCore.js │ │ │ ├── initErrorHandler.js │ │ │ ├── initSecurity.js │ │ │ └── queryLogger.js │ │ ├── services │ │ │ ├── index.js │ │ │ ├── mailer │ │ │ │ ├── index.js │ │ │ │ └── templates.js │ │ │ └── redis │ │ │ │ ├── index.js │ │ │ │ └── redis.js │ │ └── utils │ │ │ ├── asyncRouter.js │ │ │ └── normalizePort.js │ └── yarn.lock ├── cli │ ├── .babelrc │ ├── .eslintrc │ ├── .gitignore │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── boldr.js │ ├── package.json │ ├── src │ │ ├── cli.js │ │ ├── commands │ │ │ ├── clean.js │ │ │ ├── dev.js │ │ │ ├── init.js │ │ │ ├── migrate.js │ │ │ ├── migration.js │ │ │ └── seed.js │ │ └── util │ │ │ └── partialPkg.js │ ├── static │ │ ├── .boldr │ │ │ ├── config │ │ │ │ └── default.js │ │ │ └── db │ │ │ │ ├── migrations │ │ │ │ ├── 201701270219_initial.js │ │ │ │ ├── 201704120543_media.js │ │ │ │ ├── 201705101823_social.js │ │ │ │ ├── 201705270719_tsv-article.js │ │ │ │ ├── 201706291706_page.js │ │ │ │ ├── 201707140206_routes.js │ │ │ │ └── 201708222054_entity-content.js │ │ │ │ ├── postgres-initdb.sh │ │ │ │ └── seeds │ │ │ │ └── initial.js │ │ ├── .env.example │ │ ├── hello.js │ │ ├── public │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── manifest.json │ │ │ ├── mstile-150x150.png │ │ │ └── safari-pinned-tab.svg │ │ └── src │ │ │ ├── clientEntry.js │ │ │ ├── reducers.js │ │ │ └── serverEntry.js │ └── yarn.lock ├── config │ ├── .npmignore │ ├── README.md │ ├── __tests__ │ │ ├── __fixtures__ │ │ │ ├── js-conf │ │ │ │ ├── default.js │ │ │ │ └── routes.js │ │ │ └── json-conf │ │ │ │ ├── default.json │ │ │ │ └── routes.json │ │ ├── js-conf.test.js │ │ ├── json-conf.test.js │ │ └── no-conf.test.js │ ├── config.js │ ├── package.json │ └── yarn.lock ├── core │ ├── .babelrc │ ├── .gitignore │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── browserslist │ ├── index.js │ ├── package.json │ ├── src │ │ ├── client.js │ │ ├── client │ │ │ ├── configBrowser.js │ │ │ └── render.js │ │ ├── common.js │ │ ├── server.js │ │ ├── server │ │ │ ├── renderHtml.js │ │ │ ├── serverRender.js │ │ │ └── ssrHandler.js │ │ ├── shared │ │ │ ├── apollo │ │ │ │ ├── batchNetworkInterface.js │ │ │ │ ├── createApolloClient.js │ │ │ │ ├── createApolloClient.test.js │ │ │ │ ├── extractFiles.js │ │ │ │ └── networkInterface.js │ │ │ ├── history.js │ │ │ ├── state │ │ │ │ ├── boldr │ │ │ │ │ ├── actionTypes.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── notifications │ │ │ │ │ │ ├── actions.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── reducer.js │ │ │ │ │ │ └── reducer.test.js │ │ │ │ │ ├── reducer.js │ │ │ │ │ ├── reducer.test.js │ │ │ │ │ ├── settings │ │ │ │ │ │ └── reducer.js │ │ │ │ │ └── ui │ │ │ │ │ │ ├── actions.js │ │ │ │ │ │ ├── actions.test.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── reducer.js │ │ │ │ │ │ └── reducer.test.js │ │ │ │ ├── createBoldrStore.js │ │ │ │ └── createBoldrStore.test.js │ │ │ ├── storage │ │ │ │ ├── index.js │ │ │ │ ├── storage.js │ │ │ │ └── storage.test.js │ │ │ ├── token.js │ │ │ ├── token.test.js │ │ │ └── wrapBoldrApp.js │ │ ├── types.js │ │ └── util │ │ │ ├── flattenRoutes.js │ │ │ └── validations.js │ └── yarn.lock ├── editor │ ├── .babelrc │ ├── .gitignore │ ├── .npmignore │ ├── .storybook │ │ ├── addons.js │ │ ├── config.js │ │ └── webpack.config.js │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── BoldrEditor.js │ │ ├── BoldrEditorType.js │ │ ├── components │ │ │ ├── Controls │ │ │ │ ├── BlockType │ │ │ │ │ ├── BlockType.js │ │ │ │ │ ├── BlockType.test.js │ │ │ │ │ ├── BlockTypeLayout.js │ │ │ │ │ └── index.js │ │ │ │ ├── ColorPicker │ │ │ │ │ ├── ColorPicker.js │ │ │ │ │ ├── ColorPicker.test.js │ │ │ │ │ ├── ColorPickerLayout.js │ │ │ │ │ └── index.js │ │ │ │ ├── Embedded │ │ │ │ │ ├── Embedded.js │ │ │ │ │ ├── EmbeddedLayout.js │ │ │ │ │ └── index.js │ │ │ │ ├── Emoji │ │ │ │ │ ├── Emoji.js │ │ │ │ │ ├── EmojiLayout.js │ │ │ │ │ └── index.js │ │ │ │ ├── FontFamily │ │ │ │ │ ├── FontFamily.js │ │ │ │ │ ├── FontFamily.test.js │ │ │ │ │ ├── FontFamilyLayout.js │ │ │ │ │ └── index.js │ │ │ │ ├── FontSize │ │ │ │ │ ├── FontSize.js │ │ │ │ │ ├── FontSize.test.js │ │ │ │ │ ├── FontSizeLayout.js │ │ │ │ │ └── index.js │ │ │ │ ├── History │ │ │ │ │ ├── History.js │ │ │ │ │ ├── History.test.js │ │ │ │ │ ├── HistoryLayout.js │ │ │ │ │ └── index.js │ │ │ │ ├── Image │ │ │ │ │ ├── Image.js │ │ │ │ │ ├── Image.test.js │ │ │ │ │ ├── ImageLayout.js │ │ │ │ │ └── index.js │ │ │ │ ├── Inline │ │ │ │ │ ├── Inline.js │ │ │ │ │ ├── Inline.test.js │ │ │ │ │ ├── InlineLayout.js │ │ │ │ │ └── index.js │ │ │ │ ├── Link │ │ │ │ │ ├── Link.js │ │ │ │ │ ├── Link.test.js │ │ │ │ │ ├── LinkLayout.js │ │ │ │ │ └── index.js │ │ │ │ ├── List │ │ │ │ │ ├── List.js │ │ │ │ │ ├── List.test.js │ │ │ │ │ ├── ListLayout.js │ │ │ │ │ └── index.js │ │ │ │ ├── Remove │ │ │ │ │ ├── Remove.js │ │ │ │ │ ├── RemoveLayout.js │ │ │ │ │ └── index.js │ │ │ │ ├── TextAlign │ │ │ │ │ ├── TextAlign.js │ │ │ │ │ ├── TextAlign.test.js │ │ │ │ │ ├── TextAlignLayout.js │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── Dropdown │ │ │ │ ├── Dropdown.js │ │ │ │ ├── Dropdown.test.js │ │ │ │ ├── DropdownOption.js │ │ │ │ ├── DropdownOption.test.js │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── Dropdown.test.js.snap │ │ │ │ │ └── DropdownOption.test.js.snap │ │ │ │ └── index.js │ │ │ ├── Icons │ │ │ │ ├── AlignCenter.js │ │ │ │ ├── AlignJustify.js │ │ │ │ ├── AlignLeft.js │ │ │ │ ├── AlignRight.js │ │ │ │ ├── Bold.js │ │ │ │ ├── Browser.js │ │ │ │ ├── Code.js │ │ │ │ ├── Edit.js │ │ │ │ ├── Eraser.js │ │ │ │ ├── ExternalLink.js │ │ │ │ ├── EyeDropper.js │ │ │ │ ├── Font.js │ │ │ │ ├── H1.js │ │ │ │ ├── H2.js │ │ │ │ ├── H3.js │ │ │ │ ├── Heading.js │ │ │ │ ├── Icon.js │ │ │ │ ├── Image.js │ │ │ │ ├── Indent.js │ │ │ │ ├── Italic.js │ │ │ │ ├── Link.js │ │ │ │ ├── List.js │ │ │ │ ├── ListOl.js │ │ │ │ ├── ListUl.js │ │ │ │ ├── Outdent.js │ │ │ │ ├── PaintBrush.js │ │ │ │ ├── Paragraph.js │ │ │ │ ├── QuoteLeft.js │ │ │ │ ├── Redo.js │ │ │ │ ├── Smile.js │ │ │ │ ├── Strikethrough.js │ │ │ │ ├── Subscript.js │ │ │ │ ├── Superscript.js │ │ │ │ ├── Underline.js │ │ │ │ ├── Undo.js │ │ │ │ ├── Unlink.js │ │ │ │ ├── Video.js │ │ │ │ └── index.js │ │ │ ├── Option │ │ │ │ ├── Option.js │ │ │ │ ├── Option.test.js │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── Option.test.js.snap │ │ │ │ └── index.js │ │ │ └── Spinner │ │ │ │ ├── Spinner.js │ │ │ │ ├── Spinner.test.js │ │ │ │ └── index.js │ │ ├── core │ │ │ ├── blockRender │ │ │ │ ├── getEmbedRender │ │ │ │ │ ├── getEmbedRender.js │ │ │ │ │ └── index.js │ │ │ │ ├── getImageRender │ │ │ │ │ ├── getImageRender.js │ │ │ │ │ ├── getImageRender.test.js │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── config.js │ │ │ ├── constants.js │ │ │ ├── constants.test.js │ │ │ ├── convert.js │ │ │ ├── decorators │ │ │ │ ├── Link │ │ │ │ │ ├── Link.js │ │ │ │ │ ├── Link.test.js │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── eventHandlers │ │ │ │ ├── focus.js │ │ │ │ ├── index.js │ │ │ │ ├── keyDown.js │ │ │ │ └── modals.js │ │ │ └── maps.js │ │ ├── index.js │ │ └── utils │ │ │ ├── block.js │ │ │ ├── block.test.js │ │ │ ├── blockStyleFn.js │ │ │ ├── blockStyleFn.test.js │ │ │ ├── common.js │ │ │ ├── common.test.js │ │ │ ├── handlePaste.js │ │ │ ├── index.js │ │ │ ├── inline.js │ │ │ ├── inline.test.js │ │ │ ├── keyEvent.js │ │ │ ├── keyEvent.test.js │ │ │ ├── list.js │ │ │ ├── list.test.js │ │ │ ├── moveSelectionToEnd.js │ │ │ └── moveSelectionToEnd.test.js │ ├── stories │ │ ├── Demo.js │ │ └── index.js │ ├── styles │ │ ├── boldreditor.css │ │ └── boldreditor.scss │ ├── tools │ │ ├── babel-preset.js │ │ ├── build.js │ │ ├── jest │ │ │ ├── fileMock.js │ │ │ ├── setup.js │ │ │ └── transform.js │ │ └── jestSetup.js │ └── yarn.lock ├── tools │ ├── .babelrc │ ├── .boldr │ │ └── config │ │ │ └── default.js │ ├── .gitignore │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── flow-typed │ │ ├── defs │ │ │ └── boldr-tools.js.flow │ │ └── npm │ │ │ ├── autoprefixer_vx.x.x.js │ │ │ ├── babel-loader_vx.x.x.js │ │ │ ├── babel-preset-boldr_vx.x.x.js │ │ │ ├── bluebird_v3.x.x.js │ │ │ ├── boldr-utils_vx.x.x.js │ │ │ ├── cache-loader_vx.x.x.js │ │ │ ├── case-sensitive-paths-webpack-plugin_vx.x.x.js │ │ │ ├── chalk_vx.x.x.js │ │ │ ├── circular-dependency-plugin_vx.x.x.js │ │ │ ├── css-loader_vx.x.x.js │ │ │ ├── dotenv_vx.x.x.js │ │ │ ├── eslint-config-boldr_vx.x.x.js │ │ │ ├── eslint_vx.x.x.js │ │ │ ├── express_v4.x.x.js │ │ │ ├── extract-css-chunks-webpack-plugin_vx.x.x.js │ │ │ ├── fast-sass-loader_vx.x.x.js │ │ │ ├── file-loader_vx.x.x.js │ │ │ ├── flow-bin_v0.x.x.js │ │ │ ├── fs-extra_vx.x.x.js │ │ │ ├── happypack_vx.x.x.js │ │ │ ├── html-webpack-plugin_vx.x.x.js │ │ │ ├── loader-utils_vx.x.x.js │ │ │ ├── md5_vx.x.x.js │ │ │ ├── meow_v3.x.x.js │ │ │ ├── node-fetch_vx.x.x.js │ │ │ ├── node-noop_vx.x.x.js │ │ │ ├── node-sass_vx.x.x.js │ │ │ ├── postcss-loader_vx.x.x.js │ │ │ ├── prepublish_vx.x.x.js │ │ │ ├── prettier_vx.x.x.js │ │ │ ├── pretty-error_v2.x.x.js │ │ │ ├── source-map-support_vx.x.x.js │ │ │ ├── stats-webpack-plugin_vx.x.x.js │ │ │ ├── uglify-es_vx.x.x.js │ │ │ ├── uglifyjs-webpack-plugin_vx.x.x.js │ │ │ ├── url-loader_vx.x.x.js │ │ │ ├── uuid_v3.x.x.js │ │ │ ├── webpack-dev-middleware_vx.x.x.js │ │ │ ├── webpack-hot-middleware_vx.x.x.js │ │ │ ├── webpack-hot-server-middleware_vx.x.x.js │ │ │ ├── webpack-subresource-integrity_vx.x.x.js │ │ │ ├── webpack_vx.x.x.js │ │ │ ├── whatwg-fetch_vx.x.x.js │ │ │ └── write-file-webpack-plugin_vx.x.x.js │ ├── package.json │ ├── src │ │ ├── constants.js │ │ ├── createWebpackConfig.js │ │ ├── index.js │ │ ├── plugins │ │ │ ├── ChunkHash.js │ │ │ ├── ProgressPlugin.js │ │ │ ├── StatsPlugin.js │ │ │ ├── happyPackPlugin.js │ │ │ └── index.js │ │ ├── services │ │ │ ├── build.js │ │ │ ├── startDevServer.js │ │ │ └── startRenderServer.js │ │ └── util │ │ │ └── rootModuleRelativePath.js │ └── yarn.lock └── utils │ ├── .babelrc │ ├── .gitignore │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ ├── arrays │ │ ├── addIdToArray.js │ │ ├── addIdToArray.test.js │ │ ├── flatten.js │ │ ├── flatten.test.js │ │ ├── merge.js │ │ ├── merge.test.js │ │ ├── reduce.js │ │ ├── reduce.test.js │ │ ├── removeIdFromArray.js │ │ ├── removeIdFromArray.test.js │ │ ├── removeNil.js │ │ ├── removeNil.test.js │ │ ├── uniqueArray.js │ │ └── uniqueArray.test.js │ ├── dom │ │ ├── hasDocument.js │ │ ├── hasDocument.test.js │ │ ├── hasWindow.js │ │ ├── hasWindow.test.js │ │ ├── inDOM.js │ │ ├── inDOM.test.js │ │ ├── isWindow.js │ │ ├── isWindow.test.js │ │ ├── ownerDocument.js │ │ └── ownerDocument.test.js │ ├── index.js │ ├── logger.js │ ├── logger.test.js │ ├── logic │ │ ├── curry.js │ │ ├── curry.test.js │ │ ├── curryN.js │ │ ├── curryN.test.js │ │ ├── ifElse.js │ │ ├── ifElse.test.js │ │ ├── isPromise.js │ │ └── isPromise.test.js │ ├── node │ │ ├── appRoot.js │ │ └── getDefault.js │ ├── objects │ │ ├── filterEmpty.js │ │ ├── filterEmpty.test.js │ │ ├── removeByKey.js │ │ └── removeByKey.test.js │ └── strings │ │ ├── slugIt.js │ │ ├── slugIt.test.js │ │ ├── toTitle.js │ │ └── toTitle.test.js │ └── yarn.lock ├── project ├── .babelrc ├── .boldr │ ├── config │ │ └── default.js │ ├── db.sql │ └── db │ │ ├── migrations │ │ ├── 201701270219_initial.js │ │ ├── 201704120543_media.js │ │ ├── 201705101823_social.js │ │ ├── 201705270719_tsv-article.js │ │ ├── 201706291706_page.js │ │ ├── 201707140206_routes.js │ │ └── 201708222054_entity-content.js │ │ ├── postgres-initdb.sh │ │ └── seeds │ │ └── initial.js ├── .env.example ├── .eslintignore ├── Dockerfile ├── README.md ├── docker-compose.yml ├── flow-typed │ └── npm │ │ ├── @boldr │ │ ├── auth_vx.x.x.js │ │ ├── cli_vx.x.x.js │ │ ├── core_vx.x.x.js │ │ ├── icons_vx.x.x.js │ │ └── utils_vx.x.x.js │ │ ├── autoprefixer_vx.x.x.js │ │ ├── babel-cli_vx.x.x.js │ │ ├── babel-eslint_vx.x.x.js │ │ ├── babel-preset-boldr_vx.x.x.js │ │ ├── babel-watch_vx.x.x.js │ │ ├── cross-env_vx.x.x.js │ │ ├── draft-convert_vx.x.x.js │ │ ├── draftjs-utils_vx.x.x.js │ │ ├── enzyme-to-json_vx.x.x.js │ │ ├── enzyme_v2.3.x.js │ │ ├── eslint-config-boldr_vx.x.x.js │ │ ├── eslint_vx.x.x.js │ │ ├── express_v4.x.x.js │ │ ├── flow-bin_v0.x.x.js │ │ ├── prettier_vx.x.x.js │ │ ├── react-dropzone_vx.x.x.js │ │ ├── react-helmet_vx.x.x.js │ │ ├── react-hot-loader_vx.x.x.js │ │ ├── react-portal_vx.x.x.js │ │ ├── react-redux_v5.x.x.js │ │ ├── react-router-dom_v4.x.x.js │ │ ├── react-tagsinput_vx.x.x.js │ │ ├── react-test-renderer_vx.x.x.js │ │ ├── react-transition-group_vx.x.x.js │ │ ├── redbox-react_vx.x.x.js │ │ ├── redux-mock-store_v1.2.x.js │ │ ├── redux-thunk_vx.x.x.js │ │ ├── redux_v3.x.x.js │ │ ├── rimraf_vx.x.x.js │ │ ├── serialize-javascript_vx.x.x.js │ │ ├── shortid_v2.2.x.js │ │ ├── sinon_vx.x.x.js │ │ └── styled-components_v2.x.x.js ├── graphql.config.json ├── internal │ ├── flow │ │ ├── defs │ │ │ ├── boldr.js.flow │ │ │ ├── classnames.js.flow │ │ │ ├── commonjs.js.flow │ │ │ ├── draftjs-utils.js.flow │ │ │ ├── es6modules.js.flow │ │ │ └── react-universal-component.js.flow │ │ ├── logs │ │ │ └── flow.log.old │ │ └── stubs │ │ │ └── WebpackAsset.js.flow │ ├── jest │ │ ├── __fixtures__ │ │ │ ├── activities.fixture.json │ │ │ ├── attachments.fixture.json │ │ │ ├── auth.fixture.json │ │ │ ├── menu.fixture.json │ │ │ ├── posts.fixture.json │ │ │ ├── stats.fixture.json │ │ │ ├── tag.fixture.json │ │ │ └── users.fixture.json │ │ ├── createRouteContext.js │ │ ├── fileMock.js │ │ ├── setup.js │ │ └── transform.js │ └── scripts │ │ ├── db.js │ │ ├── prettier.js │ │ ├── task.js │ │ ├── testCi.js │ │ ├── updateSchema.js │ │ └── versionCheck.js ├── jest.config.js ├── nodemon.json ├── package.json ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── manifest.json │ ├── mstile-150x150.png │ └── safari-pinned-tab.svg ├── schema.graphql ├── server │ ├── app.js │ ├── errors │ │ └── index.js │ ├── graphql │ │ ├── context.js │ │ ├── formatGqlError.js │ │ ├── index.js │ │ ├── loaders │ │ │ └── index.js │ │ ├── resolvers │ │ │ ├── account.js │ │ │ ├── article.js │ │ │ ├── category.js │ │ │ ├── content.js │ │ │ ├── contentType.js │ │ │ ├── entity.js │ │ │ ├── file.js │ │ │ ├── index.js │ │ │ ├── media.js │ │ │ ├── menu.js │ │ │ ├── menuDetail.js │ │ │ ├── page.js │ │ │ ├── profile.js │ │ │ ├── role.js │ │ │ ├── scalars │ │ │ │ ├── GraphQLFormattedNumber.js │ │ │ │ ├── GraphQLJSON.js │ │ │ │ ├── factory.js │ │ │ │ ├── index.js │ │ │ │ ├── paginationTypeFactory.js │ │ │ │ ├── scalars.js │ │ │ │ └── types.js │ │ │ ├── setting.js │ │ │ └── tag.js │ │ ├── schema.js │ │ ├── subscriptions.js │ │ ├── typeDefs.js │ │ └── typedefs.graphql │ ├── index.js │ ├── middleware │ │ ├── index.js │ │ ├── initAuth.js │ │ ├── initCore.js │ │ ├── initErrorHandler.js │ │ ├── initGraphql.js │ │ ├── initPubsub.js │ │ ├── initSecurity.js │ │ ├── initSession.js │ │ ├── queryLogger.js │ │ └── rbac.js │ ├── models │ │ ├── Account.js │ │ ├── Article.js │ │ ├── BaseModel.js │ │ ├── Category.js │ │ ├── ContentType.js │ │ ├── Entity.js │ │ ├── File.js │ │ ├── Media.js │ │ ├── Menu.js │ │ ├── MenuDetail.js │ │ ├── Page.js │ │ ├── Profile.js │ │ ├── Role.js │ │ ├── Setting.js │ │ ├── Social.js │ │ ├── Tag.js │ │ ├── index.js │ │ ├── join │ │ │ ├── AccountRole.js │ │ │ ├── ArticleMedia.js │ │ │ ├── ArticleTag.js │ │ │ └── EntityTag.js │ │ └── queryBuilder.js │ ├── routes │ │ ├── auth │ │ │ ├── auth.controller.js │ │ │ └── auth.routes.js │ │ ├── index.js │ │ └── token │ │ │ ├── token.controller.js │ │ │ └── token.routes.js │ ├── server.js │ ├── services │ │ ├── apolloUpload │ │ │ ├── apolloUpload.js │ │ │ └── index.js │ │ ├── authentication │ │ │ ├── authService.js │ │ │ ├── index.js │ │ │ ├── isAuthenticated.js │ │ │ ├── signToken.js │ │ │ └── subscriptions.js │ │ ├── db │ │ │ ├── db.js │ │ │ └── index.js │ │ ├── index.js │ │ ├── logger │ │ │ ├── index.js │ │ │ └── logger.js │ │ ├── mailer │ │ │ ├── index.js │ │ │ ├── mailer.js │ │ │ ├── templates.js │ │ │ └── templates.test.js │ │ ├── pubsub │ │ │ ├── index.js │ │ │ └── pubsub.js │ │ └── redis │ │ │ ├── index.js │ │ │ └── redis.js │ └── utils │ │ ├── index.js │ │ ├── normalizePort.js │ │ └── normalizePort.test.js ├── src │ ├── clientEntry.js │ ├── components │ │ ├── App │ │ │ ├── App.js │ │ │ ├── App.test.js │ │ │ ├── __snapshots__ │ │ │ │ └── App.test.js.snap │ │ │ ├── getSettings.graphql │ │ │ └── index.js │ │ ├── DynamicContent │ │ │ ├── DynamicContent.js │ │ │ ├── DynamicContent.test.js │ │ │ ├── __snapshots__ │ │ │ │ └── DynamicContent.test.js.snap │ │ │ └── index.js │ │ ├── Flex │ │ │ ├── Flex.js │ │ │ ├── Flex.md │ │ │ └── index.js │ │ ├── Html │ │ │ ├── Html.js │ │ │ └── index.js │ │ ├── Notifications │ │ │ ├── Container.js │ │ │ ├── Container.test.js │ │ │ ├── Notif.js │ │ │ ├── Notification.js │ │ │ ├── Notification.test.js │ │ │ ├── NotificationContainer.js │ │ │ ├── NotificationContainer.test.js │ │ │ ├── animations │ │ │ │ ├── animations.js │ │ │ │ ├── getAnimation.js │ │ │ │ └── getAnimation.test.js │ │ │ ├── boldrNotificationFactory.test.js │ │ │ ├── boldrNotificationsFactory.js │ │ │ ├── helpers │ │ │ │ ├── utils.js │ │ │ │ └── utils.test.js │ │ │ └── index.js │ │ ├── ProtectedRoute │ │ │ ├── ProtectedRoute.js │ │ │ └── index.js │ │ ├── Root │ │ │ ├── Root.js │ │ │ └── index.js │ │ ├── StatusRoute │ │ │ ├── StatusRoute.js │ │ │ └── index.js │ │ └── index.js │ ├── core │ │ ├── constants.js │ │ ├── index.js │ │ └── reduxFormErrors.js │ ├── pages │ │ ├── About │ │ │ ├── About.js │ │ │ ├── About.test.js │ │ │ ├── __snapshots__ │ │ │ │ └── About.test.js.snap │ │ │ ├── index.js │ │ │ └── initialContent.js │ │ ├── Error404 │ │ │ ├── Error404.js │ │ │ ├── Error404.test.js │ │ │ ├── __snapshots__ │ │ │ │ └── Error404.test.js.snap │ │ │ └── index.js │ │ ├── Home │ │ │ ├── Home.js │ │ │ ├── Home.test.js │ │ │ ├── __snapshots__ │ │ │ │ └── Home.test.js.snap │ │ │ └── index.js │ │ └── Page │ │ │ ├── Page.js │ │ │ ├── components │ │ │ ├── Navigation │ │ │ │ ├── Navigation.js │ │ │ │ └── index.js │ │ │ └── PageLayout │ │ │ │ ├── PageLayout.js │ │ │ │ └── index.js │ │ │ ├── gql │ │ │ ├── getMenu.graphql │ │ │ ├── page.graphql │ │ │ └── singlePage.graphql │ │ │ └── index.js │ ├── reducers.js │ ├── reducers.test.js │ ├── routePaths.js │ ├── scenes │ │ ├── Account │ │ │ ├── AccountContainer.js │ │ │ ├── ForgotPassword │ │ │ │ ├── ForgotPassword.js │ │ │ │ ├── ForgotPassword.test.js │ │ │ │ ├── ForgotPasswordForm.js │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── ForgotPassword.test.js.snap │ │ │ │ └── index.js │ │ │ ├── Login │ │ │ │ ├── Login.js │ │ │ │ ├── Login.test.js │ │ │ │ ├── LoginContainer.js │ │ │ │ ├── LoginForm.js │ │ │ │ └── index.js │ │ │ ├── Preferences │ │ │ │ ├── Preferences.js │ │ │ │ ├── PreferencesContainer.js │ │ │ │ ├── components │ │ │ │ │ ├── EditProfile │ │ │ │ │ │ ├── EditProfile.js │ │ │ │ │ │ └── index.js │ │ │ │ │ └── ProfileForm │ │ │ │ │ │ ├── ProfileForm.js │ │ │ │ │ │ ├── ProfileForm.test.js │ │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── ResetPassword │ │ │ │ ├── ResetPassword.js │ │ │ │ ├── ResetPassword.test.js │ │ │ │ ├── ResetPasswordForm.js │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── ResetPassword.test.js.snap │ │ │ │ └── index.js │ │ │ ├── Signup │ │ │ │ ├── Signup.js │ │ │ │ ├── Signup.test.js │ │ │ │ ├── SignupContainer.js │ │ │ │ ├── SignupForm.js │ │ │ │ └── index.js │ │ │ ├── Verify │ │ │ │ ├── Verify.js │ │ │ │ ├── Verify.test.js │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── Verify.test.js.snap │ │ │ │ └── index.js │ │ │ ├── gql │ │ │ │ ├── login.mutation.graphql │ │ │ │ └── signup.mutation.graphql │ │ │ ├── index.js │ │ │ ├── routes.js │ │ │ └── state │ │ │ │ ├── actionTypes.js │ │ │ │ ├── actions.js │ │ │ │ ├── index.js │ │ │ │ ├── reducer.js │ │ │ │ ├── reducer.test.js │ │ │ │ ├── selectors.js │ │ │ │ └── selectors.test.js │ │ ├── Admin │ │ │ ├── AdminDashboard.js │ │ │ ├── Articles │ │ │ │ ├── ArticleEditor │ │ │ │ │ ├── ArticleEditor.js │ │ │ │ │ ├── ArticleEditorContainer.js │ │ │ │ │ ├── components │ │ │ │ │ │ └── EditArticleForm │ │ │ │ │ │ │ ├── EditArticleForm.js │ │ │ │ │ │ │ ├── EditorField.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── ArticleListing │ │ │ │ │ ├── Articles.js │ │ │ │ │ ├── components │ │ │ │ │ │ ├── ArticleList │ │ │ │ │ │ │ ├── ArticleList.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── ArticleListHead │ │ │ │ │ │ │ ├── ArticleListHead.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── ArticleListItem │ │ │ │ │ │ │ ├── ArticleListItem.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── ArticlePreview │ │ │ │ │ │ │ ├── ArticlePreview.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── NewArticle │ │ │ │ │ ├── NewArticle.js │ │ │ │ │ ├── NewArticleContainer.js │ │ │ │ │ ├── components │ │ │ │ │ │ ├── NewArticleForm │ │ │ │ │ │ │ ├── FieldEditor.js │ │ │ │ │ │ │ ├── NewArticleForm.js │ │ │ │ │ │ │ ├── NewPostStyled.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── RenderTags │ │ │ │ │ │ │ ├── RenderTags.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ └── gql │ │ │ │ │ ├── article.graphql │ │ │ │ │ ├── articles.graphql │ │ │ │ │ ├── createArticle.mutation.graphql │ │ │ │ │ ├── deleteArticle.mutation.graphql │ │ │ │ │ └── editArticle.mutation.graphql │ │ │ ├── Content │ │ │ │ ├── Content.js │ │ │ │ ├── ContentType │ │ │ │ │ ├── CreateContainer.js │ │ │ │ │ ├── CreateContentType.js │ │ │ │ │ └── components │ │ │ │ │ │ └── ContentTypeForm │ │ │ │ │ │ ├── ContentTypeForm.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── components │ │ │ │ │ └── ContentTypeForm │ │ │ │ │ │ ├── ContentTypeForm.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── gql │ │ │ │ │ ├── categories.graphql │ │ │ │ │ ├── contentRoot.graphql │ │ │ │ │ ├── contentTypes.graphql │ │ │ │ │ └── createContentType.graphql │ │ │ │ └── index.js │ │ │ ├── DashboardLanding.js │ │ │ ├── Media │ │ │ │ ├── Media.js │ │ │ │ ├── MediaManager │ │ │ │ │ ├── MediaManager.js │ │ │ │ │ ├── components │ │ │ │ │ │ └── MediaForm │ │ │ │ │ │ │ ├── MediaForm.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── UploadMedia │ │ │ │ │ ├── UploadMedia.js │ │ │ │ │ ├── components │ │ │ │ │ │ └── Dropzone │ │ │ │ │ │ │ ├── Dropzone.js │ │ │ │ │ │ │ ├── Dropzone.styled.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── gql │ │ │ │ │ ├── deleteMedia.graphql │ │ │ │ │ ├── editMedia.graphql │ │ │ │ │ ├── getMedia.graphql │ │ │ │ │ ├── mediaById.graphql │ │ │ │ │ └── uploadMedia.graphql │ │ │ │ └── index.js │ │ │ ├── Members │ │ │ │ ├── Members.js │ │ │ │ ├── MembersContainer.js │ │ │ │ ├── components │ │ │ │ │ ├── EditMemberForm │ │ │ │ │ │ ├── EditMemberForm.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── MemberCard │ │ │ │ │ │ ├── MemberCard.js │ │ │ │ │ │ ├── MemberCard.test.js │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── MemberCard.test.js.snap │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── MembersList │ │ │ │ │ │ ├── MembersList.js │ │ │ │ │ │ ├── MembersList.test.js │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ └── users.graphql │ │ │ ├── Navigation │ │ │ │ ├── NavigationContainer.js │ │ │ │ ├── components │ │ │ │ │ ├── NavigationEditor │ │ │ │ │ │ ├── NavigationEditor.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── NavigationForm │ │ │ │ │ │ ├── NavigationForm.js │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ └── menu.graphql │ │ │ ├── Settings │ │ │ │ ├── SettingForm.js │ │ │ │ ├── Settings.js │ │ │ │ ├── Settings.test.js │ │ │ │ ├── __fixtures__ │ │ │ │ │ └── settings.fixture.js │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── Settings.test.js.snap │ │ │ │ ├── components │ │ │ │ │ └── SettingsAside │ │ │ │ │ │ ├── SettingsAside.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── gql │ │ │ │ │ └── settings.graphql │ │ │ │ └── index.js │ │ │ ├── Tags │ │ │ │ ├── Tags.js │ │ │ │ ├── __fixtures__ │ │ │ │ │ └── tags.fixtures.js │ │ │ │ ├── components │ │ │ │ │ ├── AddTag │ │ │ │ │ │ ├── AddTag.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── TagList │ │ │ │ │ │ ├── TagList.js │ │ │ │ │ │ ├── TagList.test.js │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── TagList.test.js.snap │ │ │ │ │ │ └── index.js │ │ │ │ │ └── TaggedPost │ │ │ │ │ │ ├── TaggedPost.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── gql │ │ │ │ │ ├── addTag.mutation.graphql │ │ │ │ │ ├── articlesTag.graphql │ │ │ │ │ ├── deleteTag.mutation.graphql │ │ │ │ │ └── tags.graphql │ │ │ │ └── index.js │ │ │ ├── components │ │ │ │ ├── DashboardFooter │ │ │ │ │ ├── DashboardFooter.js │ │ │ │ │ ├── DashboardFooter.md │ │ │ │ │ ├── DashboardFooter.test.js │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── DashboardFooter.test.js.snap │ │ │ │ │ └── index.js │ │ │ │ ├── DashboardMain │ │ │ │ │ ├── DashboardMain.js │ │ │ │ │ ├── DashboardMain.test.js │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── DashboardMain.test.js.snap │ │ │ │ │ └── index.js │ │ │ │ ├── Layout │ │ │ │ │ ├── Layout.js │ │ │ │ │ ├── Layout.test.js │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── Layout.test.js.snap │ │ │ │ │ └── index.js │ │ │ │ ├── Navigation │ │ │ │ │ ├── Navigation.js │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── routes.js │ │ │ └── state │ │ │ │ ├── actionTypes.js │ │ │ │ ├── dashboard │ │ │ │ ├── actions.js │ │ │ │ ├── actions.test.js │ │ │ │ ├── index.js │ │ │ │ ├── reducer.js │ │ │ │ └── reducer.test.js │ │ │ │ ├── index.js │ │ │ │ ├── media │ │ │ │ ├── actionTypes.js │ │ │ │ ├── actions.js │ │ │ │ ├── index.js │ │ │ │ ├── reducer.js │ │ │ │ └── reducer.test.js │ │ │ │ ├── members │ │ │ │ ├── actions.js │ │ │ │ ├── index.js │ │ │ │ ├── reducer.js │ │ │ │ └── reducer.test.js │ │ │ │ ├── reducer.js │ │ │ │ └── selectors │ │ │ │ ├── adminSelectors.js │ │ │ │ ├── adminSelectors.test.js │ │ │ │ ├── articleSelectors.js │ │ │ │ └── articleSelectors.test.js │ │ ├── Blog │ │ │ ├── Article │ │ │ │ ├── Article.js │ │ │ │ └── index.js │ │ │ ├── TagList │ │ │ │ ├── TagList.js │ │ │ │ └── index.js │ │ │ ├── components │ │ │ │ ├── ArticleCard │ │ │ │ │ ├── ArticleCard.js │ │ │ │ │ ├── ArticleCard.test.js │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── ArticleCard.test.js.snap │ │ │ │ │ └── index.js │ │ │ │ ├── ArticleContent │ │ │ │ │ ├── ArticleContent.js │ │ │ │ │ ├── ArticleContent.test.js │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── ArticleContent.test.js.snap │ │ │ │ │ └── index.js │ │ │ │ ├── ArticleDate │ │ │ │ │ ├── ArticleDate.js │ │ │ │ │ ├── ArticleDate.test.js │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── ArticleDate.test.js.snap │ │ │ │ │ └── index.js │ │ │ │ ├── ArticleFooter │ │ │ │ │ ├── ArticleFooter.js │ │ │ │ │ ├── ArticleFooter.test.js │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── ArticleFooter.test.js.snap │ │ │ │ │ └── index.js │ │ │ │ ├── ArticleImage │ │ │ │ │ ├── ArticleImage.js │ │ │ │ │ ├── ArticleImage.test.js │ │ │ │ │ └── index.js │ │ │ │ ├── ArticleTitle │ │ │ │ │ ├── ArticleTitle.js │ │ │ │ │ ├── ArticleTitle.test.js │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── ArticleTitle.test.js.snap │ │ │ │ │ └── index.js │ │ │ │ ├── TagBlock │ │ │ │ │ ├── TagBlock.js │ │ │ │ │ ├── TagBlock.test.js │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── TagBlock.test.js.snap │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── gql │ │ │ │ ├── article.graphql │ │ │ │ ├── articles.graphql │ │ │ │ ├── articlesForTag.graphql │ │ │ │ └── user.graphql │ │ │ └── state │ │ │ │ ├── __fixtures__ │ │ │ │ ├── article.fixture.js │ │ │ │ └── tag.fixture.js │ │ │ │ ├── actionTypes.js │ │ │ │ ├── actions.js │ │ │ │ ├── index.js │ │ │ │ ├── reducer.js │ │ │ │ └── reducer.test.js │ │ └── Profile │ │ │ ├── Profile.js │ │ │ ├── components │ │ │ ├── ProfileContent │ │ │ │ ├── ProfileContent.js │ │ │ │ ├── ProfileContent.test.js │ │ │ │ └── index.js │ │ │ ├── ProfileDetail │ │ │ │ ├── ProfileDetail.js │ │ │ │ ├── ProfileDetail.test.js │ │ │ │ └── index.js │ │ │ └── index.js │ │ │ ├── gql │ │ │ └── userProfile.graphql │ │ │ └── index.js │ ├── serverEntry.js │ ├── styles │ │ ├── _overrides.scss │ │ ├── abstracts │ │ │ ├── _all.scss │ │ │ ├── _colors.scss │ │ │ ├── _functions.scss │ │ │ ├── _mixins.scss │ │ │ └── _variables.scss │ │ ├── base │ │ │ ├── _all.scss │ │ │ ├── _animate.scss │ │ │ ├── _form-control.scss │ │ │ ├── _global.scss │ │ │ ├── _grid.scss │ │ │ ├── _helpers.scss │ │ │ └── _ripple.scss │ │ ├── components │ │ │ ├── _accordion.scss │ │ │ ├── _alert.scss │ │ │ ├── _all.scss │ │ │ ├── _avatar.scss │ │ │ ├── _block.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button.scss │ │ │ ├── _card.scss │ │ │ ├── _collapsible.scss │ │ │ ├── _content-promo.scss │ │ │ ├── _dialog.scss │ │ │ ├── _divider.scss │ │ │ ├── _drawer.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _dropzone.scss │ │ │ ├── _editor.scss │ │ │ ├── _flag.scss │ │ │ ├── _heading.scss │ │ │ ├── _hero.scss │ │ │ ├── _icon-btn.scss │ │ │ ├── _image-display.scss │ │ │ ├── _image.scss │ │ │ ├── _level.scss │ │ │ ├── _loader.scss │ │ │ ├── _menu.scss │ │ │ ├── _navbar.scss │ │ │ ├── _notification.scss │ │ │ ├── _paper.scss │ │ │ ├── _paragraph.scss │ │ │ ├── _pop.scss │ │ │ ├── _section.scss │ │ │ ├── _select.scss │ │ │ ├── _tabs.scss │ │ │ ├── _tags.scss │ │ │ ├── _tooltip.scss │ │ │ ├── blog │ │ │ │ ├── _all.scss │ │ │ │ ├── _article-sidebar.scss │ │ │ │ ├── _article.scss │ │ │ │ └── _tags.scss │ │ │ ├── form │ │ │ │ └── _all.scss │ │ │ └── profile │ │ │ │ ├── _all.scss │ │ │ │ ├── _profile-detail.scss │ │ │ │ └── _profile.scss │ │ ├── main.scss │ │ └── vendor │ │ │ ├── _all.scss │ │ │ ├── _draft.scss │ │ │ ├── _normalize.scss │ │ │ └── _rc-tabs.scss │ ├── theme │ │ ├── index.js │ │ ├── styleClasses.js │ │ └── theme.js │ └── types │ │ ├── boldr.js │ │ └── state.js └── yarn.lock └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/.drone.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact = true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8.6 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /docs/assets/boldr-text-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/docs/assets/boldr-text-logo.png -------------------------------------------------------------------------------- /docs/assets/db-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/docs/assets/db-diagram.png -------------------------------------------------------------------------------- /docs/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/docs/editor.md -------------------------------------------------------------------------------- /docs/navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/docs/navigation.md -------------------------------------------------------------------------------- /docs/nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/docs/nginx.md -------------------------------------------------------------------------------- /docs/pkgs/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/docs/pkgs/cli.md -------------------------------------------------------------------------------- /docs/pkgs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/docs/pkgs/config.md -------------------------------------------------------------------------------- /docs/pkgs/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/docs/pkgs/core.md -------------------------------------------------------------------------------- /docs/pkgs/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/docs/pkgs/tools.md -------------------------------------------------------------------------------- /docs/production.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/docs/production.md -------------------------------------------------------------------------------- /docs/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/docs/setup.md -------------------------------------------------------------------------------- /flow-typed/npm/@boldr/auth_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/@boldr/auth_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/@boldr/cli_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/@boldr/cli_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/@boldr/config_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/@boldr/config_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/@boldr/core_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/@boldr/core_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/@boldr/icons_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/@boldr/icons_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/@boldr/utils_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/@boldr/utils_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/autoprefixer_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/autoprefixer_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-cli_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/babel-cli_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-core_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/babel-core_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-eslint_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/babel-eslint_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-jest_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/babel-jest_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-plugin-module-resolver_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/babel-plugin-module-resolver_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-preset-boldr_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/babel-preset-boldr_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-preset-env_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/babel-preset-env_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-watch_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/babel-watch_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/bluebird_v3.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/bluebird_v3.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/chalk_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/chalk_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/codecov_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/codecov_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/color_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/color_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/commitizen_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/commitizen_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/cross-env_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/cross-env_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/cz-emoji_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/cz-emoji_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/debug_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/debug_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/draft-convert_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/draft-convert_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/enzyme-to-json_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/enzyme-to-json_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/enzyme_v2.3.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/enzyme_v2.3.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint-config-boldr_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/eslint-config-boldr_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/eslint_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/express_v4.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/express_v4.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/faker_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/faker_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/flow-bin_v0.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/flow-bin_v0.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/fs-extra_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/fs-extra_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/glob_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/glob_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/history_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/history_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/humps_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/humps_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/husky_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/husky_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/identity-obj-proxy_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/identity-obj-proxy_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/immutability-helper_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/immutability-helper_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/istanbul-api_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/istanbul-api_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/istanbul-lib-coverage_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/istanbul-lib-coverage_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/jest-styled-components_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/jest-styled-components_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/jest-transform-graphql_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/jest-transform-graphql_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/jest-transform-graphql_vx.x.x.js~HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/jest-transform-graphql_vx.x.x.js~HEAD -------------------------------------------------------------------------------- /flow-typed/npm/jest-transform-graphql_vx.x.x.js~HEAD_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/jest-transform-graphql_vx.x.x.js~HEAD_0 -------------------------------------------------------------------------------- /flow-typed/npm/jest-transform-graphql_vx.x.x.js~develop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/jest-transform-graphql_vx.x.x.js~develop -------------------------------------------------------------------------------- /flow-typed/npm/jest_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/jest_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/lerna_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/lerna_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/lint-staged_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/lint-staged_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/lodash_v4.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/lodash_v4.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/mockdate_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/mockdate_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/nodemon_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/nodemon_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/prettier_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/prettier_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/ramda_v0.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/ramda_v0.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-dropzone_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/react-dropzone_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-helmet_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/react-helmet_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-hot-loader_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/react-hot-loader_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-redux_v5.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/react-redux_v5.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-router-dom_v4.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/react-router-dom_v4.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-router-dom_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/react-router-dom_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-router-redux_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/react-router-redux_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-tagsinput_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/react-tagsinput_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-test-renderer_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/react-test-renderer_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-transition-group_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/react-transition-group_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/recompact_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/recompact_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/recompose_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/recompose_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/redbox-react_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/redbox-react_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/redux-mock-store_v1.2.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/redux-mock-store_v1.2.x.js -------------------------------------------------------------------------------- /flow-typed/npm/redux-thunk_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/redux-thunk_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/redux_v3.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/redux_v3.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/reselect_v3.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/reselect_v3.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/rimraf_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/rimraf_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/semver_v5.1.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/semver_v5.1.x.js -------------------------------------------------------------------------------- /flow-typed/npm/serialize-javascript_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/serialize-javascript_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/shelljs_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/shelljs_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/shortid_v2.2.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/shortid_v2.2.x.js -------------------------------------------------------------------------------- /flow-typed/npm/sinon_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/sinon_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/styled-components_v2.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/styled-components_v2.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/supertest_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/supertest_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/why-did-you-update_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/flow-typed/npm/why-did-you-update_vx.x.x.js -------------------------------------------------------------------------------- /graphql.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/graphql.config.json -------------------------------------------------------------------------------- /internal/flow/defs/boldr-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/internal/flow/defs/boldr-tools.js -------------------------------------------------------------------------------- /internal/flow/defs/classnames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/internal/flow/defs/classnames.js -------------------------------------------------------------------------------- /internal/flow/defs/commonjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/internal/flow/defs/commonjs.js -------------------------------------------------------------------------------- /internal/flow/defs/es6modules.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | declare var System: { 4 | import(path: string): any, 5 | }; 6 | -------------------------------------------------------------------------------- /internal/flow/defs/react-universal-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/internal/flow/defs/react-universal-component.js -------------------------------------------------------------------------------- /internal/flow/stubs/WebpackAsset.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | declare export default string 4 | -------------------------------------------------------------------------------- /internal/scripts/mapCoverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/internal/scripts/mapCoverage.js -------------------------------------------------------------------------------- /internal/scripts/post-install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/internal/scripts/post-install.js -------------------------------------------------------------------------------- /internal/scripts/prettier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/internal/scripts/prettier.js -------------------------------------------------------------------------------- /internal/scripts/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/internal/scripts/task.js -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/package.json -------------------------------------------------------------------------------- /packages/backend/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/backend/.babelrc -------------------------------------------------------------------------------- /packages/backend/.boldr/config/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/backend/.boldr/config/default.js -------------------------------------------------------------------------------- /packages/backend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/backend/.editorconfig -------------------------------------------------------------------------------- /packages/backend/.env: -------------------------------------------------------------------------------- 1 | SERVER_PORT = 3000 2 | -------------------------------------------------------------------------------- /packages/backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | build 4 | bin 5 | lib 6 | -------------------------------------------------------------------------------- /packages/backend/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/backend/.npmignore -------------------------------------------------------------------------------- /packages/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/backend/package.json -------------------------------------------------------------------------------- /packages/backend/src/createBackend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/backend/src/createBackend.js -------------------------------------------------------------------------------- /packages/backend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/backend/src/index.js -------------------------------------------------------------------------------- /packages/backend/src/middleware/initCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/backend/src/middleware/initCore.js -------------------------------------------------------------------------------- /packages/backend/src/middleware/initErrorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/backend/src/middleware/initErrorHandler.js -------------------------------------------------------------------------------- /packages/backend/src/middleware/initSecurity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/backend/src/middleware/initSecurity.js -------------------------------------------------------------------------------- /packages/backend/src/middleware/queryLogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/backend/src/middleware/queryLogger.js -------------------------------------------------------------------------------- /packages/backend/src/services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/backend/src/services/index.js -------------------------------------------------------------------------------- /packages/backend/src/services/mailer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/backend/src/services/mailer/index.js -------------------------------------------------------------------------------- /packages/backend/src/services/mailer/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/backend/src/services/mailer/templates.js -------------------------------------------------------------------------------- /packages/backend/src/services/redis/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/backend/src/services/redis/index.js -------------------------------------------------------------------------------- /packages/backend/src/services/redis/redis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/backend/src/services/redis/redis.js -------------------------------------------------------------------------------- /packages/backend/src/utils/asyncRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/backend/src/utils/asyncRouter.js -------------------------------------------------------------------------------- /packages/backend/src/utils/normalizePort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/backend/src/utils/normalizePort.js -------------------------------------------------------------------------------- /packages/backend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/backend/yarn.lock -------------------------------------------------------------------------------- /packages/cli/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/.babelrc -------------------------------------------------------------------------------- /packages/cli/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/.eslintrc -------------------------------------------------------------------------------- /packages/cli/.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | node_modules 3 | -------------------------------------------------------------------------------- /packages/cli/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/.npmignore -------------------------------------------------------------------------------- /packages/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/LICENSE -------------------------------------------------------------------------------- /packages/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/README.md -------------------------------------------------------------------------------- /packages/cli/bin/boldr.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/cli.js'); 3 | -------------------------------------------------------------------------------- /packages/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/package.json -------------------------------------------------------------------------------- /packages/cli/src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/src/cli.js -------------------------------------------------------------------------------- /packages/cli/src/commands/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/src/commands/clean.js -------------------------------------------------------------------------------- /packages/cli/src/commands/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/src/commands/dev.js -------------------------------------------------------------------------------- /packages/cli/src/commands/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/src/commands/init.js -------------------------------------------------------------------------------- /packages/cli/src/commands/migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/src/commands/migrate.js -------------------------------------------------------------------------------- /packages/cli/src/commands/migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/src/commands/migration.js -------------------------------------------------------------------------------- /packages/cli/src/commands/seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/src/commands/seed.js -------------------------------------------------------------------------------- /packages/cli/src/util/partialPkg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/src/util/partialPkg.js -------------------------------------------------------------------------------- /packages/cli/static/.boldr/config/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/static/.boldr/config/default.js -------------------------------------------------------------------------------- /packages/cli/static/.boldr/db/postgres-initdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/static/.boldr/db/postgres-initdb.sh -------------------------------------------------------------------------------- /packages/cli/static/.boldr/db/seeds/initial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/static/.boldr/db/seeds/initial.js -------------------------------------------------------------------------------- /packages/cli/static/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/static/.env.example -------------------------------------------------------------------------------- /packages/cli/static/hello.js: -------------------------------------------------------------------------------- 1 | module.exports = 'helo'; 2 | -------------------------------------------------------------------------------- /packages/cli/static/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/static/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /packages/cli/static/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/static/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /packages/cli/static/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/static/public/apple-touch-icon.png -------------------------------------------------------------------------------- /packages/cli/static/public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/static/public/browserconfig.xml -------------------------------------------------------------------------------- /packages/cli/static/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/static/public/favicon-16x16.png -------------------------------------------------------------------------------- /packages/cli/static/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/static/public/favicon-32x32.png -------------------------------------------------------------------------------- /packages/cli/static/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/static/public/favicon.ico -------------------------------------------------------------------------------- /packages/cli/static/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/static/public/manifest.json -------------------------------------------------------------------------------- /packages/cli/static/public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/static/public/mstile-150x150.png -------------------------------------------------------------------------------- /packages/cli/static/public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/static/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /packages/cli/static/src/clientEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/static/src/clientEntry.js -------------------------------------------------------------------------------- /packages/cli/static/src/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/static/src/reducers.js -------------------------------------------------------------------------------- /packages/cli/static/src/serverEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/static/src/serverEntry.js -------------------------------------------------------------------------------- /packages/cli/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/cli/yarn.lock -------------------------------------------------------------------------------- /packages/config/.npmignore: -------------------------------------------------------------------------------- 1 | .git 2 | node_modules 3 | __tests__ 4 | yarn.lock 5 | -------------------------------------------------------------------------------- /packages/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/config/README.md -------------------------------------------------------------------------------- /packages/config/__tests__/js-conf.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/config/__tests__/js-conf.test.js -------------------------------------------------------------------------------- /packages/config/__tests__/json-conf.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/config/__tests__/json-conf.test.js -------------------------------------------------------------------------------- /packages/config/__tests__/no-conf.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/config/__tests__/no-conf.test.js -------------------------------------------------------------------------------- /packages/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/config/config.js -------------------------------------------------------------------------------- /packages/config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/config/package.json -------------------------------------------------------------------------------- /packages/config/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/config/yarn.lock -------------------------------------------------------------------------------- /packages/core/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/.babelrc -------------------------------------------------------------------------------- /packages/core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/.gitignore -------------------------------------------------------------------------------- /packages/core/.npmignore: -------------------------------------------------------------------------------- 1 | node-modules 2 | .idea 3 | src 4 | .babelrc 5 | -------------------------------------------------------------------------------- /packages/core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/LICENSE -------------------------------------------------------------------------------- /packages/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/README.md -------------------------------------------------------------------------------- /packages/core/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/browserslist -------------------------------------------------------------------------------- /packages/core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/index.js -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/src/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/client.js -------------------------------------------------------------------------------- /packages/core/src/client/configBrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/client/configBrowser.js -------------------------------------------------------------------------------- /packages/core/src/client/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/client/render.js -------------------------------------------------------------------------------- /packages/core/src/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/common.js -------------------------------------------------------------------------------- /packages/core/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/server.js -------------------------------------------------------------------------------- /packages/core/src/server/renderHtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/server/renderHtml.js -------------------------------------------------------------------------------- /packages/core/src/server/serverRender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/server/serverRender.js -------------------------------------------------------------------------------- /packages/core/src/server/ssrHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/server/ssrHandler.js -------------------------------------------------------------------------------- /packages/core/src/shared/apollo/createApolloClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/shared/apollo/createApolloClient.js -------------------------------------------------------------------------------- /packages/core/src/shared/apollo/extractFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/shared/apollo/extractFiles.js -------------------------------------------------------------------------------- /packages/core/src/shared/apollo/networkInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/shared/apollo/networkInterface.js -------------------------------------------------------------------------------- /packages/core/src/shared/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/shared/history.js -------------------------------------------------------------------------------- /packages/core/src/shared/state/boldr/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/shared/state/boldr/actionTypes.js -------------------------------------------------------------------------------- /packages/core/src/shared/state/boldr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/shared/state/boldr/index.js -------------------------------------------------------------------------------- /packages/core/src/shared/state/boldr/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/shared/state/boldr/reducer.js -------------------------------------------------------------------------------- /packages/core/src/shared/state/boldr/reducer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/shared/state/boldr/reducer.test.js -------------------------------------------------------------------------------- /packages/core/src/shared/state/boldr/ui/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/shared/state/boldr/ui/actions.js -------------------------------------------------------------------------------- /packages/core/src/shared/state/boldr/ui/actions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/shared/state/boldr/ui/actions.test.js -------------------------------------------------------------------------------- /packages/core/src/shared/state/boldr/ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/shared/state/boldr/ui/index.js -------------------------------------------------------------------------------- /packages/core/src/shared/state/boldr/ui/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/shared/state/boldr/ui/reducer.js -------------------------------------------------------------------------------- /packages/core/src/shared/state/boldr/ui/reducer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/shared/state/boldr/ui/reducer.test.js -------------------------------------------------------------------------------- /packages/core/src/shared/state/createBoldrStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/shared/state/createBoldrStore.js -------------------------------------------------------------------------------- /packages/core/src/shared/state/createBoldrStore.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/shared/state/createBoldrStore.test.js -------------------------------------------------------------------------------- /packages/core/src/shared/storage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/shared/storage/index.js -------------------------------------------------------------------------------- /packages/core/src/shared/storage/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/shared/storage/storage.js -------------------------------------------------------------------------------- /packages/core/src/shared/storage/storage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/shared/storage/storage.test.js -------------------------------------------------------------------------------- /packages/core/src/shared/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/shared/token.js -------------------------------------------------------------------------------- /packages/core/src/shared/token.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/shared/token.test.js -------------------------------------------------------------------------------- /packages/core/src/shared/wrapBoldrApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/shared/wrapBoldrApp.js -------------------------------------------------------------------------------- /packages/core/src/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/types.js -------------------------------------------------------------------------------- /packages/core/src/util/flattenRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/util/flattenRoutes.js -------------------------------------------------------------------------------- /packages/core/src/util/validations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/src/util/validations.js -------------------------------------------------------------------------------- /packages/core/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/core/yarn.lock -------------------------------------------------------------------------------- /packages/editor/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/.babelrc -------------------------------------------------------------------------------- /packages/editor/.gitignore: -------------------------------------------------------------------------------- 1 | es 2 | node_modules 3 | umd 4 | /*.js 5 | !rollup.config.js 6 | lib 7 | coverage 8 | -------------------------------------------------------------------------------- /packages/editor/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/.npmignore -------------------------------------------------------------------------------- /packages/editor/.storybook/addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/.storybook/addons.js -------------------------------------------------------------------------------- /packages/editor/.storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/.storybook/config.js -------------------------------------------------------------------------------- /packages/editor/.storybook/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/.storybook/webpack.config.js -------------------------------------------------------------------------------- /packages/editor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/package.json -------------------------------------------------------------------------------- /packages/editor/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/rollup.config.js -------------------------------------------------------------------------------- /packages/editor/src/BoldrEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/BoldrEditor.js -------------------------------------------------------------------------------- /packages/editor/src/BoldrEditorType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/BoldrEditorType.js -------------------------------------------------------------------------------- /packages/editor/src/components/Controls/BlockType/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './BlockType'; 2 | -------------------------------------------------------------------------------- /packages/editor/src/components/Controls/ColorPicker/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ColorPicker'; 2 | -------------------------------------------------------------------------------- /packages/editor/src/components/Controls/Embedded/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Embedded'; 2 | -------------------------------------------------------------------------------- /packages/editor/src/components/Controls/Emoji/Emoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Controls/Emoji/Emoji.js -------------------------------------------------------------------------------- /packages/editor/src/components/Controls/Emoji/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Emoji'; 2 | -------------------------------------------------------------------------------- /packages/editor/src/components/Controls/FontFamily/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './FontFamily'; 2 | -------------------------------------------------------------------------------- /packages/editor/src/components/Controls/FontSize/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './FontSize'; 2 | -------------------------------------------------------------------------------- /packages/editor/src/components/Controls/History/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './History'; 2 | -------------------------------------------------------------------------------- /packages/editor/src/components/Controls/Image/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Controls/Image/Image.js -------------------------------------------------------------------------------- /packages/editor/src/components/Controls/Image/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Image'; 2 | -------------------------------------------------------------------------------- /packages/editor/src/components/Controls/Inline/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Inline'; 2 | -------------------------------------------------------------------------------- /packages/editor/src/components/Controls/Link/Link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Controls/Link/Link.js -------------------------------------------------------------------------------- /packages/editor/src/components/Controls/Link/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Link'; 2 | -------------------------------------------------------------------------------- /packages/editor/src/components/Controls/List/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Controls/List/List.js -------------------------------------------------------------------------------- /packages/editor/src/components/Controls/List/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './List'; 2 | -------------------------------------------------------------------------------- /packages/editor/src/components/Controls/Remove/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Remove'; 2 | -------------------------------------------------------------------------------- /packages/editor/src/components/Controls/TextAlign/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './TextAlign'; 2 | -------------------------------------------------------------------------------- /packages/editor/src/components/Controls/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Controls/index.js -------------------------------------------------------------------------------- /packages/editor/src/components/Dropdown/Dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Dropdown/Dropdown.js -------------------------------------------------------------------------------- /packages/editor/src/components/Dropdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Dropdown/index.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/AlignCenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/AlignCenter.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/AlignJustify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/AlignJustify.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/AlignLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/AlignLeft.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/AlignRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/AlignRight.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Bold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Bold.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Browser.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Code.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Edit.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Eraser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Eraser.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/ExternalLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/ExternalLink.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/EyeDropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/EyeDropper.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Font.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/H1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/H1.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/H2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/H2.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/H3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/H3.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Heading.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Icon.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Image.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Indent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Indent.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Italic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Italic.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Link.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/List.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/ListOl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/ListOl.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/ListUl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/ListUl.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Outdent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Outdent.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/PaintBrush.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/PaintBrush.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Paragraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Paragraph.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/QuoteLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/QuoteLeft.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Redo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Redo.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Smile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Smile.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Strikethrough.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Strikethrough.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Subscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Subscript.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Superscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Superscript.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Underline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Underline.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Undo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Undo.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Unlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Unlink.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/Video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/Video.js -------------------------------------------------------------------------------- /packages/editor/src/components/Icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Icons/index.js -------------------------------------------------------------------------------- /packages/editor/src/components/Option/Option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Option/Option.js -------------------------------------------------------------------------------- /packages/editor/src/components/Option/Option.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Option/Option.test.js -------------------------------------------------------------------------------- /packages/editor/src/components/Option/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Option'; 2 | -------------------------------------------------------------------------------- /packages/editor/src/components/Spinner/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Spinner/Spinner.js -------------------------------------------------------------------------------- /packages/editor/src/components/Spinner/Spinner.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/components/Spinner/Spinner.test.js -------------------------------------------------------------------------------- /packages/editor/src/components/Spinner/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Spinner'; 2 | -------------------------------------------------------------------------------- /packages/editor/src/core/blockRender/getEmbedRender/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './getEmbedRender'; 2 | -------------------------------------------------------------------------------- /packages/editor/src/core/blockRender/getImageRender/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './getImageRender'; 2 | -------------------------------------------------------------------------------- /packages/editor/src/core/blockRender/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/core/blockRender/index.js -------------------------------------------------------------------------------- /packages/editor/src/core/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/core/config.js -------------------------------------------------------------------------------- /packages/editor/src/core/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/core/constants.js -------------------------------------------------------------------------------- /packages/editor/src/core/constants.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/core/constants.test.js -------------------------------------------------------------------------------- /packages/editor/src/core/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/core/convert.js -------------------------------------------------------------------------------- /packages/editor/src/core/decorators/Link/Link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/core/decorators/Link/Link.js -------------------------------------------------------------------------------- /packages/editor/src/core/decorators/Link/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Link'; 2 | -------------------------------------------------------------------------------- /packages/editor/src/core/decorators/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/core/decorators/index.js -------------------------------------------------------------------------------- /packages/editor/src/core/eventHandlers/focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/core/eventHandlers/focus.js -------------------------------------------------------------------------------- /packages/editor/src/core/eventHandlers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/core/eventHandlers/index.js -------------------------------------------------------------------------------- /packages/editor/src/core/eventHandlers/keyDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/core/eventHandlers/keyDown.js -------------------------------------------------------------------------------- /packages/editor/src/core/eventHandlers/modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/core/eventHandlers/modals.js -------------------------------------------------------------------------------- /packages/editor/src/core/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/core/maps.js -------------------------------------------------------------------------------- /packages/editor/src/index.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | export { default } from './BoldrEditor'; 4 | -------------------------------------------------------------------------------- /packages/editor/src/utils/block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/utils/block.js -------------------------------------------------------------------------------- /packages/editor/src/utils/block.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/utils/block.test.js -------------------------------------------------------------------------------- /packages/editor/src/utils/blockStyleFn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/utils/blockStyleFn.js -------------------------------------------------------------------------------- /packages/editor/src/utils/blockStyleFn.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/utils/blockStyleFn.test.js -------------------------------------------------------------------------------- /packages/editor/src/utils/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/utils/common.js -------------------------------------------------------------------------------- /packages/editor/src/utils/common.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/utils/common.test.js -------------------------------------------------------------------------------- /packages/editor/src/utils/handlePaste.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/utils/handlePaste.js -------------------------------------------------------------------------------- /packages/editor/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/utils/index.js -------------------------------------------------------------------------------- /packages/editor/src/utils/inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/utils/inline.js -------------------------------------------------------------------------------- /packages/editor/src/utils/inline.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/utils/inline.test.js -------------------------------------------------------------------------------- /packages/editor/src/utils/keyEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/utils/keyEvent.js -------------------------------------------------------------------------------- /packages/editor/src/utils/keyEvent.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/utils/keyEvent.test.js -------------------------------------------------------------------------------- /packages/editor/src/utils/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/utils/list.js -------------------------------------------------------------------------------- /packages/editor/src/utils/list.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/utils/list.test.js -------------------------------------------------------------------------------- /packages/editor/src/utils/moveSelectionToEnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/utils/moveSelectionToEnd.js -------------------------------------------------------------------------------- /packages/editor/src/utils/moveSelectionToEnd.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/src/utils/moveSelectionToEnd.test.js -------------------------------------------------------------------------------- /packages/editor/stories/Demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/stories/Demo.js -------------------------------------------------------------------------------- /packages/editor/stories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/stories/index.js -------------------------------------------------------------------------------- /packages/editor/styles/boldreditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/styles/boldreditor.css -------------------------------------------------------------------------------- /packages/editor/styles/boldreditor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/styles/boldreditor.scss -------------------------------------------------------------------------------- /packages/editor/tools/babel-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/tools/babel-preset.js -------------------------------------------------------------------------------- /packages/editor/tools/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/tools/build.js -------------------------------------------------------------------------------- /packages/editor/tools/jest/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'FILE_MOCK'; 2 | -------------------------------------------------------------------------------- /packages/editor/tools/jest/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/tools/jest/setup.js -------------------------------------------------------------------------------- /packages/editor/tools/jest/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/tools/jest/transform.js -------------------------------------------------------------------------------- /packages/editor/tools/jestSetup.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/editor/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/editor/yarn.lock -------------------------------------------------------------------------------- /packages/tools/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/.babelrc -------------------------------------------------------------------------------- /packages/tools/.boldr/config/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/.boldr/config/default.js -------------------------------------------------------------------------------- /packages/tools/.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | bin 3 | *.log 4 | node_modules 5 | -------------------------------------------------------------------------------- /packages/tools/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/.npmignore -------------------------------------------------------------------------------- /packages/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/LICENSE -------------------------------------------------------------------------------- /packages/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/README.md -------------------------------------------------------------------------------- /packages/tools/flow-typed/defs/boldr-tools.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/defs/boldr-tools.js.flow -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/autoprefixer_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/autoprefixer_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/babel-loader_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/babel-loader_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/bluebird_v3.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/bluebird_v3.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/boldr-utils_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/boldr-utils_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/cache-loader_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/cache-loader_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/chalk_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/chalk_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/css-loader_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/css-loader_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/dotenv_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/dotenv_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/eslint_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/eslint_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/express_v4.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/express_v4.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/file-loader_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/file-loader_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/flow-bin_v0.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/flow-bin_v0.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/fs-extra_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/fs-extra_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/happypack_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/happypack_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/loader-utils_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/loader-utils_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/md5_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/md5_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/meow_v3.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/meow_v3.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/node-fetch_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/node-fetch_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/node-noop_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/node-noop_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/node-sass_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/node-sass_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/prepublish_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/prepublish_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/prettier_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/prettier_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/pretty-error_v2.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/pretty-error_v2.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/uglify-es_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/uglify-es_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/url-loader_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/url-loader_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/uuid_v3.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/uuid_v3.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/webpack_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/webpack_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/flow-typed/npm/whatwg-fetch_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/flow-typed/npm/whatwg-fetch_vx.x.x.js -------------------------------------------------------------------------------- /packages/tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/package.json -------------------------------------------------------------------------------- /packages/tools/src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/src/constants.js -------------------------------------------------------------------------------- /packages/tools/src/createWebpackConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/src/createWebpackConfig.js -------------------------------------------------------------------------------- /packages/tools/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/src/index.js -------------------------------------------------------------------------------- /packages/tools/src/plugins/ChunkHash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/src/plugins/ChunkHash.js -------------------------------------------------------------------------------- /packages/tools/src/plugins/ProgressPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/src/plugins/ProgressPlugin.js -------------------------------------------------------------------------------- /packages/tools/src/plugins/StatsPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/src/plugins/StatsPlugin.js -------------------------------------------------------------------------------- /packages/tools/src/plugins/happyPackPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/src/plugins/happyPackPlugin.js -------------------------------------------------------------------------------- /packages/tools/src/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/src/plugins/index.js -------------------------------------------------------------------------------- /packages/tools/src/services/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/src/services/build.js -------------------------------------------------------------------------------- /packages/tools/src/services/startDevServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/src/services/startDevServer.js -------------------------------------------------------------------------------- /packages/tools/src/services/startRenderServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/src/services/startRenderServer.js -------------------------------------------------------------------------------- /packages/tools/src/util/rootModuleRelativePath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/src/util/rootModuleRelativePath.js -------------------------------------------------------------------------------- /packages/tools/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/tools/yarn.lock -------------------------------------------------------------------------------- /packages/utils/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/.babelrc -------------------------------------------------------------------------------- /packages/utils/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | flow-typed 3 | lib 4 | .babelrc 5 | coverage 6 | -------------------------------------------------------------------------------- /packages/utils/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/.npmignore -------------------------------------------------------------------------------- /packages/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/LICENSE -------------------------------------------------------------------------------- /packages/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/README.md -------------------------------------------------------------------------------- /packages/utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/package.json -------------------------------------------------------------------------------- /packages/utils/src/arrays/addIdToArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/arrays/addIdToArray.js -------------------------------------------------------------------------------- /packages/utils/src/arrays/addIdToArray.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/arrays/addIdToArray.test.js -------------------------------------------------------------------------------- /packages/utils/src/arrays/flatten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/arrays/flatten.js -------------------------------------------------------------------------------- /packages/utils/src/arrays/flatten.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/arrays/flatten.test.js -------------------------------------------------------------------------------- /packages/utils/src/arrays/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/arrays/merge.js -------------------------------------------------------------------------------- /packages/utils/src/arrays/merge.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/arrays/merge.test.js -------------------------------------------------------------------------------- /packages/utils/src/arrays/reduce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/arrays/reduce.js -------------------------------------------------------------------------------- /packages/utils/src/arrays/reduce.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/arrays/reduce.test.js -------------------------------------------------------------------------------- /packages/utils/src/arrays/removeIdFromArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/arrays/removeIdFromArray.js -------------------------------------------------------------------------------- /packages/utils/src/arrays/removeIdFromArray.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/arrays/removeIdFromArray.test.js -------------------------------------------------------------------------------- /packages/utils/src/arrays/removeNil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/arrays/removeNil.js -------------------------------------------------------------------------------- /packages/utils/src/arrays/removeNil.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/arrays/removeNil.test.js -------------------------------------------------------------------------------- /packages/utils/src/arrays/uniqueArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/arrays/uniqueArray.js -------------------------------------------------------------------------------- /packages/utils/src/arrays/uniqueArray.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/arrays/uniqueArray.test.js -------------------------------------------------------------------------------- /packages/utils/src/dom/hasDocument.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/dom/hasDocument.js -------------------------------------------------------------------------------- /packages/utils/src/dom/hasDocument.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/dom/hasDocument.test.js -------------------------------------------------------------------------------- /packages/utils/src/dom/hasWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/dom/hasWindow.js -------------------------------------------------------------------------------- /packages/utils/src/dom/hasWindow.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/dom/hasWindow.test.js -------------------------------------------------------------------------------- /packages/utils/src/dom/inDOM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/dom/inDOM.js -------------------------------------------------------------------------------- /packages/utils/src/dom/inDOM.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/dom/inDOM.test.js -------------------------------------------------------------------------------- /packages/utils/src/dom/isWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/dom/isWindow.js -------------------------------------------------------------------------------- /packages/utils/src/dom/isWindow.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/dom/isWindow.test.js -------------------------------------------------------------------------------- /packages/utils/src/dom/ownerDocument.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/dom/ownerDocument.js -------------------------------------------------------------------------------- /packages/utils/src/dom/ownerDocument.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/dom/ownerDocument.test.js -------------------------------------------------------------------------------- /packages/utils/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/index.js -------------------------------------------------------------------------------- /packages/utils/src/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/logger.js -------------------------------------------------------------------------------- /packages/utils/src/logger.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/logger.test.js -------------------------------------------------------------------------------- /packages/utils/src/logic/curry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/logic/curry.js -------------------------------------------------------------------------------- /packages/utils/src/logic/curry.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/logic/curry.test.js -------------------------------------------------------------------------------- /packages/utils/src/logic/curryN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/logic/curryN.js -------------------------------------------------------------------------------- /packages/utils/src/logic/curryN.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/logic/curryN.test.js -------------------------------------------------------------------------------- /packages/utils/src/logic/ifElse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/logic/ifElse.js -------------------------------------------------------------------------------- /packages/utils/src/logic/ifElse.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/logic/ifElse.test.js -------------------------------------------------------------------------------- /packages/utils/src/logic/isPromise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/logic/isPromise.js -------------------------------------------------------------------------------- /packages/utils/src/logic/isPromise.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/logic/isPromise.test.js -------------------------------------------------------------------------------- /packages/utils/src/node/appRoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/node/appRoot.js -------------------------------------------------------------------------------- /packages/utils/src/node/getDefault.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/node/getDefault.js -------------------------------------------------------------------------------- /packages/utils/src/objects/filterEmpty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/objects/filterEmpty.js -------------------------------------------------------------------------------- /packages/utils/src/objects/filterEmpty.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/objects/filterEmpty.test.js -------------------------------------------------------------------------------- /packages/utils/src/objects/removeByKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/objects/removeByKey.js -------------------------------------------------------------------------------- /packages/utils/src/objects/removeByKey.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/objects/removeByKey.test.js -------------------------------------------------------------------------------- /packages/utils/src/strings/slugIt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/strings/slugIt.js -------------------------------------------------------------------------------- /packages/utils/src/strings/slugIt.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/strings/slugIt.test.js -------------------------------------------------------------------------------- /packages/utils/src/strings/toTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/strings/toTitle.js -------------------------------------------------------------------------------- /packages/utils/src/strings/toTitle.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/src/strings/toTitle.test.js -------------------------------------------------------------------------------- /packages/utils/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/packages/utils/yarn.lock -------------------------------------------------------------------------------- /project/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/.babelrc -------------------------------------------------------------------------------- /project/.boldr/config/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/.boldr/config/default.js -------------------------------------------------------------------------------- /project/.boldr/db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/.boldr/db.sql -------------------------------------------------------------------------------- /project/.boldr/db/migrations/201701270219_initial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/.boldr/db/migrations/201701270219_initial.js -------------------------------------------------------------------------------- /project/.boldr/db/migrations/201704120543_media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/.boldr/db/migrations/201704120543_media.js -------------------------------------------------------------------------------- /project/.boldr/db/migrations/201705101823_social.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/.boldr/db/migrations/201705101823_social.js -------------------------------------------------------------------------------- /project/.boldr/db/migrations/201706291706_page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/.boldr/db/migrations/201706291706_page.js -------------------------------------------------------------------------------- /project/.boldr/db/migrations/201707140206_routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/.boldr/db/migrations/201707140206_routes.js -------------------------------------------------------------------------------- /project/.boldr/db/postgres-initdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/.boldr/db/postgres-initdb.sh -------------------------------------------------------------------------------- /project/.boldr/db/seeds/initial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/.boldr/db/seeds/initial.js -------------------------------------------------------------------------------- /project/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/.env.example -------------------------------------------------------------------------------- /project/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/.eslintignore -------------------------------------------------------------------------------- /project/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/Dockerfile -------------------------------------------------------------------------------- /project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/README.md -------------------------------------------------------------------------------- /project/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/docker-compose.yml -------------------------------------------------------------------------------- /project/flow-typed/npm/@boldr/auth_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/@boldr/auth_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/@boldr/cli_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/@boldr/cli_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/@boldr/core_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/@boldr/core_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/@boldr/icons_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/@boldr/icons_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/@boldr/utils_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/@boldr/utils_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/autoprefixer_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/autoprefixer_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/babel-cli_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/babel-cli_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/babel-eslint_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/babel-eslint_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/babel-preset-boldr_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/babel-preset-boldr_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/babel-watch_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/babel-watch_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/cross-env_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/cross-env_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/draft-convert_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/draft-convert_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/draftjs-utils_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/draftjs-utils_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/enzyme-to-json_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/enzyme-to-json_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/enzyme_v2.3.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/enzyme_v2.3.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/eslint-config-boldr_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/eslint-config-boldr_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/eslint_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/eslint_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/express_v4.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/express_v4.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/flow-bin_v0.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/flow-bin_v0.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/prettier_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/prettier_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/react-dropzone_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/react-dropzone_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/react-helmet_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/react-helmet_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/react-hot-loader_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/react-hot-loader_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/react-portal_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/react-portal_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/react-redux_v5.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/react-redux_v5.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/react-router-dom_v4.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/react-router-dom_v4.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/react-tagsinput_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/react-tagsinput_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/react-test-renderer_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/react-test-renderer_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/redbox-react_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/redbox-react_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/redux-mock-store_v1.2.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/redux-mock-store_v1.2.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/redux-thunk_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/redux-thunk_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/redux_v3.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/redux_v3.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/rimraf_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/rimraf_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/shortid_v2.2.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/shortid_v2.2.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/sinon_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/sinon_vx.x.x.js -------------------------------------------------------------------------------- /project/flow-typed/npm/styled-components_v2.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/flow-typed/npm/styled-components_v2.x.x.js -------------------------------------------------------------------------------- /project/graphql.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/graphql.config.json -------------------------------------------------------------------------------- /project/internal/flow/defs/boldr.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/internal/flow/defs/boldr.js.flow -------------------------------------------------------------------------------- /project/internal/flow/defs/classnames.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/internal/flow/defs/classnames.js.flow -------------------------------------------------------------------------------- /project/internal/flow/defs/commonjs.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/internal/flow/defs/commonjs.js.flow -------------------------------------------------------------------------------- /project/internal/flow/defs/draftjs-utils.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/internal/flow/defs/draftjs-utils.js.flow -------------------------------------------------------------------------------- /project/internal/flow/defs/es6modules.js.flow: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | declare var System: { 4 | import(path: string): any; 5 | }; 6 | -------------------------------------------------------------------------------- /project/internal/flow/logs/flow.log.old: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/internal/flow/stubs/WebpackAsset.js.flow: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | declare export default string 4 | -------------------------------------------------------------------------------- /project/internal/jest/__fixtures__/auth.fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/internal/jest/__fixtures__/auth.fixture.json -------------------------------------------------------------------------------- /project/internal/jest/__fixtures__/menu.fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/internal/jest/__fixtures__/menu.fixture.json -------------------------------------------------------------------------------- /project/internal/jest/__fixtures__/tag.fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/internal/jest/__fixtures__/tag.fixture.json -------------------------------------------------------------------------------- /project/internal/jest/createRouteContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/internal/jest/createRouteContext.js -------------------------------------------------------------------------------- /project/internal/jest/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'FILE_MOCK'; 2 | -------------------------------------------------------------------------------- /project/internal/jest/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/internal/jest/setup.js -------------------------------------------------------------------------------- /project/internal/jest/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/internal/jest/transform.js -------------------------------------------------------------------------------- /project/internal/scripts/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/internal/scripts/db.js -------------------------------------------------------------------------------- /project/internal/scripts/prettier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/internal/scripts/prettier.js -------------------------------------------------------------------------------- /project/internal/scripts/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/internal/scripts/task.js -------------------------------------------------------------------------------- /project/internal/scripts/testCi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/internal/scripts/testCi.js -------------------------------------------------------------------------------- /project/internal/scripts/updateSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/internal/scripts/updateSchema.js -------------------------------------------------------------------------------- /project/internal/scripts/versionCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/internal/scripts/versionCheck.js -------------------------------------------------------------------------------- /project/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/jest.config.js -------------------------------------------------------------------------------- /project/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/nodemon.json -------------------------------------------------------------------------------- /project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/package.json -------------------------------------------------------------------------------- /project/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /project/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /project/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/public/apple-touch-icon.png -------------------------------------------------------------------------------- /project/public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/public/browserconfig.xml -------------------------------------------------------------------------------- /project/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/public/favicon-16x16.png -------------------------------------------------------------------------------- /project/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/public/favicon-32x32.png -------------------------------------------------------------------------------- /project/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/public/favicon.ico -------------------------------------------------------------------------------- /project/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/public/manifest.json -------------------------------------------------------------------------------- /project/public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/public/mstile-150x150.png -------------------------------------------------------------------------------- /project/public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /project/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/schema.graphql -------------------------------------------------------------------------------- /project/server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/app.js -------------------------------------------------------------------------------- /project/server/errors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/errors/index.js -------------------------------------------------------------------------------- /project/server/graphql/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/context.js -------------------------------------------------------------------------------- /project/server/graphql/formatGqlError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/formatGqlError.js -------------------------------------------------------------------------------- /project/server/graphql/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/index.js -------------------------------------------------------------------------------- /project/server/graphql/loaders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/loaders/index.js -------------------------------------------------------------------------------- /project/server/graphql/resolvers/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/resolvers/account.js -------------------------------------------------------------------------------- /project/server/graphql/resolvers/article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/resolvers/article.js -------------------------------------------------------------------------------- /project/server/graphql/resolvers/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/resolvers/category.js -------------------------------------------------------------------------------- /project/server/graphql/resolvers/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/resolvers/content.js -------------------------------------------------------------------------------- /project/server/graphql/resolvers/contentType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/resolvers/contentType.js -------------------------------------------------------------------------------- /project/server/graphql/resolvers/entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/resolvers/entity.js -------------------------------------------------------------------------------- /project/server/graphql/resolvers/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/resolvers/file.js -------------------------------------------------------------------------------- /project/server/graphql/resolvers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/resolvers/index.js -------------------------------------------------------------------------------- /project/server/graphql/resolvers/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/resolvers/media.js -------------------------------------------------------------------------------- /project/server/graphql/resolvers/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/resolvers/menu.js -------------------------------------------------------------------------------- /project/server/graphql/resolvers/menuDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/resolvers/menuDetail.js -------------------------------------------------------------------------------- /project/server/graphql/resolvers/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/resolvers/page.js -------------------------------------------------------------------------------- /project/server/graphql/resolvers/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/resolvers/profile.js -------------------------------------------------------------------------------- /project/server/graphql/resolvers/role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/resolvers/role.js -------------------------------------------------------------------------------- /project/server/graphql/resolvers/scalars/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/resolvers/scalars/factory.js -------------------------------------------------------------------------------- /project/server/graphql/resolvers/scalars/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/resolvers/scalars/index.js -------------------------------------------------------------------------------- /project/server/graphql/resolvers/scalars/scalars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/resolvers/scalars/scalars.js -------------------------------------------------------------------------------- /project/server/graphql/resolvers/scalars/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/resolvers/scalars/types.js -------------------------------------------------------------------------------- /project/server/graphql/resolvers/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/resolvers/setting.js -------------------------------------------------------------------------------- /project/server/graphql/resolvers/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/resolvers/tag.js -------------------------------------------------------------------------------- /project/server/graphql/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/schema.js -------------------------------------------------------------------------------- /project/server/graphql/subscriptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/subscriptions.js -------------------------------------------------------------------------------- /project/server/graphql/typeDefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/typeDefs.js -------------------------------------------------------------------------------- /project/server/graphql/typedefs.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/graphql/typedefs.graphql -------------------------------------------------------------------------------- /project/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/index.js -------------------------------------------------------------------------------- /project/server/middleware/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/middleware/index.js -------------------------------------------------------------------------------- /project/server/middleware/initAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/middleware/initAuth.js -------------------------------------------------------------------------------- /project/server/middleware/initCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/middleware/initCore.js -------------------------------------------------------------------------------- /project/server/middleware/initErrorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/middleware/initErrorHandler.js -------------------------------------------------------------------------------- /project/server/middleware/initGraphql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/middleware/initGraphql.js -------------------------------------------------------------------------------- /project/server/middleware/initPubsub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/middleware/initPubsub.js -------------------------------------------------------------------------------- /project/server/middleware/initSecurity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/middleware/initSecurity.js -------------------------------------------------------------------------------- /project/server/middleware/initSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/middleware/initSession.js -------------------------------------------------------------------------------- /project/server/middleware/queryLogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/middleware/queryLogger.js -------------------------------------------------------------------------------- /project/server/middleware/rbac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/middleware/rbac.js -------------------------------------------------------------------------------- /project/server/models/Account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/Account.js -------------------------------------------------------------------------------- /project/server/models/Article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/Article.js -------------------------------------------------------------------------------- /project/server/models/BaseModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/BaseModel.js -------------------------------------------------------------------------------- /project/server/models/Category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/Category.js -------------------------------------------------------------------------------- /project/server/models/ContentType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/ContentType.js -------------------------------------------------------------------------------- /project/server/models/Entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/Entity.js -------------------------------------------------------------------------------- /project/server/models/File.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/File.js -------------------------------------------------------------------------------- /project/server/models/Media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/Media.js -------------------------------------------------------------------------------- /project/server/models/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/Menu.js -------------------------------------------------------------------------------- /project/server/models/MenuDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/MenuDetail.js -------------------------------------------------------------------------------- /project/server/models/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/Page.js -------------------------------------------------------------------------------- /project/server/models/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/Profile.js -------------------------------------------------------------------------------- /project/server/models/Role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/Role.js -------------------------------------------------------------------------------- /project/server/models/Setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/Setting.js -------------------------------------------------------------------------------- /project/server/models/Social.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/Social.js -------------------------------------------------------------------------------- /project/server/models/Tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/Tag.js -------------------------------------------------------------------------------- /project/server/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/index.js -------------------------------------------------------------------------------- /project/server/models/join/AccountRole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/join/AccountRole.js -------------------------------------------------------------------------------- /project/server/models/join/ArticleMedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/join/ArticleMedia.js -------------------------------------------------------------------------------- /project/server/models/join/ArticleTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/join/ArticleTag.js -------------------------------------------------------------------------------- /project/server/models/join/EntityTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/join/EntityTag.js -------------------------------------------------------------------------------- /project/server/models/queryBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/models/queryBuilder.js -------------------------------------------------------------------------------- /project/server/routes/auth/auth.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/routes/auth/auth.controller.js -------------------------------------------------------------------------------- /project/server/routes/auth/auth.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/routes/auth/auth.routes.js -------------------------------------------------------------------------------- /project/server/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/routes/index.js -------------------------------------------------------------------------------- /project/server/routes/token/token.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/routes/token/token.controller.js -------------------------------------------------------------------------------- /project/server/routes/token/token.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/routes/token/token.routes.js -------------------------------------------------------------------------------- /project/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/server.js -------------------------------------------------------------------------------- /project/server/services/apolloUpload/apolloUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/services/apolloUpload/apolloUpload.js -------------------------------------------------------------------------------- /project/server/services/apolloUpload/index.js: -------------------------------------------------------------------------------- 1 | export { default, processRequest } from './apolloUpload'; 2 | -------------------------------------------------------------------------------- /project/server/services/authentication/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/services/authentication/index.js -------------------------------------------------------------------------------- /project/server/services/authentication/signToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/services/authentication/signToken.js -------------------------------------------------------------------------------- /project/server/services/db/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/services/db/db.js -------------------------------------------------------------------------------- /project/server/services/db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/services/db/index.js -------------------------------------------------------------------------------- /project/server/services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/services/index.js -------------------------------------------------------------------------------- /project/server/services/logger/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './logger'; 2 | -------------------------------------------------------------------------------- /project/server/services/logger/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/services/logger/logger.js -------------------------------------------------------------------------------- /project/server/services/mailer/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './mailer'; 2 | -------------------------------------------------------------------------------- /project/server/services/mailer/mailer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/services/mailer/mailer.js -------------------------------------------------------------------------------- /project/server/services/mailer/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/services/mailer/templates.js -------------------------------------------------------------------------------- /project/server/services/mailer/templates.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/services/mailer/templates.test.js -------------------------------------------------------------------------------- /project/server/services/pubsub/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './pubsub'; 2 | -------------------------------------------------------------------------------- /project/server/services/pubsub/pubsub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/services/pubsub/pubsub.js -------------------------------------------------------------------------------- /project/server/services/redis/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/services/redis/index.js -------------------------------------------------------------------------------- /project/server/services/redis/redis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/services/redis/redis.js -------------------------------------------------------------------------------- /project/server/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/utils/index.js -------------------------------------------------------------------------------- /project/server/utils/normalizePort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/utils/normalizePort.js -------------------------------------------------------------------------------- /project/server/utils/normalizePort.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/server/utils/normalizePort.test.js -------------------------------------------------------------------------------- /project/src/clientEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/clientEntry.js -------------------------------------------------------------------------------- /project/src/components/App/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/components/App/App.js -------------------------------------------------------------------------------- /project/src/components/App/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/components/App/App.test.js -------------------------------------------------------------------------------- /project/src/components/App/getSettings.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/components/App/getSettings.graphql -------------------------------------------------------------------------------- /project/src/components/App/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './App'; 2 | -------------------------------------------------------------------------------- /project/src/components/DynamicContent/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './DynamicContent'; 2 | -------------------------------------------------------------------------------- /project/src/components/Flex/Flex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/components/Flex/Flex.js -------------------------------------------------------------------------------- /project/src/components/Flex/Flex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/components/Flex/Flex.md -------------------------------------------------------------------------------- /project/src/components/Flex/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Flex'; 2 | -------------------------------------------------------------------------------- /project/src/components/Html/Html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/components/Html/Html.js -------------------------------------------------------------------------------- /project/src/components/Html/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Html'; 2 | -------------------------------------------------------------------------------- /project/src/components/Notifications/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/components/Notifications/Container.js -------------------------------------------------------------------------------- /project/src/components/Notifications/Notif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/components/Notifications/Notif.js -------------------------------------------------------------------------------- /project/src/components/Notifications/Notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/components/Notifications/Notification.js -------------------------------------------------------------------------------- /project/src/components/Notifications/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/components/Notifications/index.js -------------------------------------------------------------------------------- /project/src/components/ProtectedRoute/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ProtectedRoute'; 2 | -------------------------------------------------------------------------------- /project/src/components/Root/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/components/Root/Root.js -------------------------------------------------------------------------------- /project/src/components/Root/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Root'; 2 | -------------------------------------------------------------------------------- /project/src/components/StatusRoute/StatusRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/components/StatusRoute/StatusRoute.js -------------------------------------------------------------------------------- /project/src/components/StatusRoute/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './StatusRoute'; 2 | -------------------------------------------------------------------------------- /project/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/components/index.js -------------------------------------------------------------------------------- /project/src/core/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/core/constants.js -------------------------------------------------------------------------------- /project/src/core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/core/index.js -------------------------------------------------------------------------------- /project/src/core/reduxFormErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/core/reduxFormErrors.js -------------------------------------------------------------------------------- /project/src/pages/About/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/pages/About/About.js -------------------------------------------------------------------------------- /project/src/pages/About/About.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/pages/About/About.test.js -------------------------------------------------------------------------------- /project/src/pages/About/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './About'; 2 | -------------------------------------------------------------------------------- /project/src/pages/About/initialContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/pages/About/initialContent.js -------------------------------------------------------------------------------- /project/src/pages/Error404/Error404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/pages/Error404/Error404.js -------------------------------------------------------------------------------- /project/src/pages/Error404/Error404.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/pages/Error404/Error404.test.js -------------------------------------------------------------------------------- /project/src/pages/Error404/index.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | export { default } from './Error404'; 4 | -------------------------------------------------------------------------------- /project/src/pages/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/pages/Home/Home.js -------------------------------------------------------------------------------- /project/src/pages/Home/Home.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/pages/Home/Home.test.js -------------------------------------------------------------------------------- /project/src/pages/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/pages/Home/index.js -------------------------------------------------------------------------------- /project/src/pages/Page/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/pages/Page/Page.js -------------------------------------------------------------------------------- /project/src/pages/Page/components/Navigation/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Navigation'; 2 | -------------------------------------------------------------------------------- /project/src/pages/Page/components/PageLayout/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './PageLayout'; 2 | -------------------------------------------------------------------------------- /project/src/pages/Page/gql/getMenu.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/pages/Page/gql/getMenu.graphql -------------------------------------------------------------------------------- /project/src/pages/Page/gql/page.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/pages/Page/gql/page.graphql -------------------------------------------------------------------------------- /project/src/pages/Page/gql/singlePage.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/pages/Page/gql/singlePage.graphql -------------------------------------------------------------------------------- /project/src/pages/Page/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Page'; 2 | -------------------------------------------------------------------------------- /project/src/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/reducers.js -------------------------------------------------------------------------------- /project/src/reducers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/reducers.test.js -------------------------------------------------------------------------------- /project/src/routePaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/routePaths.js -------------------------------------------------------------------------------- /project/src/scenes/Account/AccountContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Account/AccountContainer.js -------------------------------------------------------------------------------- /project/src/scenes/Account/ForgotPassword/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ForgotPassword'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Account/Login/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Account/Login/Login.js -------------------------------------------------------------------------------- /project/src/scenes/Account/Login/Login.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Account/Login/Login.test.js -------------------------------------------------------------------------------- /project/src/scenes/Account/Login/LoginContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Account/Login/LoginContainer.js -------------------------------------------------------------------------------- /project/src/scenes/Account/Login/LoginForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Account/Login/LoginForm.js -------------------------------------------------------------------------------- /project/src/scenes/Account/Login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Account/Login/index.js -------------------------------------------------------------------------------- /project/src/scenes/Account/Preferences/components/EditProfile/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './EditProfile'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Account/Preferences/components/ProfileForm/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ProfileForm'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Account/Preferences/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './PreferencesContainer'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Account/ResetPassword/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ResetPassword'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Account/Signup/Signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Account/Signup/Signup.js -------------------------------------------------------------------------------- /project/src/scenes/Account/Signup/Signup.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Account/Signup/Signup.test.js -------------------------------------------------------------------------------- /project/src/scenes/Account/Signup/SignupContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Account/Signup/SignupContainer.js -------------------------------------------------------------------------------- /project/src/scenes/Account/Signup/SignupForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Account/Signup/SignupForm.js -------------------------------------------------------------------------------- /project/src/scenes/Account/Signup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Account/Signup/index.js -------------------------------------------------------------------------------- /project/src/scenes/Account/Verify/Verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Account/Verify/Verify.js -------------------------------------------------------------------------------- /project/src/scenes/Account/Verify/Verify.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Account/Verify/Verify.test.js -------------------------------------------------------------------------------- /project/src/scenes/Account/Verify/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Verify'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Account/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './AccountContainer'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Account/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Account/routes.js -------------------------------------------------------------------------------- /project/src/scenes/Account/state/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Account/state/actionTypes.js -------------------------------------------------------------------------------- /project/src/scenes/Account/state/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Account/state/actions.js -------------------------------------------------------------------------------- /project/src/scenes/Account/state/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Account/state/index.js -------------------------------------------------------------------------------- /project/src/scenes/Account/state/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Account/state/reducer.js -------------------------------------------------------------------------------- /project/src/scenes/Account/state/reducer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Account/state/reducer.test.js -------------------------------------------------------------------------------- /project/src/scenes/Account/state/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Account/state/selectors.js -------------------------------------------------------------------------------- /project/src/scenes/Account/state/selectors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Account/state/selectors.test.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/AdminDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/AdminDashboard.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/Articles/ArticleEditor/components/EditArticleForm/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './EditArticleForm'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/Articles/ArticleListing/components/ArticleList/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ArticleList'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/Articles/ArticleListing/components/ArticleListHead/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ArticleListHead'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/Articles/ArticleListing/components/ArticleListItem/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ArticleListItem'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/Articles/ArticleListing/components/ArticlePreview/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ArticlePreview'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/Articles/NewArticle/components/NewArticleForm/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './NewArticleForm'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/Articles/NewArticle/components/RenderTags/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './RenderTags'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/Articles/NewArticle/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './NewArticleContainer'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/Content/Content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/Content/Content.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/Content/ContentType/components/ContentTypeForm/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ContentTypeForm'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/Content/components/ContentTypeForm/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ContentTypeForm'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/Content/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/Content/index.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/DashboardLanding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/DashboardLanding.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/Media/Media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/Media/Media.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/Media/MediaManager/components/MediaForm/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './MediaForm'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/Media/MediaManager/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/Media/MediaManager/index.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/Media/UploadMedia/components/Dropzone/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Dropzone'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/Media/UploadMedia/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './UploadMedia'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/Media/gql/editMedia.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/Media/gql/editMedia.graphql -------------------------------------------------------------------------------- /project/src/scenes/Admin/Media/gql/getMedia.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/Media/gql/getMedia.graphql -------------------------------------------------------------------------------- /project/src/scenes/Admin/Media/gql/mediaById.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/Media/gql/mediaById.graphql -------------------------------------------------------------------------------- /project/src/scenes/Admin/Media/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/Media/index.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/Members/Members.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/Members/Members.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/Members/MembersContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/Members/MembersContainer.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/Members/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/Members/components/index.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/Members/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './MembersContainer'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/Members/users.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/Members/users.graphql -------------------------------------------------------------------------------- /project/src/scenes/Admin/Navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/Navigation/index.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/Navigation/menu.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/Navigation/menu.graphql -------------------------------------------------------------------------------- /project/src/scenes/Admin/Settings/SettingForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/Settings/SettingForm.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/Settings/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/Settings/Settings.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/Settings/Settings.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/Settings/Settings.test.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/Settings/components/SettingsAside/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './SettingsAside'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/Settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/Settings/index.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/Tags/Tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/Tags/Tags.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/Tags/components/AddTag/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './AddTag'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/Tags/components/TagList/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './TagList'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/Tags/components/TaggedPost/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './TaggedPost'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/Tags/gql/tags.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/Tags/gql/tags.graphql -------------------------------------------------------------------------------- /project/src/scenes/Admin/Tags/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/Tags/index.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/components/DashboardFooter/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './DashboardFooter'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/components/DashboardMain/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './DashboardMain'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/components/Layout/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/components/Layout/Layout.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/components/Layout/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Layout'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/components/Navigation/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Navigation'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Admin/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/components/index.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/index.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/routes.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/state/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/state/actionTypes.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/state/dashboard/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/state/dashboard/actions.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/state/dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/state/dashboard/index.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/state/dashboard/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/state/dashboard/reducer.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/state/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/state/index.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/state/media/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/state/media/actionTypes.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/state/media/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/state/media/actions.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/state/media/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/state/media/index.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/state/media/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/state/media/reducer.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/state/media/reducer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/state/media/reducer.test.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/state/members/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/state/members/actions.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/state/members/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/state/members/index.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/state/members/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/state/members/reducer.js -------------------------------------------------------------------------------- /project/src/scenes/Admin/state/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Admin/state/reducer.js -------------------------------------------------------------------------------- /project/src/scenes/Blog/Article/Article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Blog/Article/Article.js -------------------------------------------------------------------------------- /project/src/scenes/Blog/Article/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Blog/Article/index.js -------------------------------------------------------------------------------- /project/src/scenes/Blog/TagList/TagList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Blog/TagList/TagList.js -------------------------------------------------------------------------------- /project/src/scenes/Blog/TagList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Blog/TagList/index.js -------------------------------------------------------------------------------- /project/src/scenes/Blog/components/ArticleCard/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ArticleCard'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Blog/components/ArticleContent/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ArticleContent'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Blog/components/ArticleDate/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ArticleDate'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Blog/components/ArticleFooter/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ArticleFooter'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Blog/components/ArticleImage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ArticleImage'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Blog/components/ArticleTitle/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ArticleTitle'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Blog/components/TagBlock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Blog/components/TagBlock/index.js -------------------------------------------------------------------------------- /project/src/scenes/Blog/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Blog/components/index.js -------------------------------------------------------------------------------- /project/src/scenes/Blog/gql/article.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Blog/gql/article.graphql -------------------------------------------------------------------------------- /project/src/scenes/Blog/gql/articles.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Blog/gql/articles.graphql -------------------------------------------------------------------------------- /project/src/scenes/Blog/gql/articlesForTag.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Blog/gql/articlesForTag.graphql -------------------------------------------------------------------------------- /project/src/scenes/Blog/gql/user.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Blog/gql/user.graphql -------------------------------------------------------------------------------- /project/src/scenes/Blog/state/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Blog/state/actionTypes.js -------------------------------------------------------------------------------- /project/src/scenes/Blog/state/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Blog/state/actions.js -------------------------------------------------------------------------------- /project/src/scenes/Blog/state/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Blog/state/index.js -------------------------------------------------------------------------------- /project/src/scenes/Blog/state/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Blog/state/reducer.js -------------------------------------------------------------------------------- /project/src/scenes/Blog/state/reducer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Blog/state/reducer.test.js -------------------------------------------------------------------------------- /project/src/scenes/Profile/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Profile/Profile.js -------------------------------------------------------------------------------- /project/src/scenes/Profile/components/ProfileContent/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ProfileContent'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Profile/components/ProfileDetail/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ProfileDetail'; 2 | -------------------------------------------------------------------------------- /project/src/scenes/Profile/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Profile/components/index.js -------------------------------------------------------------------------------- /project/src/scenes/Profile/gql/userProfile.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Profile/gql/userProfile.graphql -------------------------------------------------------------------------------- /project/src/scenes/Profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/scenes/Profile/index.js -------------------------------------------------------------------------------- /project/src/serverEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/serverEntry.js -------------------------------------------------------------------------------- /project/src/styles/_overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/_overrides.scss -------------------------------------------------------------------------------- /project/src/styles/abstracts/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/abstracts/_all.scss -------------------------------------------------------------------------------- /project/src/styles/abstracts/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/abstracts/_colors.scss -------------------------------------------------------------------------------- /project/src/styles/abstracts/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/abstracts/_functions.scss -------------------------------------------------------------------------------- /project/src/styles/abstracts/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/abstracts/_mixins.scss -------------------------------------------------------------------------------- /project/src/styles/abstracts/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/abstracts/_variables.scss -------------------------------------------------------------------------------- /project/src/styles/base/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/base/_all.scss -------------------------------------------------------------------------------- /project/src/styles/base/_animate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/base/_animate.scss -------------------------------------------------------------------------------- /project/src/styles/base/_form-control.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/base/_form-control.scss -------------------------------------------------------------------------------- /project/src/styles/base/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/base/_global.scss -------------------------------------------------------------------------------- /project/src/styles/base/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/base/_grid.scss -------------------------------------------------------------------------------- /project/src/styles/base/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/base/_helpers.scss -------------------------------------------------------------------------------- /project/src/styles/base/_ripple.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/base/_ripple.scss -------------------------------------------------------------------------------- /project/src/styles/components/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_accordion.scss -------------------------------------------------------------------------------- /project/src/styles/components/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_alert.scss -------------------------------------------------------------------------------- /project/src/styles/components/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_all.scss -------------------------------------------------------------------------------- /project/src/styles/components/_avatar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_avatar.scss -------------------------------------------------------------------------------- /project/src/styles/components/_block.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_block.scss -------------------------------------------------------------------------------- /project/src/styles/components/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_breadcrumb.scss -------------------------------------------------------------------------------- /project/src/styles/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_button.scss -------------------------------------------------------------------------------- /project/src/styles/components/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_card.scss -------------------------------------------------------------------------------- /project/src/styles/components/_collapsible.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_collapsible.scss -------------------------------------------------------------------------------- /project/src/styles/components/_content-promo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_content-promo.scss -------------------------------------------------------------------------------- /project/src/styles/components/_dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_dialog.scss -------------------------------------------------------------------------------- /project/src/styles/components/_divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_divider.scss -------------------------------------------------------------------------------- /project/src/styles/components/_drawer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_drawer.scss -------------------------------------------------------------------------------- /project/src/styles/components/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_dropdown.scss -------------------------------------------------------------------------------- /project/src/styles/components/_dropzone.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_dropzone.scss -------------------------------------------------------------------------------- /project/src/styles/components/_editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_editor.scss -------------------------------------------------------------------------------- /project/src/styles/components/_flag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_flag.scss -------------------------------------------------------------------------------- /project/src/styles/components/_heading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_heading.scss -------------------------------------------------------------------------------- /project/src/styles/components/_hero.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_hero.scss -------------------------------------------------------------------------------- /project/src/styles/components/_icon-btn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_icon-btn.scss -------------------------------------------------------------------------------- /project/src/styles/components/_image-display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_image-display.scss -------------------------------------------------------------------------------- /project/src/styles/components/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_image.scss -------------------------------------------------------------------------------- /project/src/styles/components/_level.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_level.scss -------------------------------------------------------------------------------- /project/src/styles/components/_loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_loader.scss -------------------------------------------------------------------------------- /project/src/styles/components/_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_menu.scss -------------------------------------------------------------------------------- /project/src/styles/components/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_navbar.scss -------------------------------------------------------------------------------- /project/src/styles/components/_notification.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_notification.scss -------------------------------------------------------------------------------- /project/src/styles/components/_paper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_paper.scss -------------------------------------------------------------------------------- /project/src/styles/components/_paragraph.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_paragraph.scss -------------------------------------------------------------------------------- /project/src/styles/components/_pop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_pop.scss -------------------------------------------------------------------------------- /project/src/styles/components/_section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_section.scss -------------------------------------------------------------------------------- /project/src/styles/components/_select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_select.scss -------------------------------------------------------------------------------- /project/src/styles/components/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_tabs.scss -------------------------------------------------------------------------------- /project/src/styles/components/_tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_tags.scss -------------------------------------------------------------------------------- /project/src/styles/components/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/_tooltip.scss -------------------------------------------------------------------------------- /project/src/styles/components/blog/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/blog/_all.scss -------------------------------------------------------------------------------- /project/src/styles/components/blog/_article.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/blog/_article.scss -------------------------------------------------------------------------------- /project/src/styles/components/blog/_tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/blog/_tags.scss -------------------------------------------------------------------------------- /project/src/styles/components/form/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/form/_all.scss -------------------------------------------------------------------------------- /project/src/styles/components/profile/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/profile/_all.scss -------------------------------------------------------------------------------- /project/src/styles/components/profile/_profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/components/profile/_profile.scss -------------------------------------------------------------------------------- /project/src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/main.scss -------------------------------------------------------------------------------- /project/src/styles/vendor/_all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/vendor/_all.scss -------------------------------------------------------------------------------- /project/src/styles/vendor/_draft.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/vendor/_draft.scss -------------------------------------------------------------------------------- /project/src/styles/vendor/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/vendor/_normalize.scss -------------------------------------------------------------------------------- /project/src/styles/vendor/_rc-tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/styles/vendor/_rc-tabs.scss -------------------------------------------------------------------------------- /project/src/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/theme/index.js -------------------------------------------------------------------------------- /project/src/theme/styleClasses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/theme/styleClasses.js -------------------------------------------------------------------------------- /project/src/theme/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/theme/theme.js -------------------------------------------------------------------------------- /project/src/types/boldr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/types/boldr.js -------------------------------------------------------------------------------- /project/src/types/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/src/types/state.js -------------------------------------------------------------------------------- /project/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/project/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strues/boldr/HEAD/yarn.lock --------------------------------------------------------------------------------