├── .babelrc ├── .eslintrc ├── .gitignore ├── .idea └── jsLibraryMappings.xml ├── .jshintrc ├── LICENSE ├── README.md ├── index.html ├── package.json ├── server.js ├── src ├── App.js ├── actions │ ├── ChatActions.js │ └── ChatConstants.js ├── components │ ├── Layout.jsx │ ├── LoginUser.jsx │ ├── Main.js │ ├── Main.jsx │ ├── MessageList.jsx │ ├── NewMessage.jsx │ ├── Subscribe.js │ ├── Subscribe.jsx │ ├── TopBar.js │ └── TopBar.jsx ├── index.js ├── reducers │ ├── chat.js │ └── index.js └── stores │ ├── chat.js │ └── index.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "stage": 0 3 | } -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .DS_Store 4 | .idea 5 | -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/server.js -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/src/App.js -------------------------------------------------------------------------------- /src/actions/ChatActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/src/actions/ChatActions.js -------------------------------------------------------------------------------- /src/actions/ChatConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/src/actions/ChatConstants.js -------------------------------------------------------------------------------- /src/components/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/src/components/Layout.jsx -------------------------------------------------------------------------------- /src/components/LoginUser.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/src/components/LoginUser.jsx -------------------------------------------------------------------------------- /src/components/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/src/components/Main.js -------------------------------------------------------------------------------- /src/components/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/src/components/Main.jsx -------------------------------------------------------------------------------- /src/components/MessageList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/src/components/MessageList.jsx -------------------------------------------------------------------------------- /src/components/NewMessage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/src/components/NewMessage.jsx -------------------------------------------------------------------------------- /src/components/Subscribe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/src/components/Subscribe.js -------------------------------------------------------------------------------- /src/components/Subscribe.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/src/components/Subscribe.jsx -------------------------------------------------------------------------------- /src/components/TopBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/src/components/TopBar.js -------------------------------------------------------------------------------- /src/components/TopBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/src/components/TopBar.jsx -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/src/reducers/chat.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/stores/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/src/stores/chat.js -------------------------------------------------------------------------------- /src/stores/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/src/stores/index.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusAtaide/reduxchat/HEAD/webpack.config.js --------------------------------------------------------------------------------