wip: replace bookmark and insert table row
This commit is contained in:
parent
00de3193da
commit
4476517dcb
@ -113,6 +113,9 @@ onMounted(async () => {
|
|||||||
case 'ModifyStatus':
|
case 'ModifyStatus':
|
||||||
handleSendModifyStatus()
|
handleSendModifyStatus()
|
||||||
break
|
break
|
||||||
|
case 'ReplaceTextAndInsertTableRow':
|
||||||
|
handleReplaceTextAndInsertTableRow(data)
|
||||||
|
break
|
||||||
}
|
}
|
||||||
// WOPI Client发送消息
|
// WOPI Client发送消息
|
||||||
switch (MessageId) {
|
switch (MessageId) {
|
||||||
@ -577,6 +580,35 @@ function handleDocumentReady(data: any) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function handleReplaceTextAndInsertTableRow(data: any) {
|
||||||
|
const Payload = data.Payload
|
||||||
|
const text = Payload.text
|
||||||
|
const table = Payload.table
|
||||||
|
const tableData: any[] = []
|
||||||
|
for (const tab_obj of table) {
|
||||||
|
tableData.push({
|
||||||
|
location_bookmark_name: tab_obj.bookmarkName,
|
||||||
|
start_row_index: tab_obj.startRowIndex,
|
||||||
|
data: tab_obj.data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
sendMessageToWopiClient({
|
||||||
|
MessageId: 'CallPythonScript',
|
||||||
|
SendTime: Date.now(),
|
||||||
|
ScriptFile: 'BookmarkOP.py',
|
||||||
|
Function: 'ReplaceTextAndInsertTableRow',
|
||||||
|
Values: {
|
||||||
|
params: {
|
||||||
|
type: 'string',
|
||||||
|
value: JSON.stringify({
|
||||||
|
text,
|
||||||
|
table: tableData,
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
function logEvent(e: MessageEvent) {
|
function logEvent(e: MessageEvent) {
|
||||||
console.log('=============receive message start=======')
|
console.log('=============receive message start=======')
|
||||||
console.log(typeof e.data)
|
console.log(typeof e.data)
|
||||||
|
Loading…
Reference in New Issue
Block a user