├── .gitignore ├── .vscode └── settings.json ├── README.md ├── client ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── .env │ ├── App.js │ ├── assets │ │ ├── main.css │ │ └── tailwind.css │ ├── components │ │ ├── Chatting │ │ │ ├── Chat │ │ │ │ ├── index.js │ │ │ │ └── style.css │ │ │ ├── InfoBar │ │ │ │ ├── index.js │ │ │ │ └── style.css │ │ │ ├── Input │ │ │ │ ├── index.js │ │ │ │ └── style.css │ │ │ ├── Join │ │ │ │ ├── index.js │ │ │ │ └── style.css │ │ │ ├── Messages │ │ │ │ ├── Message │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.css │ │ │ │ ├── index.js │ │ │ │ └── style.css │ │ │ ├── TextContainer │ │ │ │ ├── index.js │ │ │ │ └── style.css │ │ │ └── index.js │ │ ├── LandingPage │ │ │ ├── index.js │ │ │ └── style.css │ │ ├── PhotoGallary │ │ │ ├── ImageBox │ │ │ │ └── index.js │ │ │ ├── ImageSearch │ │ │ │ └── index.js │ │ │ ├── ServiceCalls │ │ │ │ └── index.js │ │ │ └── index.js │ │ └── PlanningPoker │ │ │ ├── MyInput │ │ │ ├── index.js │ │ │ └── style.css │ │ │ ├── UserIcon │ │ │ ├── index.js │ │ │ └── style.css │ │ │ ├── index.js │ │ │ └── style.css │ ├── icons │ │ ├── closeIcon.png │ │ ├── onlineIcon.png │ │ └── user.png │ └── index.js └── tailwind.js └── server ├── index.js ├── package-lock.json ├── package.json ├── router.js └── utils └── users.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/README.md -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/package.json -------------------------------------------------------------------------------- /client/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/postcss.config.js -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/.env: -------------------------------------------------------------------------------- 1 | API_KEY="17925693-c924acaf6b6f38b6d7fc56edd" -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/assets/main.css -------------------------------------------------------------------------------- /client/src/assets/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/assets/tailwind.css -------------------------------------------------------------------------------- /client/src/components/Chatting/Chat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/Chatting/Chat/index.js -------------------------------------------------------------------------------- /client/src/components/Chatting/Chat/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/Chatting/Chat/style.css -------------------------------------------------------------------------------- /client/src/components/Chatting/InfoBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/Chatting/InfoBar/index.js -------------------------------------------------------------------------------- /client/src/components/Chatting/InfoBar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/Chatting/InfoBar/style.css -------------------------------------------------------------------------------- /client/src/components/Chatting/Input/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/Chatting/Input/index.js -------------------------------------------------------------------------------- /client/src/components/Chatting/Input/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/Chatting/Input/style.css -------------------------------------------------------------------------------- /client/src/components/Chatting/Join/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/Chatting/Join/index.js -------------------------------------------------------------------------------- /client/src/components/Chatting/Join/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/Chatting/Join/style.css -------------------------------------------------------------------------------- /client/src/components/Chatting/Messages/Message/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/Chatting/Messages/Message/index.js -------------------------------------------------------------------------------- /client/src/components/Chatting/Messages/Message/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/Chatting/Messages/Message/style.css -------------------------------------------------------------------------------- /client/src/components/Chatting/Messages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/Chatting/Messages/index.js -------------------------------------------------------------------------------- /client/src/components/Chatting/Messages/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/Chatting/Messages/style.css -------------------------------------------------------------------------------- /client/src/components/Chatting/TextContainer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/Chatting/TextContainer/index.js -------------------------------------------------------------------------------- /client/src/components/Chatting/TextContainer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/Chatting/TextContainer/style.css -------------------------------------------------------------------------------- /client/src/components/Chatting/index.js: -------------------------------------------------------------------------------- 1 | // import -------------------------------------------------------------------------------- /client/src/components/LandingPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/LandingPage/index.js -------------------------------------------------------------------------------- /client/src/components/LandingPage/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/LandingPage/style.css -------------------------------------------------------------------------------- /client/src/components/PhotoGallary/ImageBox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/PhotoGallary/ImageBox/index.js -------------------------------------------------------------------------------- /client/src/components/PhotoGallary/ImageSearch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/PhotoGallary/ImageSearch/index.js -------------------------------------------------------------------------------- /client/src/components/PhotoGallary/ServiceCalls/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/PhotoGallary/ServiceCalls/index.js -------------------------------------------------------------------------------- /client/src/components/PhotoGallary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/PhotoGallary/index.js -------------------------------------------------------------------------------- /client/src/components/PlanningPoker/MyInput/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/PlanningPoker/MyInput/index.js -------------------------------------------------------------------------------- /client/src/components/PlanningPoker/MyInput/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/PlanningPoker/MyInput/style.css -------------------------------------------------------------------------------- /client/src/components/PlanningPoker/UserIcon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/PlanningPoker/UserIcon/index.js -------------------------------------------------------------------------------- /client/src/components/PlanningPoker/UserIcon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/PlanningPoker/UserIcon/style.css -------------------------------------------------------------------------------- /client/src/components/PlanningPoker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/PlanningPoker/index.js -------------------------------------------------------------------------------- /client/src/components/PlanningPoker/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/components/PlanningPoker/style.css -------------------------------------------------------------------------------- /client/src/icons/closeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/icons/closeIcon.png -------------------------------------------------------------------------------- /client/src/icons/onlineIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/icons/onlineIcon.png -------------------------------------------------------------------------------- /client/src/icons/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/icons/user.png -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/tailwind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/client/tailwind.js -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/server/index.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/server/package.json -------------------------------------------------------------------------------- /server/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/server/router.js -------------------------------------------------------------------------------- /server/utils/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleseed619/react_chatting_site/HEAD/server/utils/users.js --------------------------------------------------------------------------------