@@ -38,18 +38,21 @@ export default defineComponent({
38
38
} ,
39
39
setup ( props , { slots } ) {
40
40
const status = ref ( '' )
41
+ const moduleTitleRef = ref ( )
41
42
watch (
42
43
( ) => props . isSelected ,
43
44
( ) => {
44
45
status . value = 'preview'
45
46
}
46
47
)
47
48
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 )
51
54
}
52
- }
55
+ } )
53
56
54
57
const typeName = computed ( ( ) => {
55
58
if ( ! props . showType ) return ''
@@ -84,13 +87,34 @@ export default defineComponent({
84
87
return htmlText
85
88
} )
86
89
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 }
88
108
} ,
89
109
render ( ) {
90
110
const { isRequired, indexNumber, slots, status, tagTitle } = this
91
111
92
112
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
+ >
94
118
{ isRequired && < i class = "module-title-required" > *</ i > }
95
119
< div class = "module-content" >
96
120
{ this . showIndex && < span class = "index" > { indexNumber } .</ span > }
0 commit comments