├── .gitignore ├── README.md ├── babel.config.js ├── dist ├── demo.html ├── halo-comment.js ├── halo-comment.js.map ├── halo-comment.min.js └── halo-comment.min.js.map ├── package.json ├── public ├── favicon.ico └── index.html └── src ├── App.vue ├── api ├── comment.js └── option.js ├── assets └── logo.png ├── components ├── Comment.vue ├── CommentEditor.vue ├── CommentLoading.vue ├── CommentNode.vue ├── EmojiPicker │ ├── Categories.vue │ ├── Emoji.vue │ ├── EmojiList.vue │ ├── Helper.vue │ ├── InputSearch.vue │ ├── VEmojiPicker.vue │ ├── VSvg.vue │ ├── _icons.js │ ├── data │ │ └── emojis.js │ └── index.js ├── Pagination.vue └── index.js ├── main.js ├── styles ├── github-markdown.scss └── global.scss └── utils ├── service.js └── util.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/babel.config.js -------------------------------------------------------------------------------- /dist/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/dist/demo.html -------------------------------------------------------------------------------- /dist/halo-comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/dist/halo-comment.js -------------------------------------------------------------------------------- /dist/halo-comment.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/dist/halo-comment.js.map -------------------------------------------------------------------------------- /dist/halo-comment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/dist/halo-comment.min.js -------------------------------------------------------------------------------- /dist/halo-comment.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/dist/halo-comment.min.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/api/comment.js -------------------------------------------------------------------------------- /src/api/option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/api/option.js -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/Comment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/components/Comment.vue -------------------------------------------------------------------------------- /src/components/CommentEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/components/CommentEditor.vue -------------------------------------------------------------------------------- /src/components/CommentLoading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/components/CommentLoading.vue -------------------------------------------------------------------------------- /src/components/CommentNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/components/CommentNode.vue -------------------------------------------------------------------------------- /src/components/EmojiPicker/Categories.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/components/EmojiPicker/Categories.vue -------------------------------------------------------------------------------- /src/components/EmojiPicker/Emoji.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/components/EmojiPicker/Emoji.vue -------------------------------------------------------------------------------- /src/components/EmojiPicker/EmojiList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/components/EmojiPicker/EmojiList.vue -------------------------------------------------------------------------------- /src/components/EmojiPicker/Helper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/components/EmojiPicker/Helper.vue -------------------------------------------------------------------------------- /src/components/EmojiPicker/InputSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/components/EmojiPicker/InputSearch.vue -------------------------------------------------------------------------------- /src/components/EmojiPicker/VEmojiPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/components/EmojiPicker/VEmojiPicker.vue -------------------------------------------------------------------------------- /src/components/EmojiPicker/VSvg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/components/EmojiPicker/VSvg.vue -------------------------------------------------------------------------------- /src/components/EmojiPicker/_icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/components/EmojiPicker/_icons.js -------------------------------------------------------------------------------- /src/components/EmojiPicker/data/emojis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/components/EmojiPicker/data/emojis.js -------------------------------------------------------------------------------- /src/components/EmojiPicker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/components/EmojiPicker/index.js -------------------------------------------------------------------------------- /src/components/Pagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/components/Pagination.vue -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/main.js -------------------------------------------------------------------------------- /src/styles/github-markdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/styles/github-markdown.scss -------------------------------------------------------------------------------- /src/styles/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/styles/global.scss -------------------------------------------------------------------------------- /src/utils/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/utils/service.js -------------------------------------------------------------------------------- /src/utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halo-dev/halo-comment-fly/HEAD/src/utils/util.js --------------------------------------------------------------------------------