├── .clang-format ├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── STEPS.md ├── config └── environment.js ├── documentation ├── devfest-components-deps-graph.png ├── devfest-components-tree-details.graffle ├── devfest-components-tree-details.png ├── devfest-components-tree.png ├── devfest-home.png ├── devfest-summary.png └── devfest-technology.png ├── e2e ├── app.e2e.ts ├── app.po.ts └── tsconfig.json ├── ember-cli-build.js ├── karma-test-shim.js ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src ├── app.ts ├── app │ ├── components │ │ ├── home │ │ │ ├── home.html │ │ │ ├── home.spec.ts │ │ │ └── home.ts │ │ ├── question-card │ │ │ ├── question-card.html │ │ │ ├── question-card.spec.ts │ │ │ └── question-card.ts │ │ ├── summary │ │ │ ├── summary.spec.ts │ │ │ └── summary.ts │ │ ├── technology │ │ │ ├── technology.spec.ts │ │ │ └── technology.ts │ │ ├── theme-card │ │ │ ├── theme-card.html │ │ │ ├── theme-card.spec.ts │ │ │ └── theme-card.ts │ │ └── toolbar │ │ │ └── toolbar.html │ ├── data │ │ ├── questions.ts │ │ └── themes.ts │ ├── directives │ │ └── fix-scrolling │ │ │ ├── fix-scrolling.spec.ts │ │ │ └── fix-scrolling.ts │ ├── ng2-codelab.spec.ts │ ├── ng2-codelab.ts │ ├── pipes │ │ └── mark-pipe │ │ │ ├── mark-pipe.spec.ts │ │ │ └── mark-pipe.ts │ ├── routes.config.ts │ └── services │ │ ├── life-cycles-hooks │ │ ├── life-cycles-hooks.spec.ts │ │ └── life-cycles-hooks.ts │ │ ├── question-store │ │ ├── question-store.spec.ts │ │ └── question-store.ts │ │ ├── store │ │ ├── store.spec.ts │ │ └── store.ts │ │ └── technologies-store │ │ ├── technologies-store.spec.ts │ │ └── technologies-store.ts ├── favicon.ico ├── images │ ├── angular2.jpg │ ├── js.jpg │ ├── react.svg │ └── typescript.png ├── index.html ├── styles │ ├── app.css │ └── card.css ├── tsconfig.json └── typings.d.ts └── typings.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/README.md -------------------------------------------------------------------------------- /STEPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/STEPS.md -------------------------------------------------------------------------------- /config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/config/environment.js -------------------------------------------------------------------------------- /documentation/devfest-components-deps-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/documentation/devfest-components-deps-graph.png -------------------------------------------------------------------------------- /documentation/devfest-components-tree-details.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/documentation/devfest-components-tree-details.graffle -------------------------------------------------------------------------------- /documentation/devfest-components-tree-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/documentation/devfest-components-tree-details.png -------------------------------------------------------------------------------- /documentation/devfest-components-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/documentation/devfest-components-tree.png -------------------------------------------------------------------------------- /documentation/devfest-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/documentation/devfest-home.png -------------------------------------------------------------------------------- /documentation/devfest-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/documentation/devfest-summary.png -------------------------------------------------------------------------------- /documentation/devfest-technology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/documentation/devfest-technology.png -------------------------------------------------------------------------------- /e2e/app.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/e2e/app.e2e.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/ember-cli-build.js -------------------------------------------------------------------------------- /karma-test-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/karma-test-shim.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/app/components/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/components/home/home.html -------------------------------------------------------------------------------- /src/app/components/home/home.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/components/home/home.spec.ts -------------------------------------------------------------------------------- /src/app/components/home/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/components/home/home.ts -------------------------------------------------------------------------------- /src/app/components/question-card/question-card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/components/question-card/question-card.html -------------------------------------------------------------------------------- /src/app/components/question-card/question-card.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/components/question-card/question-card.spec.ts -------------------------------------------------------------------------------- /src/app/components/question-card/question-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/components/question-card/question-card.ts -------------------------------------------------------------------------------- /src/app/components/summary/summary.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/components/summary/summary.spec.ts -------------------------------------------------------------------------------- /src/app/components/summary/summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/components/summary/summary.ts -------------------------------------------------------------------------------- /src/app/components/technology/technology.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/components/technology/technology.spec.ts -------------------------------------------------------------------------------- /src/app/components/technology/technology.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/components/technology/technology.ts -------------------------------------------------------------------------------- /src/app/components/theme-card/theme-card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/components/theme-card/theme-card.html -------------------------------------------------------------------------------- /src/app/components/theme-card/theme-card.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/components/theme-card/theme-card.spec.ts -------------------------------------------------------------------------------- /src/app/components/theme-card/theme-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/components/theme-card/theme-card.ts -------------------------------------------------------------------------------- /src/app/components/toolbar/toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/components/toolbar/toolbar.html -------------------------------------------------------------------------------- /src/app/data/questions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/data/questions.ts -------------------------------------------------------------------------------- /src/app/data/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/data/themes.ts -------------------------------------------------------------------------------- /src/app/directives/fix-scrolling/fix-scrolling.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/directives/fix-scrolling/fix-scrolling.spec.ts -------------------------------------------------------------------------------- /src/app/directives/fix-scrolling/fix-scrolling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/directives/fix-scrolling/fix-scrolling.ts -------------------------------------------------------------------------------- /src/app/ng2-codelab.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/ng2-codelab.spec.ts -------------------------------------------------------------------------------- /src/app/ng2-codelab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/ng2-codelab.ts -------------------------------------------------------------------------------- /src/app/pipes/mark-pipe/mark-pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/pipes/mark-pipe/mark-pipe.spec.ts -------------------------------------------------------------------------------- /src/app/pipes/mark-pipe/mark-pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/pipes/mark-pipe/mark-pipe.ts -------------------------------------------------------------------------------- /src/app/routes.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/routes.config.ts -------------------------------------------------------------------------------- /src/app/services/life-cycles-hooks/life-cycles-hooks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/services/life-cycles-hooks/life-cycles-hooks.spec.ts -------------------------------------------------------------------------------- /src/app/services/life-cycles-hooks/life-cycles-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/services/life-cycles-hooks/life-cycles-hooks.ts -------------------------------------------------------------------------------- /src/app/services/question-store/question-store.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/services/question-store/question-store.spec.ts -------------------------------------------------------------------------------- /src/app/services/question-store/question-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/services/question-store/question-store.ts -------------------------------------------------------------------------------- /src/app/services/store/store.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/services/store/store.spec.ts -------------------------------------------------------------------------------- /src/app/services/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/services/store/store.ts -------------------------------------------------------------------------------- /src/app/services/technologies-store/technologies-store.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/services/technologies-store/technologies-store.spec.ts -------------------------------------------------------------------------------- /src/app/services/technologies-store/technologies-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/app/services/technologies-store/technologies-store.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/images/angular2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/images/angular2.jpg -------------------------------------------------------------------------------- /src/images/js.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/images/js.jpg -------------------------------------------------------------------------------- /src/images/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/images/react.svg -------------------------------------------------------------------------------- /src/images/typescript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/images/typescript.png -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/index.html -------------------------------------------------------------------------------- /src/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/styles/app.css -------------------------------------------------------------------------------- /src/styles/card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/styles/card.css -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekinekko/angular-codelab/HEAD/typings.json --------------------------------------------------------------------------------