├── .babelrc ├── .editorconfig ├── .gitignore ├── .idea ├── jsLibraryMappings.xml ├── misc.xml ├── modules.xml ├── vcs.xml ├── watcherTasks.xml ├── workspace.xml └── x-chat.iml ├── README.md ├── config ├── dev.env.js ├── index.js ├── prod.env.js └── test.env.js ├── index.html ├── package.json ├── src ├── App.vue ├── assets │ ├── logo.png │ ├── logo2.jpg │ ├── pikapika.jpg │ └── yellowboy.jpg ├── base.less ├── chat.js ├── common.js ├── components │ ├── AllGroup.vue │ ├── Chat.vue │ ├── Content.vue │ ├── Dagger.vue │ ├── Error.vue │ ├── Friend.vue │ ├── GroupChat.vue │ ├── Hint.vue │ ├── Home.vue │ ├── List.vue │ ├── Login.vue │ ├── Register.vue │ ├── common │ │ ├── dagger │ │ │ ├── Dagger.vue │ │ │ └── dagger.js │ │ ├── prompt │ │ │ ├── prompt.js │ │ │ └── prompt.vue │ │ └── toast │ │ │ ├── toast.js │ │ │ └── toast.vue │ ├── public │ │ ├── Footer.vue │ │ └── Header.vue │ └── userInfo.vue ├── main.js ├── router.js ├── socket.js ├── store.js └── webScoket.js ├── static ├── images │ ├── logo.png │ ├── logo2.jpg │ ├── pikapika.jpg │ └── yellowboy.jpg └── socket.io.js └── test ├── e2e ├── custom-assertions │ └── elementCount.js ├── nightwatch.conf.js ├── runner.js └── specs │ └── test.js └── unit ├── .eslintrc ├── index.js ├── karma.conf.js └── specs └── Hello.spec.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/watcherTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/.idea/watcherTasks.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.idea/x-chat.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/.idea/x-chat.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/config/test.env.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/logo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/assets/logo2.jpg -------------------------------------------------------------------------------- /src/assets/pikapika.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/assets/pikapika.jpg -------------------------------------------------------------------------------- /src/assets/yellowboy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/assets/yellowboy.jpg -------------------------------------------------------------------------------- /src/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/base.less -------------------------------------------------------------------------------- /src/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/chat.js -------------------------------------------------------------------------------- /src/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/common.js -------------------------------------------------------------------------------- /src/components/AllGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/components/AllGroup.vue -------------------------------------------------------------------------------- /src/components/Chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/components/Chat.vue -------------------------------------------------------------------------------- /src/components/Content.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/components/Content.vue -------------------------------------------------------------------------------- /src/components/Dagger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/components/Dagger.vue -------------------------------------------------------------------------------- /src/components/Error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/components/Error.vue -------------------------------------------------------------------------------- /src/components/Friend.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/components/Friend.vue -------------------------------------------------------------------------------- /src/components/GroupChat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/components/GroupChat.vue -------------------------------------------------------------------------------- /src/components/Hint.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/components/Hint.vue -------------------------------------------------------------------------------- /src/components/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/components/Home.vue -------------------------------------------------------------------------------- /src/components/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/components/List.vue -------------------------------------------------------------------------------- /src/components/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/components/Login.vue -------------------------------------------------------------------------------- /src/components/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/components/Register.vue -------------------------------------------------------------------------------- /src/components/common/dagger/Dagger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/components/common/dagger/Dagger.vue -------------------------------------------------------------------------------- /src/components/common/dagger/dagger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/components/common/dagger/dagger.js -------------------------------------------------------------------------------- /src/components/common/prompt/prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/components/common/prompt/prompt.js -------------------------------------------------------------------------------- /src/components/common/prompt/prompt.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/components/common/prompt/prompt.vue -------------------------------------------------------------------------------- /src/components/common/toast/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/components/common/toast/toast.js -------------------------------------------------------------------------------- /src/components/common/toast/toast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/components/common/toast/toast.vue -------------------------------------------------------------------------------- /src/components/public/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/components/public/Footer.vue -------------------------------------------------------------------------------- /src/components/public/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/components/public/Header.vue -------------------------------------------------------------------------------- /src/components/userInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/components/userInfo.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/router.js -------------------------------------------------------------------------------- /src/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/socket.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/store.js -------------------------------------------------------------------------------- /src/webScoket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/src/webScoket.js -------------------------------------------------------------------------------- /static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/static/images/logo.png -------------------------------------------------------------------------------- /static/images/logo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/static/images/logo2.jpg -------------------------------------------------------------------------------- /static/images/pikapika.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/static/images/pikapika.jpg -------------------------------------------------------------------------------- /static/images/yellowboy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/static/images/yellowboy.jpg -------------------------------------------------------------------------------- /static/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/static/socket.io.js -------------------------------------------------------------------------------- /test/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/test/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /test/e2e/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/test/e2e/nightwatch.conf.js -------------------------------------------------------------------------------- /test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/test/e2e/runner.js -------------------------------------------------------------------------------- /test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/test/e2e/specs/test.js -------------------------------------------------------------------------------- /test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/test/unit/.eslintrc -------------------------------------------------------------------------------- /test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/test/unit/index.js -------------------------------------------------------------------------------- /test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/test/unit/karma.conf.js -------------------------------------------------------------------------------- /test/unit/specs/Hello.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermu592275254/x-chat/HEAD/test/unit/specs/Hello.spec.js --------------------------------------------------------------------------------