├── .gitignore ├── README.md ├── _config.yml ├── chat-app ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── channel │ │ │ ├── channel.component.css │ │ │ ├── channel.component.html │ │ │ ├── channel.component.spec.ts │ │ │ └── channel.component.ts │ │ ├── dashboard │ │ │ ├── dashboard.component.css │ │ │ ├── dashboard.component.html │ │ │ ├── dashboard.component.spec.ts │ │ │ └── dashboard.component.ts │ │ ├── group │ │ │ ├── group.component.css │ │ │ ├── group.component.html │ │ │ ├── group.component.spec.ts │ │ │ └── group.component.ts │ │ ├── image.service.spec.ts │ │ ├── image.service.ts │ │ ├── login │ │ │ ├── login.component.css │ │ │ ├── login.component.html │ │ │ ├── login.component.spec.ts │ │ │ └── login.component.ts │ │ ├── socket.service.spec.ts │ │ ├── socket.service.ts │ │ ├── users.service.spec.ts │ │ └── users.service.ts │ ├── assets │ │ └── .gitkeep │ ├── browserslist │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── karma.conf.js │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── tslint.json ├── tsconfig.json └── tslint.json ├── groups.json ├── index.js ├── indexOld.js ├── package.json └── users.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/_config.yml -------------------------------------------------------------------------------- /chat-app/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/.editorconfig -------------------------------------------------------------------------------- /chat-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/.gitignore -------------------------------------------------------------------------------- /chat-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/README.md -------------------------------------------------------------------------------- /chat-app/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/angular.json -------------------------------------------------------------------------------- /chat-app/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/e2e/protractor.conf.js -------------------------------------------------------------------------------- /chat-app/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /chat-app/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/e2e/src/app.po.ts -------------------------------------------------------------------------------- /chat-app/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /chat-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/package-lock.json -------------------------------------------------------------------------------- /chat-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/package.json -------------------------------------------------------------------------------- /chat-app/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /chat-app/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chat-app/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/app.component.html -------------------------------------------------------------------------------- /chat-app/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /chat-app/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/app.component.ts -------------------------------------------------------------------------------- /chat-app/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/app.module.ts -------------------------------------------------------------------------------- /chat-app/src/app/channel/channel.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chat-app/src/app/channel/channel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/channel/channel.component.html -------------------------------------------------------------------------------- /chat-app/src/app/channel/channel.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/channel/channel.component.spec.ts -------------------------------------------------------------------------------- /chat-app/src/app/channel/channel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/channel/channel.component.ts -------------------------------------------------------------------------------- /chat-app/src/app/dashboard/dashboard.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chat-app/src/app/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/dashboard/dashboard.component.html -------------------------------------------------------------------------------- /chat-app/src/app/dashboard/dashboard.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/dashboard/dashboard.component.spec.ts -------------------------------------------------------------------------------- /chat-app/src/app/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /chat-app/src/app/group/group.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chat-app/src/app/group/group.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/group/group.component.html -------------------------------------------------------------------------------- /chat-app/src/app/group/group.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/group/group.component.spec.ts -------------------------------------------------------------------------------- /chat-app/src/app/group/group.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/group/group.component.ts -------------------------------------------------------------------------------- /chat-app/src/app/image.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/image.service.spec.ts -------------------------------------------------------------------------------- /chat-app/src/app/image.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/image.service.ts -------------------------------------------------------------------------------- /chat-app/src/app/login/login.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chat-app/src/app/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/login/login.component.html -------------------------------------------------------------------------------- /chat-app/src/app/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/login/login.component.spec.ts -------------------------------------------------------------------------------- /chat-app/src/app/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/login/login.component.ts -------------------------------------------------------------------------------- /chat-app/src/app/socket.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/socket.service.spec.ts -------------------------------------------------------------------------------- /chat-app/src/app/socket.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/socket.service.ts -------------------------------------------------------------------------------- /chat-app/src/app/users.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/users.service.spec.ts -------------------------------------------------------------------------------- /chat-app/src/app/users.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/app/users.service.ts -------------------------------------------------------------------------------- /chat-app/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chat-app/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/browserslist -------------------------------------------------------------------------------- /chat-app/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /chat-app/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/environments/environment.ts -------------------------------------------------------------------------------- /chat-app/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/favicon.ico -------------------------------------------------------------------------------- /chat-app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/index.html -------------------------------------------------------------------------------- /chat-app/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/karma.conf.js -------------------------------------------------------------------------------- /chat-app/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/main.ts -------------------------------------------------------------------------------- /chat-app/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/polyfills.ts -------------------------------------------------------------------------------- /chat-app/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/styles.css -------------------------------------------------------------------------------- /chat-app/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/test.ts -------------------------------------------------------------------------------- /chat-app/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/tsconfig.app.json -------------------------------------------------------------------------------- /chat-app/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/tsconfig.spec.json -------------------------------------------------------------------------------- /chat-app/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/src/tslint.json -------------------------------------------------------------------------------- /chat-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/tsconfig.json -------------------------------------------------------------------------------- /chat-app/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/chat-app/tslint.json -------------------------------------------------------------------------------- /groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/groups.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/index.js -------------------------------------------------------------------------------- /indexOld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/indexOld.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/package.json -------------------------------------------------------------------------------- /users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmondchuc/web-chat-app/HEAD/users.json --------------------------------------------------------------------------------