├── .editorconfig ├── .firebaserc ├── .gitignore ├── README.md ├── angular-cli.json ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.json ├── firebase.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src ├── app │ ├── app.component.ts │ ├── app.module.ts │ ├── app.routing.ts │ ├── modules │ │ ├── about │ │ │ ├── about.component.css │ │ │ ├── about.component.html │ │ │ ├── about.component.spec.ts │ │ │ └── about.component.ts │ │ ├── feed │ │ │ ├── feed.component.css │ │ │ ├── feed.component.html │ │ │ ├── feed.component.spec.ts │ │ │ └── feed.component.ts │ │ ├── header │ │ │ ├── header.component.css │ │ │ ├── header.component.html │ │ │ ├── header.component.spec.ts │ │ │ └── header.component.ts │ │ ├── post │ │ │ ├── post.component.css │ │ │ ├── post.component.html │ │ │ ├── post.component.spec.ts │ │ │ └── post.component.ts │ │ └── user │ │ │ ├── user.component.css │ │ │ ├── user.component.html │ │ │ ├── user.component.spec.ts │ │ │ └── user.component.ts │ ├── services │ │ ├── auth.service.ts │ │ └── posts.service.ts │ └── views │ │ ├── home │ │ ├── home.component.css │ │ ├── home.component.html │ │ ├── home.component.spec.ts │ │ └── home.component.ts │ │ ├── login │ │ ├── login.component.css │ │ ├── login.component.html │ │ ├── login.component.spec.ts │ │ └── login.component.ts │ │ └── register │ │ ├── register.component.css │ │ ├── register.component.html │ │ ├── register.component.spec.ts │ │ └── register.component.ts ├── assets │ ├── .gitkeep │ ├── css │ │ └── main.css │ └── images │ │ ├── logo.png │ │ ├── logout.png │ │ ├── new-post-submit-icon.png │ │ └── trending.png ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css ├── test.ts └── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/README.md -------------------------------------------------------------------------------- /angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/angular-cli.json -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/firebase.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/app.routing.ts -------------------------------------------------------------------------------- /src/app/modules/about/about.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modules/about/about.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/modules/about/about.component.html -------------------------------------------------------------------------------- /src/app/modules/about/about.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/modules/about/about.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/about/about.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/modules/about/about.component.ts -------------------------------------------------------------------------------- /src/app/modules/feed/feed.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/modules/feed/feed.component.css -------------------------------------------------------------------------------- /src/app/modules/feed/feed.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/modules/feed/feed.component.html -------------------------------------------------------------------------------- /src/app/modules/feed/feed.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/modules/feed/feed.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/feed/feed.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/modules/feed/feed.component.ts -------------------------------------------------------------------------------- /src/app/modules/header/header.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modules/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/modules/header/header.component.html -------------------------------------------------------------------------------- /src/app/modules/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/modules/header/header.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/modules/header/header.component.ts -------------------------------------------------------------------------------- /src/app/modules/post/post.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modules/post/post.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/modules/post/post.component.html -------------------------------------------------------------------------------- /src/app/modules/post/post.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/modules/post/post.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/post/post.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/modules/post/post.component.ts -------------------------------------------------------------------------------- /src/app/modules/user/user.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modules/user/user.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/modules/user/user.component.html -------------------------------------------------------------------------------- /src/app/modules/user/user.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/modules/user/user.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/user/user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/modules/user/user.component.ts -------------------------------------------------------------------------------- /src/app/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/services/auth.service.ts -------------------------------------------------------------------------------- /src/app/services/posts.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/services/posts.service.ts -------------------------------------------------------------------------------- /src/app/views/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/views/home/home.component.html -------------------------------------------------------------------------------- /src/app/views/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/views/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/views/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/views/home/home.component.ts -------------------------------------------------------------------------------- /src/app/views/login/login.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/views/login/login.component.html -------------------------------------------------------------------------------- /src/app/views/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/views/login/login.component.spec.ts -------------------------------------------------------------------------------- /src/app/views/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/views/login/login.component.ts -------------------------------------------------------------------------------- /src/app/views/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/views/register/register.component.html -------------------------------------------------------------------------------- /src/app/views/register/register.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/views/register/register.component.spec.ts -------------------------------------------------------------------------------- /src/app/views/register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/app/views/register/register.component.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/assets/css/main.css -------------------------------------------------------------------------------- /src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/assets/images/logo.png -------------------------------------------------------------------------------- /src/assets/images/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/assets/images/logout.png -------------------------------------------------------------------------------- /src/assets/images/new-post-submit-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/assets/images/new-post-submit-icon.png -------------------------------------------------------------------------------- /src/assets/images/trending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/assets/images/trending.png -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forLoopOfficial/theloop-frontend/HEAD/tslint.json --------------------------------------------------------------------------------