├── .env ├── .eslintrc ├── .gitignore ├── .nvmrc ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── assets │ ├── fonts │ │ ├── icon-font │ │ │ └── selection.json │ │ ├── imsIcons.eot │ │ ├── imsIcons.svg │ │ ├── imsIcons.ttf │ │ ├── imsIcons.woff │ │ ├── imsIcons.woff2 │ │ ├── roboto-bold-webfont.eot │ │ ├── roboto-bold-webfont.svg │ │ ├── roboto-bold-webfont.ttf │ │ ├── roboto-bold-webfont.woff │ │ ├── roboto-bold-webfont.woff2 │ │ ├── roboto-medium-webfont.eot │ │ ├── roboto-medium-webfont.svg │ │ ├── roboto-medium-webfont.ttf │ │ ├── roboto-medium-webfont.woff │ │ ├── roboto-medium-webfont.woff2 │ │ ├── roboto-regular-webfont.eot │ │ ├── roboto-regular-webfont.svg │ │ ├── roboto-regular-webfont.ttf │ │ ├── roboto-regular-webfont.woff │ │ └── roboto-regular-webfont.woff2 │ ├── images │ │ ├── loading.gif │ │ ├── logo-redradix.svg │ │ └── redradix.png │ └── stylesheets │ │ ├── ie.css │ │ └── styles.css ├── components │ ├── composition │ │ ├── dashboard.js │ │ ├── login │ │ │ └── login-form.js │ │ └── my-account │ │ │ ├── account-layout.js │ │ │ └── user-form-layout.js │ ├── context │ │ ├── app-context.js │ │ ├── login │ │ │ └── login-context.js │ │ └── my-account │ │ │ ├── account-context.js │ │ │ ├── info-context.js │ │ │ ├── user-form-context.js │ │ │ └── users-list-context.js │ ├── interaction │ │ ├── clickable.js │ │ └── spinner-while-condition.js │ └── presentation │ │ ├── back-button.js │ │ ├── breadcrumbs.js │ │ ├── button.js │ │ ├── calendar.js │ │ ├── chart-legend.js │ │ ├── charts │ │ ├── barchart-item.js │ │ ├── barchart.js │ │ ├── dropshadow.js │ │ ├── gauge-bar-group.js │ │ ├── gauge-bar-widget.js │ │ ├── gauge-bar.js │ │ ├── pie-chart-old.js │ │ ├── pie-chart.js │ │ ├── relative-bar.js │ │ ├── relative-bars-chart.js │ │ └── relative-bars.js │ │ ├── color-indicator.js │ │ ├── confirmation-message.js │ │ ├── delete-button.js │ │ ├── footer.js │ │ ├── forms │ │ ├── input.js │ │ ├── multi-select.js │ │ └── select.js │ │ ├── header-min.js │ │ ├── header.js │ │ ├── heading.js │ │ ├── icon.js │ │ ├── indicator.js │ │ ├── indicators-list.js │ │ ├── indicators-mix.js │ │ ├── indicators-row.js │ │ ├── legend.js │ │ ├── loading.js │ │ ├── logo.js │ │ ├── mild-indicator.js │ │ ├── mild-legend-data.js │ │ ├── mild-legend.js │ │ ├── my-account │ │ ├── change-password-form.js │ │ ├── header.js │ │ ├── info-field.js │ │ ├── info.js │ │ ├── tabs.js │ │ ├── user-form.js │ │ ├── users-list-item.js │ │ ├── users-list-nav.js │ │ └── users-list.js │ │ ├── popup.js │ │ ├── spinner-overlay.js │ │ ├── spinner.js │ │ ├── tag-list.js │ │ ├── tag.js │ │ └── user-nav.js ├── core │ ├── api.js │ ├── configure-routes.js │ ├── configure-store.js │ ├── i18n.js │ └── numeral.js ├── index.js ├── locales │ └── en │ │ ├── app.json │ │ ├── format.json │ │ └── validation.json ├── mocks │ ├── endpoints │ │ └── users.js │ ├── index.js │ └── utils.js ├── modules │ ├── communication │ │ ├── action-types.js │ │ ├── actions.js │ │ ├── constants.js │ │ ├── index.js │ │ ├── selectors.js │ │ └── tests │ │ │ ├── actions.spec.js │ │ │ ├── reducer.spec.js │ │ │ └── selectors.spec.js │ ├── config │ │ ├── action-types.js │ │ ├── actions.js │ │ ├── constants.js │ │ ├── index.js │ │ └── selectors.js │ ├── confirm │ │ ├── README.md │ │ ├── actions.js │ │ ├── components │ │ │ ├── confirmation-popup.js │ │ │ └── confirmation-trigger.js │ │ ├── constants.js │ │ ├── index.js │ │ └── selectors.js │ ├── data │ │ ├── action-types.js │ │ ├── actions.js │ │ ├── constants.js │ │ ├── index.js │ │ └── selectors.js │ ├── entities-with-redux-query │ │ ├── README.md │ │ ├── constants.js │ │ ├── index.js │ │ ├── selectors.js │ │ └── utils.js │ ├── entities │ │ ├── README.md │ │ ├── action-types.js │ │ ├── actions.js │ │ ├── constants.js │ │ ├── index.js │ │ ├── selectors.js │ │ └── tests │ │ │ ├── actions.spec.js │ │ │ ├── reducer.spec.js │ │ │ └── selectors.spec.js │ ├── legacy-entities │ │ ├── action-types.js │ │ ├── actions.js │ │ ├── constants.js │ │ ├── index.js │ │ ├── selectors.js │ │ └── tests │ │ │ ├── actions.spec.js │ │ │ ├── reducer.spec.js │ │ │ └── selectors.spec.js │ ├── legacy-ui │ │ ├── action-types.js │ │ ├── actions.js │ │ ├── constants.js │ │ ├── index.js │ │ ├── selectors.js │ │ └── tests │ │ │ ├── actions.spec.js │ │ │ ├── reducer.spec.js │ │ │ └── selectors.spec.js │ ├── pagination │ │ ├── action-types.js │ │ ├── actions.js │ │ ├── constants.js │ │ ├── index.js │ │ ├── notes.md │ │ └── selectors.js │ ├── reducer.js │ └── ui │ │ ├── action-types.js │ │ ├── actions.js │ │ ├── constants.js │ │ ├── index.js │ │ └── selectors.js ├── resources │ ├── initial-data │ │ └── index.js │ ├── notes.md │ └── session │ │ └── index.js ├── services │ ├── app │ │ ├── actions.js │ │ ├── index.js │ │ └── selectors.js │ ├── notes.md │ ├── session │ │ ├── actions.js │ │ ├── index.js │ │ └── selectors.js │ └── users │ │ ├── actions.js │ │ ├── constants.js │ │ ├── index.js │ │ └── selectors.js ├── setupTests.js └── utils │ ├── batch.js │ ├── fastclick.js │ ├── index.js │ ├── prop-types.js │ ├── react.js │ ├── utils.js │ └── validation.js └── sw-precache-config.js /.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_URL=https://localhost:3000/ 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 6.9.1 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/assets/fonts/icon-font/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/fonts/icon-font/selection.json -------------------------------------------------------------------------------- /src/assets/fonts/imsIcons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/fonts/imsIcons.eot -------------------------------------------------------------------------------- /src/assets/fonts/imsIcons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/fonts/imsIcons.svg -------------------------------------------------------------------------------- /src/assets/fonts/imsIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/fonts/imsIcons.ttf -------------------------------------------------------------------------------- /src/assets/fonts/imsIcons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/fonts/imsIcons.woff -------------------------------------------------------------------------------- /src/assets/fonts/imsIcons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/fonts/imsIcons.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto-bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/fonts/roboto-bold-webfont.eot -------------------------------------------------------------------------------- /src/assets/fonts/roboto-bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/fonts/roboto-bold-webfont.svg -------------------------------------------------------------------------------- /src/assets/fonts/roboto-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/fonts/roboto-bold-webfont.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/fonts/roboto-bold-webfont.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/fonts/roboto-bold-webfont.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto-medium-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/fonts/roboto-medium-webfont.eot -------------------------------------------------------------------------------- /src/assets/fonts/roboto-medium-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/fonts/roboto-medium-webfont.svg -------------------------------------------------------------------------------- /src/assets/fonts/roboto-medium-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/fonts/roboto-medium-webfont.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto-medium-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/fonts/roboto-medium-webfont.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto-medium-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/fonts/roboto-medium-webfont.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/fonts/roboto-regular-webfont.eot -------------------------------------------------------------------------------- /src/assets/fonts/roboto-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/fonts/roboto-regular-webfont.svg -------------------------------------------------------------------------------- /src/assets/fonts/roboto-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/fonts/roboto-regular-webfont.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/fonts/roboto-regular-webfont.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/fonts/roboto-regular-webfont.woff2 -------------------------------------------------------------------------------- /src/assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/images/loading.gif -------------------------------------------------------------------------------- /src/assets/images/logo-redradix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/images/logo-redradix.svg -------------------------------------------------------------------------------- /src/assets/images/redradix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/images/redradix.png -------------------------------------------------------------------------------- /src/assets/stylesheets/ie.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/stylesheets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/assets/stylesheets/styles.css -------------------------------------------------------------------------------- /src/components/composition/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/composition/dashboard.js -------------------------------------------------------------------------------- /src/components/composition/login/login-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/composition/login/login-form.js -------------------------------------------------------------------------------- /src/components/composition/my-account/account-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/composition/my-account/account-layout.js -------------------------------------------------------------------------------- /src/components/composition/my-account/user-form-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/composition/my-account/user-form-layout.js -------------------------------------------------------------------------------- /src/components/context/app-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/context/app-context.js -------------------------------------------------------------------------------- /src/components/context/login/login-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/context/login/login-context.js -------------------------------------------------------------------------------- /src/components/context/my-account/account-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/context/my-account/account-context.js -------------------------------------------------------------------------------- /src/components/context/my-account/info-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/context/my-account/info-context.js -------------------------------------------------------------------------------- /src/components/context/my-account/user-form-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/context/my-account/user-form-context.js -------------------------------------------------------------------------------- /src/components/context/my-account/users-list-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/context/my-account/users-list-context.js -------------------------------------------------------------------------------- /src/components/interaction/clickable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/interaction/clickable.js -------------------------------------------------------------------------------- /src/components/interaction/spinner-while-condition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/interaction/spinner-while-condition.js -------------------------------------------------------------------------------- /src/components/presentation/back-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/back-button.js -------------------------------------------------------------------------------- /src/components/presentation/breadcrumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/breadcrumbs.js -------------------------------------------------------------------------------- /src/components/presentation/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/button.js -------------------------------------------------------------------------------- /src/components/presentation/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/calendar.js -------------------------------------------------------------------------------- /src/components/presentation/chart-legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/chart-legend.js -------------------------------------------------------------------------------- /src/components/presentation/charts/barchart-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/charts/barchart-item.js -------------------------------------------------------------------------------- /src/components/presentation/charts/barchart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/charts/barchart.js -------------------------------------------------------------------------------- /src/components/presentation/charts/dropshadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/charts/dropshadow.js -------------------------------------------------------------------------------- /src/components/presentation/charts/gauge-bar-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/charts/gauge-bar-group.js -------------------------------------------------------------------------------- /src/components/presentation/charts/gauge-bar-widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/charts/gauge-bar-widget.js -------------------------------------------------------------------------------- /src/components/presentation/charts/gauge-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/charts/gauge-bar.js -------------------------------------------------------------------------------- /src/components/presentation/charts/pie-chart-old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/charts/pie-chart-old.js -------------------------------------------------------------------------------- /src/components/presentation/charts/pie-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/charts/pie-chart.js -------------------------------------------------------------------------------- /src/components/presentation/charts/relative-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/charts/relative-bar.js -------------------------------------------------------------------------------- /src/components/presentation/charts/relative-bars-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/charts/relative-bars-chart.js -------------------------------------------------------------------------------- /src/components/presentation/charts/relative-bars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/charts/relative-bars.js -------------------------------------------------------------------------------- /src/components/presentation/color-indicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/color-indicator.js -------------------------------------------------------------------------------- /src/components/presentation/confirmation-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/confirmation-message.js -------------------------------------------------------------------------------- /src/components/presentation/delete-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/delete-button.js -------------------------------------------------------------------------------- /src/components/presentation/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/footer.js -------------------------------------------------------------------------------- /src/components/presentation/forms/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/forms/input.js -------------------------------------------------------------------------------- /src/components/presentation/forms/multi-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/forms/multi-select.js -------------------------------------------------------------------------------- /src/components/presentation/forms/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/forms/select.js -------------------------------------------------------------------------------- /src/components/presentation/header-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/header-min.js -------------------------------------------------------------------------------- /src/components/presentation/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/header.js -------------------------------------------------------------------------------- /src/components/presentation/heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/heading.js -------------------------------------------------------------------------------- /src/components/presentation/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/icon.js -------------------------------------------------------------------------------- /src/components/presentation/indicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/indicator.js -------------------------------------------------------------------------------- /src/components/presentation/indicators-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/indicators-list.js -------------------------------------------------------------------------------- /src/components/presentation/indicators-mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/indicators-mix.js -------------------------------------------------------------------------------- /src/components/presentation/indicators-row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/indicators-row.js -------------------------------------------------------------------------------- /src/components/presentation/legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/legend.js -------------------------------------------------------------------------------- /src/components/presentation/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/loading.js -------------------------------------------------------------------------------- /src/components/presentation/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/logo.js -------------------------------------------------------------------------------- /src/components/presentation/mild-indicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/mild-indicator.js -------------------------------------------------------------------------------- /src/components/presentation/mild-legend-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/mild-legend-data.js -------------------------------------------------------------------------------- /src/components/presentation/mild-legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/mild-legend.js -------------------------------------------------------------------------------- /src/components/presentation/my-account/change-password-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/my-account/change-password-form.js -------------------------------------------------------------------------------- /src/components/presentation/my-account/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/my-account/header.js -------------------------------------------------------------------------------- /src/components/presentation/my-account/info-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/my-account/info-field.js -------------------------------------------------------------------------------- /src/components/presentation/my-account/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/my-account/info.js -------------------------------------------------------------------------------- /src/components/presentation/my-account/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/my-account/tabs.js -------------------------------------------------------------------------------- /src/components/presentation/my-account/user-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/my-account/user-form.js -------------------------------------------------------------------------------- /src/components/presentation/my-account/users-list-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/my-account/users-list-item.js -------------------------------------------------------------------------------- /src/components/presentation/my-account/users-list-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/my-account/users-list-nav.js -------------------------------------------------------------------------------- /src/components/presentation/my-account/users-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/my-account/users-list.js -------------------------------------------------------------------------------- /src/components/presentation/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/popup.js -------------------------------------------------------------------------------- /src/components/presentation/spinner-overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/spinner-overlay.js -------------------------------------------------------------------------------- /src/components/presentation/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/spinner.js -------------------------------------------------------------------------------- /src/components/presentation/tag-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/tag-list.js -------------------------------------------------------------------------------- /src/components/presentation/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/tag.js -------------------------------------------------------------------------------- /src/components/presentation/user-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/components/presentation/user-nav.js -------------------------------------------------------------------------------- /src/core/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/core/api.js -------------------------------------------------------------------------------- /src/core/configure-routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/core/configure-routes.js -------------------------------------------------------------------------------- /src/core/configure-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/core/configure-store.js -------------------------------------------------------------------------------- /src/core/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/core/i18n.js -------------------------------------------------------------------------------- /src/core/numeral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/core/numeral.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/index.js -------------------------------------------------------------------------------- /src/locales/en/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/locales/en/app.json -------------------------------------------------------------------------------- /src/locales/en/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/locales/en/format.json -------------------------------------------------------------------------------- /src/locales/en/validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/locales/en/validation.json -------------------------------------------------------------------------------- /src/mocks/endpoints/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/mocks/endpoints/users.js -------------------------------------------------------------------------------- /src/mocks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/mocks/index.js -------------------------------------------------------------------------------- /src/mocks/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/mocks/utils.js -------------------------------------------------------------------------------- /src/modules/communication/action-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/communication/action-types.js -------------------------------------------------------------------------------- /src/modules/communication/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/communication/actions.js -------------------------------------------------------------------------------- /src/modules/communication/constants.js: -------------------------------------------------------------------------------- 1 | 2 | export const moduleName = 'communication' 3 | -------------------------------------------------------------------------------- /src/modules/communication/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/communication/index.js -------------------------------------------------------------------------------- /src/modules/communication/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/communication/selectors.js -------------------------------------------------------------------------------- /src/modules/communication/tests/actions.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/communication/tests/actions.spec.js -------------------------------------------------------------------------------- /src/modules/communication/tests/reducer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/communication/tests/reducer.spec.js -------------------------------------------------------------------------------- /src/modules/communication/tests/selectors.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/communication/tests/selectors.spec.js -------------------------------------------------------------------------------- /src/modules/config/action-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/config/action-types.js -------------------------------------------------------------------------------- /src/modules/config/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/config/actions.js -------------------------------------------------------------------------------- /src/modules/config/constants.js: -------------------------------------------------------------------------------- 1 | 2 | export const moduleName = 'config' 3 | -------------------------------------------------------------------------------- /src/modules/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/config/index.js -------------------------------------------------------------------------------- /src/modules/config/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/config/selectors.js -------------------------------------------------------------------------------- /src/modules/confirm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/confirm/README.md -------------------------------------------------------------------------------- /src/modules/confirm/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/confirm/actions.js -------------------------------------------------------------------------------- /src/modules/confirm/components/confirmation-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/confirm/components/confirmation-popup.js -------------------------------------------------------------------------------- /src/modules/confirm/components/confirmation-trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/confirm/components/confirmation-trigger.js -------------------------------------------------------------------------------- /src/modules/confirm/constants.js: -------------------------------------------------------------------------------- 1 | 2 | export const moduleName = 'confirm' 3 | -------------------------------------------------------------------------------- /src/modules/confirm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/confirm/index.js -------------------------------------------------------------------------------- /src/modules/confirm/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/confirm/selectors.js -------------------------------------------------------------------------------- /src/modules/data/action-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/data/action-types.js -------------------------------------------------------------------------------- /src/modules/data/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/data/actions.js -------------------------------------------------------------------------------- /src/modules/data/constants.js: -------------------------------------------------------------------------------- 1 | 2 | export const moduleName = 'data' 3 | -------------------------------------------------------------------------------- /src/modules/data/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/data/index.js -------------------------------------------------------------------------------- /src/modules/data/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/data/selectors.js -------------------------------------------------------------------------------- /src/modules/entities-with-redux-query/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/entities-with-redux-query/README.md -------------------------------------------------------------------------------- /src/modules/entities-with-redux-query/constants.js: -------------------------------------------------------------------------------- 1 | 2 | export const moduleName = 'entities' 3 | -------------------------------------------------------------------------------- /src/modules/entities-with-redux-query/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/entities-with-redux-query/index.js -------------------------------------------------------------------------------- /src/modules/entities-with-redux-query/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/entities-with-redux-query/selectors.js -------------------------------------------------------------------------------- /src/modules/entities-with-redux-query/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/entities-with-redux-query/utils.js -------------------------------------------------------------------------------- /src/modules/entities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/entities/README.md -------------------------------------------------------------------------------- /src/modules/entities/action-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/entities/action-types.js -------------------------------------------------------------------------------- /src/modules/entities/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/entities/actions.js -------------------------------------------------------------------------------- /src/modules/entities/constants.js: -------------------------------------------------------------------------------- 1 | 2 | export const moduleName = 'entities' 3 | -------------------------------------------------------------------------------- /src/modules/entities/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/entities/index.js -------------------------------------------------------------------------------- /src/modules/entities/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/entities/selectors.js -------------------------------------------------------------------------------- /src/modules/entities/tests/actions.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/entities/tests/actions.spec.js -------------------------------------------------------------------------------- /src/modules/entities/tests/reducer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/entities/tests/reducer.spec.js -------------------------------------------------------------------------------- /src/modules/entities/tests/selectors.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/entities/tests/selectors.spec.js -------------------------------------------------------------------------------- /src/modules/legacy-entities/action-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/legacy-entities/action-types.js -------------------------------------------------------------------------------- /src/modules/legacy-entities/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/legacy-entities/actions.js -------------------------------------------------------------------------------- /src/modules/legacy-entities/constants.js: -------------------------------------------------------------------------------- 1 | 2 | export const moduleName = 'entities' 3 | -------------------------------------------------------------------------------- /src/modules/legacy-entities/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/legacy-entities/index.js -------------------------------------------------------------------------------- /src/modules/legacy-entities/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/legacy-entities/selectors.js -------------------------------------------------------------------------------- /src/modules/legacy-entities/tests/actions.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/legacy-entities/tests/actions.spec.js -------------------------------------------------------------------------------- /src/modules/legacy-entities/tests/reducer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/legacy-entities/tests/reducer.spec.js -------------------------------------------------------------------------------- /src/modules/legacy-entities/tests/selectors.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/legacy-entities/tests/selectors.spec.js -------------------------------------------------------------------------------- /src/modules/legacy-ui/action-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/legacy-ui/action-types.js -------------------------------------------------------------------------------- /src/modules/legacy-ui/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/legacy-ui/actions.js -------------------------------------------------------------------------------- /src/modules/legacy-ui/constants.js: -------------------------------------------------------------------------------- 1 | 2 | export const moduleName = 'ui' 3 | -------------------------------------------------------------------------------- /src/modules/legacy-ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/legacy-ui/index.js -------------------------------------------------------------------------------- /src/modules/legacy-ui/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/legacy-ui/selectors.js -------------------------------------------------------------------------------- /src/modules/legacy-ui/tests/actions.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/legacy-ui/tests/actions.spec.js -------------------------------------------------------------------------------- /src/modules/legacy-ui/tests/reducer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/legacy-ui/tests/reducer.spec.js -------------------------------------------------------------------------------- /src/modules/legacy-ui/tests/selectors.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/legacy-ui/tests/selectors.spec.js -------------------------------------------------------------------------------- /src/modules/pagination/action-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/pagination/action-types.js -------------------------------------------------------------------------------- /src/modules/pagination/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/pagination/actions.js -------------------------------------------------------------------------------- /src/modules/pagination/constants.js: -------------------------------------------------------------------------------- 1 | 2 | export const moduleName = 'pagination' 3 | -------------------------------------------------------------------------------- /src/modules/pagination/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/pagination/index.js -------------------------------------------------------------------------------- /src/modules/pagination/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/pagination/notes.md -------------------------------------------------------------------------------- /src/modules/pagination/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/pagination/selectors.js -------------------------------------------------------------------------------- /src/modules/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/reducer.js -------------------------------------------------------------------------------- /src/modules/ui/action-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/ui/action-types.js -------------------------------------------------------------------------------- /src/modules/ui/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/ui/actions.js -------------------------------------------------------------------------------- /src/modules/ui/constants.js: -------------------------------------------------------------------------------- 1 | 2 | export const moduleName = 'ui' 3 | -------------------------------------------------------------------------------- /src/modules/ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/ui/index.js -------------------------------------------------------------------------------- /src/modules/ui/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/modules/ui/selectors.js -------------------------------------------------------------------------------- /src/resources/initial-data/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/resources/initial-data/index.js -------------------------------------------------------------------------------- /src/resources/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/resources/notes.md -------------------------------------------------------------------------------- /src/resources/session/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/resources/session/index.js -------------------------------------------------------------------------------- /src/services/app/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/services/app/actions.js -------------------------------------------------------------------------------- /src/services/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/services/app/index.js -------------------------------------------------------------------------------- /src/services/app/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/services/app/selectors.js -------------------------------------------------------------------------------- /src/services/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/services/notes.md -------------------------------------------------------------------------------- /src/services/session/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/services/session/actions.js -------------------------------------------------------------------------------- /src/services/session/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/services/session/index.js -------------------------------------------------------------------------------- /src/services/session/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/services/session/selectors.js -------------------------------------------------------------------------------- /src/services/users/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/services/users/actions.js -------------------------------------------------------------------------------- /src/services/users/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/services/users/constants.js -------------------------------------------------------------------------------- /src/services/users/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/services/users/index.js -------------------------------------------------------------------------------- /src/services/users/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/services/users/selectors.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/utils/batch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/utils/batch.js -------------------------------------------------------------------------------- /src/utils/fastclick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/utils/fastclick.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/prop-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/utils/prop-types.js -------------------------------------------------------------------------------- /src/utils/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/utils/react.js -------------------------------------------------------------------------------- /src/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/utils/utils.js -------------------------------------------------------------------------------- /src/utils/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/src/utils/validation.js -------------------------------------------------------------------------------- /sw-precache-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redradix/redux-base-app/HEAD/sw-precache-config.js --------------------------------------------------------------------------------