├── .angular-cli.json ├── .editorconfig ├── .gitignore ├── README.md ├── backend └── src │ └── routes.ts ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── common │ │ ├── common.module.ts │ │ └── pagination │ │ │ ├── entities │ │ │ ├── page.entity.js │ │ │ └── page.entity.ts │ │ │ ├── pagination.module.ts │ │ │ └── pagination │ │ │ ├── __snapshots__ │ │ │ └── pagination.component.spec.ts.snap │ │ │ ├── pagination.component.html │ │ │ ├── pagination.component.scss │ │ │ ├── pagination.component.spec.ts │ │ │ └── pagination.component.ts │ ├── import-rxjs.ts │ ├── sandbox │ │ ├── app-sandbox.service.spec.ts │ │ └── app-sandbox.service.ts │ └── search │ │ ├── component │ │ └── search-list │ │ │ ├── search-list.component.html │ │ │ ├── search-list.component.scss │ │ │ ├── search-list.component.spec.ts │ │ │ └── search-list.component.ts │ │ ├── container │ │ └── search-container │ │ │ ├── search-container.component.html │ │ │ ├── search-container.component.scss │ │ │ ├── search-container.component.spec.ts │ │ │ └── search-container.component.ts │ │ ├── entity │ │ ├── entities │ │ │ ├── page.entity.js │ │ │ └── page.entity.ts │ │ ├── search-response.entity.ts │ │ └── search.enity.ts │ │ ├── sandbox │ │ ├── search-sandbox.service.spec.ts │ │ └── search-sandbox.service.ts │ │ ├── search-routing.module.ts │ │ ├── search.module.ts │ │ └── service │ │ ├── search.service.spec.ts │ │ └── search.service.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── import-rxjs.ts ├── index.html ├── jestGlobalMocks.ts ├── main.ts ├── polyfills.ts ├── setupJest.ts ├── statemanagement │ ├── actions │ │ ├── container │ │ │ └── search.actions.ts │ │ └── screen.actions.ts │ ├── metareducer │ │ ├── reset.reducer.spec.ts │ │ └── reset.reducer.ts │ ├── reducers │ │ ├── new-arrival │ │ │ └── search.reducer.ts │ │ └── screen.reducer.ts │ ├── root.reducer.ts │ ├── state │ │ ├── application.state.ts │ │ ├── container.state.ts │ │ ├── container │ │ │ └── search.state.ts │ │ └── screen.state.ts │ └── util │ │ ├── util.js │ │ └── util.ts ├── styles.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/.angular-cli.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/README.md -------------------------------------------------------------------------------- /backend/src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/backend/src/routes.ts -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/common/common.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/common/common.module.ts -------------------------------------------------------------------------------- /src/app/common/pagination/entities/page.entity.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /src/app/common/pagination/entities/page.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/common/pagination/entities/page.entity.ts -------------------------------------------------------------------------------- /src/app/common/pagination/pagination.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/common/pagination/pagination.module.ts -------------------------------------------------------------------------------- /src/app/common/pagination/pagination/__snapshots__/pagination.component.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/common/pagination/pagination/__snapshots__/pagination.component.spec.ts.snap -------------------------------------------------------------------------------- /src/app/common/pagination/pagination/pagination.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/common/pagination/pagination/pagination.component.html -------------------------------------------------------------------------------- /src/app/common/pagination/pagination/pagination.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/common/pagination/pagination/pagination.component.scss -------------------------------------------------------------------------------- /src/app/common/pagination/pagination/pagination.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/common/pagination/pagination/pagination.component.spec.ts -------------------------------------------------------------------------------- /src/app/common/pagination/pagination/pagination.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/common/pagination/pagination/pagination.component.ts -------------------------------------------------------------------------------- /src/app/import-rxjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/import-rxjs.ts -------------------------------------------------------------------------------- /src/app/sandbox/app-sandbox.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/sandbox/app-sandbox.service.spec.ts -------------------------------------------------------------------------------- /src/app/sandbox/app-sandbox.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/sandbox/app-sandbox.service.ts -------------------------------------------------------------------------------- /src/app/search/component/search-list/search-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/search/component/search-list/search-list.component.html -------------------------------------------------------------------------------- /src/app/search/component/search-list/search-list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/search/component/search-list/search-list.component.scss -------------------------------------------------------------------------------- /src/app/search/component/search-list/search-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/search/component/search-list/search-list.component.spec.ts -------------------------------------------------------------------------------- /src/app/search/component/search-list/search-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/search/component/search-list/search-list.component.ts -------------------------------------------------------------------------------- /src/app/search/container/search-container/search-container.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/search/container/search-container/search-container.component.html -------------------------------------------------------------------------------- /src/app/search/container/search-container/search-container.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/search/container/search-container/search-container.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/search/container/search-container/search-container.component.spec.ts -------------------------------------------------------------------------------- /src/app/search/container/search-container/search-container.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/search/container/search-container/search-container.component.ts -------------------------------------------------------------------------------- /src/app/search/entity/entities/page.entity.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /src/app/search/entity/entities/page.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/search/entity/entities/page.entity.ts -------------------------------------------------------------------------------- /src/app/search/entity/search-response.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/search/entity/search-response.entity.ts -------------------------------------------------------------------------------- /src/app/search/entity/search.enity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/search/entity/search.enity.ts -------------------------------------------------------------------------------- /src/app/search/sandbox/search-sandbox.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/search/sandbox/search-sandbox.service.spec.ts -------------------------------------------------------------------------------- /src/app/search/sandbox/search-sandbox.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/search/sandbox/search-sandbox.service.ts -------------------------------------------------------------------------------- /src/app/search/search-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/search/search-routing.module.ts -------------------------------------------------------------------------------- /src/app/search/search.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/search/search.module.ts -------------------------------------------------------------------------------- /src/app/search/service/search.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/search/service/search.service.spec.ts -------------------------------------------------------------------------------- /src/app/search/service/search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/app/search/service/search.service.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/import-rxjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/import-rxjs.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/index.html -------------------------------------------------------------------------------- /src/jestGlobalMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/jestGlobalMocks.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/setupJest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/setupJest.ts -------------------------------------------------------------------------------- /src/statemanagement/actions/container/search.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/statemanagement/actions/container/search.actions.ts -------------------------------------------------------------------------------- /src/statemanagement/actions/screen.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/statemanagement/actions/screen.actions.ts -------------------------------------------------------------------------------- /src/statemanagement/metareducer/reset.reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/statemanagement/metareducer/reset.reducer.spec.ts -------------------------------------------------------------------------------- /src/statemanagement/metareducer/reset.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/statemanagement/metareducer/reset.reducer.ts -------------------------------------------------------------------------------- /src/statemanagement/reducers/new-arrival/search.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/statemanagement/reducers/new-arrival/search.reducer.ts -------------------------------------------------------------------------------- /src/statemanagement/reducers/screen.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/statemanagement/reducers/screen.reducer.ts -------------------------------------------------------------------------------- /src/statemanagement/root.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/statemanagement/root.reducer.ts -------------------------------------------------------------------------------- /src/statemanagement/state/application.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/statemanagement/state/application.state.ts -------------------------------------------------------------------------------- /src/statemanagement/state/container.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/statemanagement/state/container.state.ts -------------------------------------------------------------------------------- /src/statemanagement/state/container/search.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/statemanagement/state/container/search.state.ts -------------------------------------------------------------------------------- /src/statemanagement/state/screen.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/statemanagement/state/screen.state.ts -------------------------------------------------------------------------------- /src/statemanagement/util/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/statemanagement/util/util.js -------------------------------------------------------------------------------- /src/statemanagement/util/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/statemanagement/util/util.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bovandersteene/rbo-collection/HEAD/yarn.lock --------------------------------------------------------------------------------