Files
t/pages2/editCms/titleStyle.vue
T
2025-06-13 20:48:15 +08:00

348 lines
7.3 KiB
Vue

<template>
<view class="container">
<view>
<uni-nav-bar
title="标题样式"
leftText="取消"
left-icon="left"
right-text="完成"
backgroundColor="#ffffff"
color="#000000"
@clickRight="toSuccess()"
@clickLeft="back()">
</uni-nav-bar>
</view>
<view class="page-body">
<view class='wrapper'>
<view class="editor-wrapper">
<editor id="editor" class="ql-container" placeholder="开始输入..." show-img-size show-img-toolbar
show-img-resize @statuschange="onStatusChange" :read-only="readOnly" @ready="onEditorReady">
</editor>
</view>
<view class='toolbar' @tap="format">
<view class="item-wrap">
<zb-popover
placement="top-end"
:options="actions"
ref="Popover1"
actionsDirection="horizontal">
<view class="iconfont icon-zitijiacu">
</view>
<template #content>
<view
:class="formats.bold ? 'ql-active' : ''"
class="iconfont icon-zitijiacu"
data-name="bold">
</view>
<view
:class="formats.italic ? 'ql-active' : ''"
class="iconfont icon-zitixieti"
data-name="italic">
</view>
<view
:class="formats.underline ? 'ql-active' : ''"
class="iconfont icon-zitixiahuaxian"
data-name="underline">
</view>
</template>
</zb-popover>
<zb-popover
actionsDirection="vertical"
@handleClick="handleFontSizeClick"
placement="top"
:options="actions"
@select="selectFontSizeItme"
ref="fontSize">
<view class="iconfont icon-fontsize"
></view>
</zb-popover>
<view
:class="{
'is-color': isColor('#000000'),
'not-color': !isColor('#000000')
}"
data-name="color"
class="color-000000-item color-item"
data-value="#000000">
</view>
<view
:class="{
'is-color': isColor('#7a7e83'),
'not-color': !isColor('#7a7e83')
}"
data-name="color"
class="color-7a7e83-item color-item"
data-value="#7a7e83">
</view>
<view
:class="{
'is-color': isColor('#ff0000'),
'not-color': !isColor('#ff0000')
}"
data-name="color"
class="color-ff0000-item color-item"
data-value="#ff0000">
</view>
<view
:class="{
'is-color': isColor('#ff9900'),
'not-color': !isColor('#ff9900')
}"
data-name="color"
class="color-ff9900-item color-item"
data-value="#ff9900">
</view>
<view
:class="{
'is-color': isColor('#1aad19'),
'not-color': !isColor('#1aad19')
}"
data-name="color"
class="color-1aad19-item color-item"
data-value="#1aad19">
</view>
<view
:class="{
'is-color': isColor('#1a73e8'),
'not-color': !isColor('#1a73e8')
}"
data-name="color"
class="color-1a73e8-item color-item"
data-value="#1a73e8">
</view>
<view
:class="{
'is-color': isColor('#cc00cc'),
'not-color': !isColor('#cc00cc')
}"
data-name="color"
class="color-cc00cc-item color-item"
data-value="#cc00cc">
</view>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
readOnly: false,
formats: {
color: "#000000",
// fontSize 36 48 64
fontSize: "28px",
},
actions: [
{
text: "标准",
value: "28px"
},
{
text: '大',
value: "32px"
},
{
text: '超大',
value: "36px"
},
],
}
},
onShow() {
},
onLoad() {
},
methods: {
selectFontSizeItme(item) {
console.log(item);
this.formats.fontSize = item.value;
this.editorCtx.format("fontSize", item.value)
},
handleFontSizeClick(flag) {
this.closeAllPopover("size")
},
isColor(color) {
console.log(color, this.formats.color)
if (color === this.formats.color) {
return true;
}
return false;
},
async toSuccess() {
let that = this;
let cms = uni.getStorageSync("cms");
console.log(cms)
if (cms) {
this.editorCtx.getContents({
success: async (res) => {
console.log(res);
let {
html,
text,
delta
} = res;
console.log(cms)
cms.title = text;
cms.title_delta = delta;
cms.title_html = html;
console.log(cms)
await uni.setStorageSync("cms", cms);
await that.back();
},
fail: (err) => {
console.log(err)
},
complete: () => {
}
});
}
},
async back() {
uni.navigateBack({
delta: 1,
fail: (err) => {
console.log(err);
uni.navigateTo({
url: "/pages2/editCms/editCms"
})
}
});
},
readOnlyChange() {
this.readOnly = !this.readOnly
},
onEditorReady() {
// #ifdef MP-BAIDU
this.editorCtx = requireDynamicLib('editorLib').createEditorContext('editor');
// #endif
// #ifdef APP-PLUS || MP-WEIXIN || H5
uni.createSelectorQuery().select('#editor').context((res) => {
this.editorCtx = res.context;
let cms = uni.getStorageSync("cms");
let {
html,
text,
delta
} = {
html: cms.title_html,
title: cms.title,
delta: cms.title_delta
};
this.editorCtx.setContents({
html:html,
delta: delta,
success: () => {
this.editorCtx.format("fontSize", this.formats.fontSize)
this.editorCtx.format("color", this.formats.color)
console.log("设置编辑器成功")
},
fail: (err) => {
console.log(err)
},
complete: () => {
}
})
}).exec()
// #endif
},
undo() {
this.editorCtx.undo()
},
redo() {
this.editorCtx.redo()
},
format(e) {
let {
name,
value
} = e.target.dataset
if (!name) return
// console.log('format', name, value)
this.editorCtx.format(name, value)
},
onStatusChange(e) {
const formats = e.detail
this.formats = formats
},
insertDivider() {
this.editorCtx.insertDivider({
success: function() {
console.log('insert divider success')
}
})
},
clear() {
uni.showModal({
title: '清空编辑器',
content: '确定清空编辑器全部内容?',
success: res => {
if (res.confirm) {
this.editorCtx.clear({
success: function(res) {
console.log("clear success")
}
})
}
}
})
},
removeFormat() {
this.editorCtx.removeFormat()
},
insertDate() {
const date = new Date()
const formatDate = `${date.getFullYear()}/${date.getMonth() + 1}/${date.getDate()}`
this.editorCtx.insertText({
text: formatDate
})
},
insertImage() {
uni.chooseImage({
count: 1,
success: (res) => {
this.editorCtx.insertImage({
src: res.tempFilePaths[0],
alt: '图像',
success: function() {
console.log('insert image success')
}
})
}
})
}
}
}
</script>
<style>
@import url("./css/edit.css");
</style>