├── .gitignore ├── LICENSE.md ├── README.md ├── angular.json ├── helpers.js ├── package.json ├── src ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ └── lesson │ │ │ ├── lesson.component.scss │ │ │ └── lesson.component.ts │ ├── domain-model.intf.ts │ ├── lessons-catalog │ │ ├── lessons-catalog-component-store.service.ts │ │ ├── lessons-catalog-state.intf.ts │ │ ├── lessons-catalog.component.html │ │ ├── lessons-catalog.component.scss │ │ └── lessons-catalog.component.ts │ └── samples │ │ ├── 001-component-store-shape.intf.ts │ │ └── 001-component-store.ts ├── index.html ├── karma.conf.js ├── main.ts ├── polyfills.ts ├── styles.scss ├── test.ts ├── tsconfig.app.json └── tsconfig.spec.json ├── tailwind.config.js ├── tsconfig.json ├── tslint.json ├── webpack-common.config.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | .idea/ 3 | node_modules/ -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/angular.json -------------------------------------------------------------------------------- /helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/helpers.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/lesson/lesson.component.scss: -------------------------------------------------------------------------------- 1 | div.lesson { 2 | @apply bg-blue-300 my-3; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/components/lesson/lesson.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/src/app/components/lesson/lesson.component.ts -------------------------------------------------------------------------------- /src/app/domain-model.intf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/src/app/domain-model.intf.ts -------------------------------------------------------------------------------- /src/app/lessons-catalog/lessons-catalog-component-store.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/src/app/lessons-catalog/lessons-catalog-component-store.service.ts -------------------------------------------------------------------------------- /src/app/lessons-catalog/lessons-catalog-state.intf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/src/app/lessons-catalog/lessons-catalog-state.intf.ts -------------------------------------------------------------------------------- /src/app/lessons-catalog/lessons-catalog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/src/app/lessons-catalog/lessons-catalog.component.html -------------------------------------------------------------------------------- /src/app/lessons-catalog/lessons-catalog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/src/app/lessons-catalog/lessons-catalog.component.scss -------------------------------------------------------------------------------- /src/app/lessons-catalog/lessons-catalog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/src/app/lessons-catalog/lessons-catalog.component.ts -------------------------------------------------------------------------------- /src/app/samples/001-component-store-shape.intf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/src/app/samples/001-component-store-shape.intf.ts -------------------------------------------------------------------------------- /src/app/samples/001-component-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/src/app/samples/001-component-store.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack-common.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/webpack-common.config.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsebastien/ngrx-component-store-demo/HEAD/webpack.config.js --------------------------------------------------------------------------------