├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── db.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── karma.conf.js ├── package.json ├── src ├── app │ ├── Task.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ ├── about │ │ │ ├── about.component.css │ │ │ ├── about.component.html │ │ │ ├── about.component.spec.ts │ │ │ └── about.component.ts │ │ ├── add-task │ │ │ ├── add-task.component.css │ │ │ ├── add-task.component.html │ │ │ ├── add-task.component.spec.ts │ │ │ └── add-task.component.ts │ │ ├── button │ │ │ ├── button.component.css │ │ │ ├── button.component.html │ │ │ ├── button.component.spec.ts │ │ │ └── button.component.ts │ │ ├── footer │ │ │ ├── footer.component.css │ │ │ ├── footer.component.html │ │ │ ├── footer.component.spec.ts │ │ │ └── footer.component.ts │ │ ├── header │ │ │ ├── header.component.css │ │ │ ├── header.component.html │ │ │ ├── header.component.spec.ts │ │ │ └── header.component.ts │ │ ├── task-item │ │ │ ├── task-item.component.css │ │ │ ├── task-item.component.html │ │ │ ├── task-item.component.spec.ts │ │ │ └── task-item.component.ts │ │ └── tasks │ │ │ ├── tasks.component.css │ │ │ ├── tasks.component.html │ │ │ ├── tasks.component.spec.ts │ │ │ └── tasks.component.ts │ ├── mock-tasks.ts │ └── services │ │ ├── task.service.spec.ts │ │ ├── task.service.ts │ │ ├── ui.service.spec.ts │ │ └── ui.service.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/angular.json -------------------------------------------------------------------------------- /db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/db.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/package.json -------------------------------------------------------------------------------- /src/app/Task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/Task.ts -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/about/about.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/about/about.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/about/about.component.html -------------------------------------------------------------------------------- /src/app/components/about/about.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/about/about.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/about/about.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/about/about.component.ts -------------------------------------------------------------------------------- /src/app/components/add-task/add-task.component.css: -------------------------------------------------------------------------------- 1 | .add-form { 2 | margin-bottom: 40px; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/components/add-task/add-task.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/add-task/add-task.component.html -------------------------------------------------------------------------------- /src/app/components/add-task/add-task.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/add-task/add-task.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/add-task/add-task.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/add-task/add-task.component.ts -------------------------------------------------------------------------------- /src/app/components/button/button.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/button/button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/button/button.component.html -------------------------------------------------------------------------------- /src/app/components/button/button.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/button/button.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/button/button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/button/button.component.ts -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.css: -------------------------------------------------------------------------------- 1 | footer { 2 | margin-top: 30px; 3 | text-align: center; 4 | } 5 | -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/footer/footer.component.html -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/components/header/header.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/header/header.component.css -------------------------------------------------------------------------------- /src/app/components/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/header/header.component.html -------------------------------------------------------------------------------- /src/app/components/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/header/header.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/header/header.component.ts -------------------------------------------------------------------------------- /src/app/components/task-item/task-item.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/task-item/task-item.component.css -------------------------------------------------------------------------------- /src/app/components/task-item/task-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/task-item/task-item.component.html -------------------------------------------------------------------------------- /src/app/components/task-item/task-item.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/task-item/task-item.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/task-item/task-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/task-item/task-item.component.ts -------------------------------------------------------------------------------- /src/app/components/tasks/tasks.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/tasks/tasks.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/tasks/tasks.component.html -------------------------------------------------------------------------------- /src/app/components/tasks/tasks.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/tasks/tasks.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/tasks/tasks.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/components/tasks/tasks.component.ts -------------------------------------------------------------------------------- /src/app/mock-tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/mock-tasks.ts -------------------------------------------------------------------------------- /src/app/services/task.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/services/task.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/task.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/services/task.service.ts -------------------------------------------------------------------------------- /src/app/services/ui.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/services/ui.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/ui.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/app/services/ui.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/bradtraversy/angular-crash-2021/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/angular-crash-2021/HEAD/tslint.json --------------------------------------------------------------------------------