Skip to content

Commit d9e9770

Browse files
webaddkevinsudoooooo
authored andcommitted
feat: 小功能建设(4) (didi#379)
1 parent 0745d90 commit d9e9770

File tree

1 file changed

+30
-6
lines changed
  • web/src/materials/questions/widgets/TitleModules/TitleContent

1 file changed

+30
-6
lines changed

web/src/materials/questions/widgets/TitleModules/TitleContent/index.jsx

+30-6
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,21 @@ export default defineComponent({
3838
},
3939
setup(props, { slots }) {
4040
const status = ref('')
41+
const moduleTitleRef = ref()
4142
watch(
4243
() => props.isSelected,
4344
() => {
4445
status.value = 'preview'
4546
}
4647
)
4748

48-
const handleClick = () => {
49-
if (props.isSelected) {
50-
status.value = 'edit'
49+
watch(status, (v) => {
50+
if (v === 'edit') {
51+
document.addEventListener('click', handleDocumentClick)
52+
} else {
53+
document.removeEventListener('click', handleDocumentClick)
5154
}
52-
}
55+
})
5356

5457
const typeName = computed(() => {
5558
if (!props.showType) return ''
@@ -84,13 +87,34 @@ export default defineComponent({
8487
return htmlText
8588
})
8689

87-
return { slots, handleClick, status, tagTitle }
90+
function handleClick(e) {
91+
if (props.isSelected && status.value === 'preview') {
92+
e.stopPropagation()
93+
status.value = 'edit'
94+
}
95+
}
96+
97+
function handleDocumentClick(e) {
98+
const richEditorDOM = moduleTitleRef.value.querySelector('.rich-editor')
99+
const isClickRichEditor = richEditorDOM?.contains(e.target)
100+
101+
if (status.value === 'edit' && richEditorDOM && !isClickRichEditor) {
102+
// 监听编辑状态时点击非编辑区域
103+
status.value = 'preview'
104+
}
105+
}
106+
107+
return { slots, handleClick, status, tagTitle, moduleTitleRef }
88108
},
89109
render() {
90110
const { isRequired, indexNumber, slots, status, tagTitle } = this
91111

92112
return (
93-
<div class={['module-title', isRequired ? 'is-required' : '']} onClick={this.handleClick}>
113+
<div
114+
ref="moduleTitleRef"
115+
class={['module-title', isRequired ? 'is-required' : '']}
116+
onClick={this.handleClick}
117+
>
94118
{isRequired && <i class="module-title-required">*</i>}
95119
<div class="module-content">
96120
{this.showIndex && <span class="index"> {indexNumber}.</span>}

0 commit comments

Comments
 (0)