├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── app ├── actions │ ├── DebugSessionActions.js │ ├── LogActions.js │ ├── LoginActions.js │ └── TicketActions.js ├── components │ ├── App.css │ ├── App.jsx │ ├── DebugSession.jsx │ ├── DebugSessionDialog.jsx │ ├── DebugSessionOverview.jsx │ ├── Error.jsx │ ├── LoadingItems.jsx │ ├── Login.css │ ├── Login.jsx │ ├── Replies.jsx │ ├── Reply.jsx │ ├── Ticket.jsx │ └── Tickets.jsx ├── constants │ └── ActionTypes.js ├── debug.js ├── dispatch.js ├── dispatcher.js ├── httpClient.js ├── index.js └── stores │ ├── BaseStore.js │ ├── DebugSessionsStore.js │ ├── LoginStore.js │ └── TicketStore.js ├── dist └── index.html ├── logger.js ├── package.json ├── server.js └── webpack.config.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/README.md -------------------------------------------------------------------------------- /app/actions/DebugSessionActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/actions/DebugSessionActions.js -------------------------------------------------------------------------------- /app/actions/LogActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/actions/LogActions.js -------------------------------------------------------------------------------- /app/actions/LoginActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/actions/LoginActions.js -------------------------------------------------------------------------------- /app/actions/TicketActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/actions/TicketActions.js -------------------------------------------------------------------------------- /app/components/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/components/App.css -------------------------------------------------------------------------------- /app/components/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/components/App.jsx -------------------------------------------------------------------------------- /app/components/DebugSession.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/components/DebugSession.jsx -------------------------------------------------------------------------------- /app/components/DebugSessionDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/components/DebugSessionDialog.jsx -------------------------------------------------------------------------------- /app/components/DebugSessionOverview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/components/DebugSessionOverview.jsx -------------------------------------------------------------------------------- /app/components/Error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/components/Error.jsx -------------------------------------------------------------------------------- /app/components/LoadingItems.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/components/LoadingItems.jsx -------------------------------------------------------------------------------- /app/components/Login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/components/Login.css -------------------------------------------------------------------------------- /app/components/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/components/Login.jsx -------------------------------------------------------------------------------- /app/components/Replies.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/components/Replies.jsx -------------------------------------------------------------------------------- /app/components/Reply.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/components/Reply.jsx -------------------------------------------------------------------------------- /app/components/Ticket.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/components/Ticket.jsx -------------------------------------------------------------------------------- /app/components/Tickets.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/components/Tickets.jsx -------------------------------------------------------------------------------- /app/constants/ActionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/constants/ActionTypes.js -------------------------------------------------------------------------------- /app/debug.js: -------------------------------------------------------------------------------- 1 | export default { 2 | isActive: false 3 | }; 4 | -------------------------------------------------------------------------------- /app/dispatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/dispatch.js -------------------------------------------------------------------------------- /app/dispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/dispatcher.js -------------------------------------------------------------------------------- /app/httpClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/httpClient.js -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/index.js -------------------------------------------------------------------------------- /app/stores/BaseStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/stores/BaseStore.js -------------------------------------------------------------------------------- /app/stores/DebugSessionsStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/stores/DebugSessionsStore.js -------------------------------------------------------------------------------- /app/stores/LoginStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/stores/LoginStore.js -------------------------------------------------------------------------------- /app/stores/TicketStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/app/stores/TicketStore.js -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/dist/index.html -------------------------------------------------------------------------------- /logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/logger.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/server.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/react-flux-debug-actions-sample/HEAD/webpack.config.js --------------------------------------------------------------------------------