├── .browserslistrc ├── .editorconfig ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── README.md ├── angular.json ├── karma.conf.js ├── package.json ├── src ├── app │ ├── app.component.ts │ ├── app.module.ts │ └── todos │ │ ├── add-todo │ │ ├── add-todo.component.html │ │ ├── add-todo.component.scss │ │ └── add-todo.component.ts │ │ ├── model │ │ ├── create-todo.ts │ │ ├── index.ts │ │ ├── initial-todos.ts │ │ └── todo.interface.ts │ │ ├── todo │ │ ├── todo.component.html │ │ ├── todo.component.scss │ │ └── todo.component.ts │ │ ├── todos.component.html │ │ ├── todos.component.scss │ │ ├── todos.component.ts │ │ └── todos.module.ts ├── assets │ ├── .gitkeep │ └── icons │ │ ├── delete.svg │ │ ├── plus.svg │ │ ├── task_completed.svg │ │ └── task_pending.svg ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/angular.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/todos/add-todo/add-todo.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/app/todos/add-todo/add-todo.component.html -------------------------------------------------------------------------------- /src/app/todos/add-todo/add-todo.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/app/todos/add-todo/add-todo.component.scss -------------------------------------------------------------------------------- /src/app/todos/add-todo/add-todo.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/app/todos/add-todo/add-todo.component.ts -------------------------------------------------------------------------------- /src/app/todos/model/create-todo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/app/todos/model/create-todo.ts -------------------------------------------------------------------------------- /src/app/todos/model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/app/todos/model/index.ts -------------------------------------------------------------------------------- /src/app/todos/model/initial-todos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/app/todos/model/initial-todos.ts -------------------------------------------------------------------------------- /src/app/todos/model/todo.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/app/todos/model/todo.interface.ts -------------------------------------------------------------------------------- /src/app/todos/todo/todo.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/app/todos/todo/todo.component.html -------------------------------------------------------------------------------- /src/app/todos/todo/todo.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/app/todos/todo/todo.component.scss -------------------------------------------------------------------------------- /src/app/todos/todo/todo.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/app/todos/todo/todo.component.ts -------------------------------------------------------------------------------- /src/app/todos/todos.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/app/todos/todos.component.html -------------------------------------------------------------------------------- /src/app/todos/todos.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/app/todos/todos.component.scss -------------------------------------------------------------------------------- /src/app/todos/todos.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/app/todos/todos.component.ts -------------------------------------------------------------------------------- /src/app/todos/todos.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/app/todos/todos.module.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/icons/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/assets/icons/delete.svg -------------------------------------------------------------------------------- /src/assets/icons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/assets/icons/plus.svg -------------------------------------------------------------------------------- /src/assets/icons/task_completed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/assets/icons/task_completed.svg -------------------------------------------------------------------------------- /src/assets/icons/task_pending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/assets/icons/task_pending.svg -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ako-tech/ngrx-basic-todo/HEAD/yarn.lock --------------------------------------------------------------------------------