2022-05-10 19:28:09 +08:00
|
|
|
<template>
|
2022-08-04 17:06:25 +08:00
|
|
|
<div class="tinymce-wrapper">
|
2022-07-11 16:44:27 +08:00
|
|
|
<div class="tinymce-container" :class="{ 'error': error }">
|
|
|
|
<form class="tiny-mce-editor" role="form" :action="updateUrl" accept-charset="UTF-8" data-remote="true" method="post">
|
|
|
|
<input type="hidden" name="_method" value="patch">
|
|
|
|
<div class="hidden tinymce-cancel-button mce-widget mce-btn mce-menubtn mce-flow-layout-item mce-btn-has-text pull-right" tabindex="-1">
|
|
|
|
<button type="button" tabindex="-1">
|
|
|
|
<span class="fas fa-times"></span>
|
|
|
|
<span class="mce-txt">{{ i18n.t('general.cancel') }}</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="hidden tinymce-save-button mce-widget mce-btn mce-menubtn mce-flow-layout-item mce-btn-has-text mce-last pull-right" tabindex="-1">
|
|
|
|
<button type="button" tabindex="-1">
|
|
|
|
<span class="fas fa-check"></span>
|
|
|
|
<span class="mce-txt">{{ i18n.t('general.save') }}</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="hidden tinymce-status-badge pull-right">
|
|
|
|
<i class="fas fa-check-circle"></i>
|
|
|
|
<span>{{ i18n.t('tiny_mce.saved_label') }}</span>
|
|
|
|
</div>
|
|
|
|
<div :id="`${objectType}_view_${objectId}`"
|
|
|
|
@click="initTinymce"
|
|
|
|
v-html="value_html"
|
|
|
|
class="ql-editor tinymce-view"
|
|
|
|
:data-placeholder="placeholder"
|
|
|
|
:data-tinymce-init="`tinymce-${objectType}-description-${objectId}`">
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<textarea :id="`${objectType}_textarea_${objectId}`"
|
|
|
|
class="form-control hidden"
|
|
|
|
autocomplete="off"
|
|
|
|
:data-tinymce-object="`tinymce-${objectType}-description-${objectId}`"
|
|
|
|
:data-object-type="objectType"
|
|
|
|
:data-object-id="objectId"
|
|
|
|
:data-highlightjs-path="this.getStaticUrl('highlightjs-url')"
|
|
|
|
:data-last-updated="lastUpdated * 1000"
|
|
|
|
:data-tinymce-asset-path="this.getStaticUrl('tiny-mce-assets-url')"
|
2022-08-10 16:27:15 +08:00
|
|
|
:placeholder="placeholder"
|
2022-07-11 16:44:27 +08:00
|
|
|
:value="value"
|
|
|
|
cols="120"
|
|
|
|
rows="10"
|
|
|
|
:name="fieldName"
|
|
|
|
aria-hidden="true">
|
|
|
|
</textarea>
|
|
|
|
<input type="hidden" id="tiny-mce-images" name="tiny_mce_images" value="[]">
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
2022-08-04 17:06:25 +08:00
|
|
|
<div v-if="active && error" class="tinymce-error">
|
2022-07-11 16:44:27 +08:00
|
|
|
{{ error }}
|
|
|
|
</div>
|
2022-05-10 19:28:09 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2022-08-04 17:06:25 +08:00
|
|
|
import UtilsMixin from 'vue/mixins/utils.js';
|
|
|
|
|
2022-05-10 19:28:09 +08:00
|
|
|
export default {
|
|
|
|
name: 'Tinymce',
|
|
|
|
props: {
|
|
|
|
value: String,
|
|
|
|
value_html: String,
|
|
|
|
placeholder: String,
|
|
|
|
updateUrl: String,
|
|
|
|
objectType: String,
|
|
|
|
objectId: Number,
|
|
|
|
fieldName: String,
|
|
|
|
lastUpdated: Number,
|
2022-07-11 16:44:27 +08:00
|
|
|
inEditMode: Boolean,
|
|
|
|
characterLimit: {
|
|
|
|
type: Number,
|
|
|
|
default: null
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
characterCount: 0,
|
2022-08-04 17:06:25 +08:00
|
|
|
blurEventHandler: null,
|
|
|
|
active: false
|
2022-07-11 16:44:27 +08:00
|
|
|
}
|
2022-05-10 19:28:09 +08:00
|
|
|
},
|
2022-08-04 17:06:25 +08:00
|
|
|
mixins: [ UtilsMixin ],
|
2022-05-10 19:28:09 +08:00
|
|
|
watch: {
|
|
|
|
inEditMode() {
|
|
|
|
if (this.inEditMode) {
|
2022-08-04 17:06:25 +08:00
|
|
|
this.initTinymce();
|
2022-05-10 19:28:09 +08:00
|
|
|
}
|
2022-07-11 16:44:27 +08:00
|
|
|
},
|
|
|
|
characterCount() {
|
|
|
|
if(this.error) {
|
|
|
|
this.editorInstance.blurDisabled = true;
|
|
|
|
} else {
|
|
|
|
this.editorInstance.blurDisabled = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
2022-08-26 16:52:55 +08:00
|
|
|
editorInstance() {
|
|
|
|
return tinyMCE.editors[0];
|
|
|
|
},
|
2022-07-11 16:44:27 +08:00
|
|
|
error() {
|
|
|
|
if(this.characterLimit && this.characterCount > this.characterLimit) {
|
|
|
|
return(
|
|
|
|
this.i18n.t(
|
|
|
|
'inline_edit.errors.over_limit',
|
2022-08-04 17:06:25 +08:00
|
|
|
{
|
|
|
|
attribute: this.i18n.t('general.text.name'),
|
|
|
|
limit: this.numberWithSpaces(this.characterLimit)
|
|
|
|
}
|
2022-07-11 16:44:27 +08:00
|
|
|
)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
2022-05-10 19:28:09 +08:00
|
|
|
}
|
|
|
|
},
|
2022-07-14 00:02:35 +08:00
|
|
|
mounted() {
|
|
|
|
if (this.inEditMode) {
|
|
|
|
this.initTinymce();
|
|
|
|
}
|
|
|
|
},
|
2022-05-10 19:28:09 +08:00
|
|
|
methods: {
|
2022-08-05 17:23:36 +08:00
|
|
|
initTinymce(e) {
|
2022-05-10 19:28:09 +08:00
|
|
|
let textArea = `#${this.objectType}_textarea_${this.objectId}`;
|
2022-08-05 17:23:36 +08:00
|
|
|
|
|
|
|
if (e && $(e.target).hasClass('atwho-user-popover')) return
|
|
|
|
if (e && $(e.target).hasClass('record-info-link')) return
|
|
|
|
if (e && $(e.target).parent().hasClass('atwho-inserted')) return
|
|
|
|
|
2022-05-10 19:28:09 +08:00
|
|
|
TinyMCE.init(textArea, (data) => {
|
|
|
|
if (data) {
|
|
|
|
this.$emit('update', data)
|
|
|
|
}
|
|
|
|
this.$emit('editingDisabled')
|
2022-08-26 16:52:55 +08:00
|
|
|
}).then(() => {
|
2022-08-04 17:06:25 +08:00
|
|
|
this.active = true;
|
2022-07-11 16:44:27 +08:00
|
|
|
this.initCharacterCount();
|
2022-05-10 19:28:09 +08:00
|
|
|
});
|
|
|
|
this.$emit('editingEnabled')
|
|
|
|
},
|
|
|
|
getStaticUrl(name) {
|
|
|
|
return $(`meta[name=\'${name}\']`).attr('content');
|
2022-07-11 16:44:27 +08:00
|
|
|
},
|
|
|
|
initCharacterCount() {
|
2022-08-04 17:06:25 +08:00
|
|
|
if (!this.editorInstance) return;
|
|
|
|
|
2022-07-11 16:44:27 +08:00
|
|
|
this.characterCount = $(this.editorInstance.getContent()).text().length
|
|
|
|
|
2022-08-04 17:06:25 +08:00
|
|
|
this.editorInstance.on('input change paste keydown', (e) => {
|
|
|
|
e.currentTarget && (this.characterCount = (e.currentTarget).innerText.length);
|
2022-07-11 16:44:27 +08:00
|
|
|
});
|
|
|
|
|
2022-08-04 17:06:25 +08:00
|
|
|
this.editorInstance.on('remove', () => this.active = false)
|
|
|
|
|
2022-07-11 16:44:27 +08:00
|
|
|
// clear error on cancel
|
|
|
|
$(this.editorInstance.container).find('.tinymce-cancel-button').on('click', ()=> {
|
|
|
|
this.characterCount = 0;
|
|
|
|
});
|
2022-05-10 19:28:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-05-11 17:18:40 +08:00
|
|
|
</script>
|