├── .gitignore ├── README.md ├── docs ├── asset-manifest.json ├── favicon.ico ├── index.html ├── manifest.json ├── service-worker.js └── static │ ├── css │ ├── main.1d762d0c.css │ └── main.1d762d0c.css.map │ └── js │ ├── main.8f5ab0ff.js │ └── main.8f5ab0ff.js.map ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json └── src ├── App.js ├── App.test.js ├── Classes.js ├── Constants.js ├── components ├── Layout.js ├── LoginForm.js ├── UsersInChatRoom.js ├── chat │ ├── ChatContainer.js │ ├── ChatHeading.js │ └── SideBar.js └── messaging │ ├── MessageInput.js │ └── Messages.js ├── index.js ├── registerServiceWorker.js ├── server ├── Procfile ├── SocketManager.js ├── package.json └── server.js └── styles ├── .sass-cache └── 6af3623bcbcb565e309f0528766b9138bd675e55 │ └── index.scssc ├── index.css ├── index.css.map └── index.scss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/README.md -------------------------------------------------------------------------------- /docs/asset-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/docs/asset-manifest.json -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/docs/manifest.json -------------------------------------------------------------------------------- /docs/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/docs/service-worker.js -------------------------------------------------------------------------------- /docs/static/css/main.1d762d0c.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/docs/static/css/main.1d762d0c.css -------------------------------------------------------------------------------- /docs/static/css/main.1d762d0c.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/docs/static/css/main.1d762d0c.css.map -------------------------------------------------------------------------------- /docs/static/js/main.8f5ab0ff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/docs/static/js/main.8f5ab0ff.js -------------------------------------------------------------------------------- /docs/static/js/main.8f5ab0ff.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/docs/static/js/main.8f5ab0ff.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/src/Classes.js -------------------------------------------------------------------------------- /src/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/src/Constants.js -------------------------------------------------------------------------------- /src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/src/components/Layout.js -------------------------------------------------------------------------------- /src/components/LoginForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/src/components/LoginForm.js -------------------------------------------------------------------------------- /src/components/UsersInChatRoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/src/components/UsersInChatRoom.js -------------------------------------------------------------------------------- /src/components/chat/ChatContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/src/components/chat/ChatContainer.js -------------------------------------------------------------------------------- /src/components/chat/ChatHeading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/src/components/chat/ChatHeading.js -------------------------------------------------------------------------------- /src/components/chat/SideBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/src/components/chat/SideBar.js -------------------------------------------------------------------------------- /src/components/messaging/MessageInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/src/components/messaging/MessageInput.js -------------------------------------------------------------------------------- /src/components/messaging/Messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/src/components/messaging/Messages.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/src/index.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/server/Procfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/server/SocketManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/src/server/SocketManager.js -------------------------------------------------------------------------------- /src/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/src/server/package.json -------------------------------------------------------------------------------- /src/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/src/server/server.js -------------------------------------------------------------------------------- /src/styles/.sass-cache/6af3623bcbcb565e309f0528766b9138bd675e55/index.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/src/styles/.sass-cache/6af3623bcbcb565e309f0528766b9138bd675e55/index.scssc -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/src/styles/index.css -------------------------------------------------------------------------------- /src/styles/index.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/src/styles/index.css.map -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonwatson2/React-Chat-App/HEAD/src/styles/index.scss --------------------------------------------------------------------------------