├── .angular-cli.json ├── .editorconfig ├── .gitignore ├── README.md ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── karma.conf.js ├── lib ├── connect │ ├── connect.component.ts │ └── redux.directive.ts ├── fetch │ ├── fetch.component.ts │ └── url.directive.ts ├── let │ ├── let.directive.ts │ └── page.component.ts ├── loading-spinner │ └── loading-spinner.component.ts └── router │ ├── params.directive.ts │ ├── path.directive.ts │ └── route.component.ts ├── package.json ├── protractor.conf.js ├── src ├── app │ ├── api │ │ └── commits │ │ │ └── commits.service.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts.old │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ ├── card │ │ │ ├── card.component.spec.ts │ │ │ └── card.component.ts │ │ ├── commitList │ │ │ ├── commit.ts │ │ │ ├── commitList.component.html │ │ │ ├── commitList.component.scss │ │ │ └── commitList.component.ts │ │ ├── counter │ │ │ └── counter.component.ts │ │ ├── let │ │ │ └── let.component.ts │ │ └── user │ │ │ └── user.component.ts │ ├── container │ │ └── commits.container.ts │ ├── state │ │ └── index.ts │ └── views │ │ ├── commits-normal.view.ts │ │ ├── commits.view-with-fetch.html │ │ ├── commits.view-with-fetch.ts │ │ ├── commits.view.html │ │ ├── commits.view.ts │ │ ├── counter.container.ts │ │ ├── counter.view.html │ │ ├── counter.view.ts │ │ ├── let.view.html │ │ ├── let.view.ts │ │ ├── letView.container.ts │ │ └── letView2.container.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss ├── test.ts ├── test │ ├── fetch.directive.spec.ts │ ├── let.directive.spec.ts │ └── params.directive.spec.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── tsconfig.json └── tslint.json /.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/.angular-cli.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/README.md -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/karma.conf.js -------------------------------------------------------------------------------- /lib/connect/connect.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/lib/connect/connect.component.ts -------------------------------------------------------------------------------- /lib/connect/redux.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/lib/connect/redux.directive.ts -------------------------------------------------------------------------------- /lib/fetch/fetch.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/lib/fetch/fetch.component.ts -------------------------------------------------------------------------------- /lib/fetch/url.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/lib/fetch/url.directive.ts -------------------------------------------------------------------------------- /lib/let/let.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/lib/let/let.directive.ts -------------------------------------------------------------------------------- /lib/let/page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/lib/let/page.component.ts -------------------------------------------------------------------------------- /lib/loading-spinner/loading-spinner.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/lib/loading-spinner/loading-spinner.component.ts -------------------------------------------------------------------------------- /lib/router/params.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/lib/router/params.directive.ts -------------------------------------------------------------------------------- /lib/router/path.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/lib/router/path.directive.ts -------------------------------------------------------------------------------- /lib/router/route.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/lib/router/route.component.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /src/app/api/commits/commits.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/api/commits/commits.service.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/app.component.spec.ts.old -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/card/card.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/components/card/card.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/card/card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/components/card/card.component.ts -------------------------------------------------------------------------------- /src/app/components/commitList/commit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/components/commitList/commit.ts -------------------------------------------------------------------------------- /src/app/components/commitList/commitList.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/components/commitList/commitList.component.html -------------------------------------------------------------------------------- /src/app/components/commitList/commitList.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/components/commitList/commitList.component.scss -------------------------------------------------------------------------------- /src/app/components/commitList/commitList.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/components/commitList/commitList.component.ts -------------------------------------------------------------------------------- /src/app/components/counter/counter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/components/counter/counter.component.ts -------------------------------------------------------------------------------- /src/app/components/let/let.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/components/let/let.component.ts -------------------------------------------------------------------------------- /src/app/components/user/user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/components/user/user.component.ts -------------------------------------------------------------------------------- /src/app/container/commits.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/container/commits.container.ts -------------------------------------------------------------------------------- /src/app/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/state/index.ts -------------------------------------------------------------------------------- /src/app/views/commits-normal.view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/views/commits-normal.view.ts -------------------------------------------------------------------------------- /src/app/views/commits.view-with-fetch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/views/commits.view-with-fetch.html -------------------------------------------------------------------------------- /src/app/views/commits.view-with-fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/views/commits.view-with-fetch.ts -------------------------------------------------------------------------------- /src/app/views/commits.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/views/commits.view.html -------------------------------------------------------------------------------- /src/app/views/commits.view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/views/commits.view.ts -------------------------------------------------------------------------------- /src/app/views/counter.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/views/counter.container.ts -------------------------------------------------------------------------------- /src/app/views/counter.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/views/counter.view.html -------------------------------------------------------------------------------- /src/app/views/counter.view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/views/counter.view.ts -------------------------------------------------------------------------------- /src/app/views/let.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/views/let.view.html -------------------------------------------------------------------------------- /src/app/views/let.view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/views/let.view.ts -------------------------------------------------------------------------------- /src/app/views/letView.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/views/letView.container.ts -------------------------------------------------------------------------------- /src/app/views/letView2.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/app/views/letView2.container.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/yanxch/fun-with-angular-directives/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/test/fetch.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/test/fetch.directive.spec.ts -------------------------------------------------------------------------------- /src/test/let.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/test/let.directive.spec.ts -------------------------------------------------------------------------------- /src/test/params.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/test/params.directive.spec.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanxch/fun-with-angular-directives/HEAD/tslint.json --------------------------------------------------------------------------------