├── .editorconfig ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── README.md ├── angular.json ├── package.json ├── src ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── gifs │ │ ├── components │ │ │ ├── card-list │ │ │ │ ├── card-list.component.html │ │ │ │ └── card-list.component.ts │ │ │ └── search-box │ │ │ │ └── search-box.component.ts │ │ ├── gifs.module.ts │ │ ├── interfaces │ │ │ └── gifs.interfaces.ts │ │ ├── pages │ │ │ └── home │ │ │ │ ├── home-page.component.html │ │ │ │ └── home-page.component.ts │ │ └── services │ │ │ └── gifs.service.ts │ └── shared │ │ ├── components │ │ └── sidebar │ │ │ ├── sidebar.component.css │ │ │ ├── sidebar.component.html │ │ │ ├── sidebar.component.spec.ts │ │ │ └── sidebar.component.ts │ │ └── shared.module.ts ├── assets │ └── .gitkeep ├── favicon.ico ├── index.html ├── main.ts └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/angular.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/gifs/components/card-list/card-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/src/app/gifs/components/card-list/card-list.component.html -------------------------------------------------------------------------------- /src/app/gifs/components/card-list/card-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/src/app/gifs/components/card-list/card-list.component.ts -------------------------------------------------------------------------------- /src/app/gifs/components/search-box/search-box.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/src/app/gifs/components/search-box/search-box.component.ts -------------------------------------------------------------------------------- /src/app/gifs/gifs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/src/app/gifs/gifs.module.ts -------------------------------------------------------------------------------- /src/app/gifs/interfaces/gifs.interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/src/app/gifs/interfaces/gifs.interfaces.ts -------------------------------------------------------------------------------- /src/app/gifs/pages/home/home-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/src/app/gifs/pages/home/home-page.component.html -------------------------------------------------------------------------------- /src/app/gifs/pages/home/home-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/src/app/gifs/pages/home/home-page.component.ts -------------------------------------------------------------------------------- /src/app/gifs/services/gifs.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/src/app/gifs/services/gifs.service.ts -------------------------------------------------------------------------------- /src/app/shared/components/sidebar/sidebar.component.css: -------------------------------------------------------------------------------- 1 | #sidebar { 2 | height: 100vh; 3 | width: 250px; 4 | } 5 | -------------------------------------------------------------------------------- /src/app/shared/components/sidebar/sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/src/app/shared/components/sidebar/sidebar.component.html -------------------------------------------------------------------------------- /src/app/shared/components/sidebar/sidebar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/src/app/shared/components/sidebar/sidebar.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/sidebar/sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/src/app/shared/components/sidebar/sidebar.component.ts -------------------------------------------------------------------------------- /src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/src/styles.css -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/angular-gif-app/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------