123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295 |
- <template>
- <div>
- <div class="mdeditor-box">
- <MarkdownPro ref="md1" v-model="content" :height="height" :toolbars="toolbars" :is-custom-fullscreen="transfer" @on-custom="customClick" @on-upload-image="handleUploadImageUpload"></MarkdownPro>
- <ImgUpload
- ref="myUpload"
- class="upload-control"
- type="callback"
- :uploadIng.sync="uploadIng"
- @on-callback="editorImage"
- num="50"/>
- <Upload
- name="files"
- ref="fileUpload"
- class="upload-control"
- :action="actionUrl"
- :data="params"
- multiple
- :format="uploadFormat"
- :show-upload-list="false"
- :max-size="maxSize"
- :on-progress="handleProgress"
- :on-success="handleSuccess"
- :on-error="handleError"
- :on-format-error="handleFormatError"
- :on-exceeded-size="handleMaxSize"
- :before-upload="handleBeforeUpload"/>
- </div>
- <Spin fix v-if="uploadIng > 0">
- <Icon type="ios-loading" class="upload-control-spin-icon-load"></Icon>
- <div>{{$L('正在上传文件...')}}</div>
- </Spin>
- <Modal v-model="transfer" class="mdeditor-transfer" footer-hide fullscreen transfer :closable="false">
- <div class="mdeditor-transfer-body">
- <MarkdownPro ref="md2" v-if="transfer" v-model="content" :toolbars="toolbars" :is-custom-fullscreen="transfer" height="100%" @on-custom="customClick"></MarkdownPro>
- </div>
- <Spin fix v-if="uploadIng > 0">
- <Icon type="ios-loading" class="upload-control-spin-icon-load"></Icon>
- <div>{{$L('正在上传文件...')}}</div>
- </Spin>
- </Modal>
- <Modal v-model="html2md" title="html转markdown" okText="转换成markdown" width="680" class-name="simple-modal" @on-ok="htmlOk" transfer>
- <Input type="textarea" v-model="htmlValue" :rows="14" placeholder="请输入html代码..." />
- </Modal>
- </div>
- </template>
- <style lang="scss">
- .mdeditor-transfer {
- background-color: #ffffff;
- .ivu-modal-header {
- display: none;
- }
- .ivu-modal-close {
- top: 7px;
- }
- .mdeditor-transfer-body {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- padding: 0;
- margin: 0;
- }
- }
- </style>
- <style lang="scss" scoped>
- .mdeditor-box {
- position: relative;
- }
- .upload-control {
- display: none;
- width: 0;
- height: 0;
- overflow: hidden;
- }
- </style>
- <script>
- import MarkdownPro from './pro';
- import ImgUpload from "../ImgUpload";
- export default {
- name: 'MDEditor',
- components: {ImgUpload, MarkdownPro},
- props: {
- value: {
- default: ''
- },
- height: {
- default: 380,
- },
- toolbars: {
- type: Object,
- default: () => {
- return {
- strong: true,
- italic: true,
- overline: true,
- h1: true,
- h2: true,
- h3: true,
- h4: false,
- h5: false,
- h6: false,
- hr: true,
- quote: true,
- ul: true,
- ol: true,
- code: true,
- link: true,
- image: false,
- uploadImage: false,
- table: true,
- checked: true,
- notChecked: true,
- split: true,
- preview: true,
- fullscreen: false,
- theme: false,
- exportmd: false,
- importmd: false,
- save: false,
- clear: false,
- custom_image: true,
- custom_uploadImage: true,
- custom_uploadFile: true,
- custom_fullscreen: true,
- };
- }
- }
- },
- data() {
- return {
- content: '',
- transfer: false,
- html2md: false,
- htmlValue: '',
- uploadIng: 0,
- uploadFormat: ['jpg', 'jpeg', 'png', 'gif', 'doc', 'docx', 'xls', 'xlsx', 'ppt', 'pptx', 'txt', 'esp', 'pdf', 'rar', 'zip', 'gz', 'ai', 'avi', 'bmp', 'cdr', 'eps', 'mov', 'mp3', 'mp4', 'pr', 'psd', 'svg', 'tif'],
- actionUrl: $A.apiUrl('system/fileupload'),
- params: { token: $A.getToken() },
- maxSize: 204800
- };
- },
- mounted() {
- this.content = this.value;
- },
- activated() {
- this.content = this.value;
- },
- watch: {
- value(newValue) {
- if (newValue == null) {
- newValue = "";
- }
- this.content = newValue;
- },
- content(val) {
- this.$emit('input', val);
- },
- },
- methods: {
- editorImage(lists) {
- for (let i = 0; i < lists.length; i++) {
- let item = lists[i];
- if (typeof item === 'object' && typeof item.url === "string") {
- if (this.transfer) {
- this.$refs.md2.insertContent('\n');
- } else {
- this.$refs.md1.insertContent('\n');
- }
- }
- }
- },
- customClick(act) {
- switch (act) {
- case "image-browse": {
- this.$refs.myUpload.browsePicture();
- break;
- }
- case "image-upload": {
- this.$refs.myUpload.handleClick();
- break;
- }
- case "file-upload": {
- this.$refs.fileUpload.handleClick();
- break;
- }
- case "fullscreen": {
- this.transfer = !this.transfer;
- break;
- }
- case "html2md": {
- this.html2md = true;
- break;
- }
- }
- },
- htmlOk() {
- this.loadScript(window.location.origin + '/js/html2md.js', () => {
- if (typeof toMarkdown !== 'function') {
- alert("组件加载失败!");
- return;
- }
- if (this.transfer) {
- this.$refs.md2.insertContent('\n' + toMarkdown(this.htmlValue, { gfm: true }));
- } else {
- this.$refs.md1.insertContent('\n' + toMarkdown(this.htmlValue, { gfm: true }));
- }
- this.htmlValue = "";
- });
- },
- loadScript(url, callback) {
- let script = document.createElement("script");
- script.type = "text/javascript";
- if (script.readyState) {
- script.onreadystatechange = () => {
- if (script.readyState === "loaded" || script.readyState === "complete") {
- script.onreadystatechange = null;
- callback();
- }
- };
- } else {
- script.onload = () => {
- callback();
- };
- }
- script.src = url;
- document.body.appendChild(script);
- },
- handleUploadImageUpload(file) {
- //手动传图片
- this.$refs.myUpload.handleManual(file);
- },
- /********************文件上传部分************************/
- handleProgress() {
- //开始上传
- this.uploadIng++;
- },
- handleSuccess(res, file) {
- //上传完成
- this.uploadIng--;
- if (res.ret === 1) {
- let con = `[${res.data.name} (${$A.bytesToSize(res.data.size * 1024)})](${res.data.url})`;
- if (this.transfer) {
- this.$refs.md2.insertContent(con);
- } else {
- this.$refs.md1.insertContent(con);
- }
- } else {
- this.$Modal.warning({
- title: this.$L('上传失败'),
- content: this.$L('文件 % 上传失败,%', file.name, res.msg)
- });
- }
- },
- handleError() {
- //上传错误
- this.uploadIng--;
- },
- handleFormatError(file) {
- //上传类型错误
- this.$Modal.warning({
- title: this.$L('文件格式不正确'),
- content: this.$L('文件 % 格式不正确,仅支持上传:%', file.name, this.uploadFormat.join(','))
- });
- },
- handleMaxSize(file) {
- //上传大小错误
- this.$Modal.warning({
- title: this.$L('超出文件大小限制'),
- content: this.$L('文件 % 太大,不能超过%。', file.name, $A.bytesToSize(this.maxSize * 1024))
- });
- },
- handleBeforeUpload() {
- //上传前判断
- this.params = {
- token: $A.getToken(),
- };
- return true;
- },
- }
- }
- </script>
|