├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── README_EN.md ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── package.json ├── src ├── App.vue ├── api │ ├── index.js │ └── messageType.js ├── assets │ ├── css │ │ ├── icon.css │ │ └── style.scss │ ├── font │ │ └── IcoMoon-Free.ttf │ └── img │ │ ├── bg.png │ │ ├── favicon.ico │ │ ├── msg.png │ │ ├── nearby.png │ │ ├── scan.svg │ │ └── webchat.png ├── components │ ├── ContactSection.vue │ ├── ImageUpload.vue │ ├── LoadMoreTop.vue │ ├── MeSection.vue │ ├── Message.vue │ ├── MicStatus │ │ └── MicStatus.vue │ ├── Session.vue │ ├── SessionSection.vue │ └── ShowSuccess │ │ └── ShowSuccess.vue ├── i18n │ ├── index.js │ └── locales.js ├── main.js ├── router │ └── index.js ├── store │ ├── actions.js │ ├── getters.js │ ├── index.js │ ├── mutation-types.js │ └── mutations.js ├── utils │ └── index.js └── views │ ├── AddNearbyPeople.vue │ ├── FriendCard.vue │ ├── Index.vue │ ├── Login.vue │ ├── MessageSection.vue │ ├── NearbyPeople.vue │ ├── NewFriend.vue │ ├── Profiles.vue │ ├── Register.vue │ ├── Search.vue │ └── Settings.vue └── static └── .gitkeep /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/README_EN.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/api/index.js -------------------------------------------------------------------------------- /src/api/messageType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/api/messageType.js -------------------------------------------------------------------------------- /src/assets/css/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/assets/css/icon.css -------------------------------------------------------------------------------- /src/assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/assets/css/style.scss -------------------------------------------------------------------------------- /src/assets/font/IcoMoon-Free.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/assets/font/IcoMoon-Free.ttf -------------------------------------------------------------------------------- /src/assets/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/assets/img/bg.png -------------------------------------------------------------------------------- /src/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/assets/img/favicon.ico -------------------------------------------------------------------------------- /src/assets/img/msg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/assets/img/msg.png -------------------------------------------------------------------------------- /src/assets/img/nearby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/assets/img/nearby.png -------------------------------------------------------------------------------- /src/assets/img/scan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/assets/img/scan.svg -------------------------------------------------------------------------------- /src/assets/img/webchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/assets/img/webchat.png -------------------------------------------------------------------------------- /src/components/ContactSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/components/ContactSection.vue -------------------------------------------------------------------------------- /src/components/ImageUpload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/components/ImageUpload.vue -------------------------------------------------------------------------------- /src/components/LoadMoreTop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/components/LoadMoreTop.vue -------------------------------------------------------------------------------- /src/components/MeSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/components/MeSection.vue -------------------------------------------------------------------------------- /src/components/Message.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/components/Message.vue -------------------------------------------------------------------------------- /src/components/MicStatus/MicStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/components/MicStatus/MicStatus.vue -------------------------------------------------------------------------------- /src/components/Session.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/components/Session.vue -------------------------------------------------------------------------------- /src/components/SessionSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/components/SessionSection.vue -------------------------------------------------------------------------------- /src/components/ShowSuccess/ShowSuccess.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/components/ShowSuccess/ShowSuccess.vue -------------------------------------------------------------------------------- /src/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/i18n/index.js -------------------------------------------------------------------------------- /src/i18n/locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/i18n/locales.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/store/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/store/actions.js -------------------------------------------------------------------------------- /src/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/store/getters.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/mutation-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/store/mutation-types.js -------------------------------------------------------------------------------- /src/store/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/store/mutations.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/views/AddNearbyPeople.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/views/AddNearbyPeople.vue -------------------------------------------------------------------------------- /src/views/FriendCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/views/FriendCard.vue -------------------------------------------------------------------------------- /src/views/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/views/Index.vue -------------------------------------------------------------------------------- /src/views/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/views/Login.vue -------------------------------------------------------------------------------- /src/views/MessageSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/views/MessageSection.vue -------------------------------------------------------------------------------- /src/views/NearbyPeople.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/views/NearbyPeople.vue -------------------------------------------------------------------------------- /src/views/NewFriend.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/views/NewFriend.vue -------------------------------------------------------------------------------- /src/views/Profiles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/views/Profiles.vue -------------------------------------------------------------------------------- /src/views/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/views/Register.vue -------------------------------------------------------------------------------- /src/views/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/views/Search.vue -------------------------------------------------------------------------------- /src/views/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weiyuc/webchat/HEAD/src/views/Settings.vue -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------