Forked from sergiubucur/Office Online Content Control Issue.WORD.yaml
Created
July 8, 2019 12:34
-
-
Save digiguru/d3c09eb26fe48f4679f85c3deb6a9ada to your computer and use it in GitHub Desktop.
Test an issue in Office Online.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Office Online Content Control Issue | |
description: Test an issue in Office Online. | |
host: WORD | |
api_set: {} | |
script: | |
content: | | |
$("#copy").click(() => tryCatch(copy)); | |
$("#paste").click(() => tryCatch(paste)); | |
let xmlContent = null; | |
function retrieveXML() { | |
return new Promise((resolve, reject) => { | |
Word.run((context) => { | |
const range = context.document.getSelection(); | |
context.load(range, "text, inlinePictures/hyperlink"); | |
return context.sync().then(() => { | |
xmlContent = range.getOoxml(); | |
return context.sync().then(() => { | |
resolve(); | |
}); | |
}); | |
}); | |
}); | |
} | |
function insertContentControl() { | |
return new Promise((resolve, reject) => { | |
Word.run((context) => { | |
const range = context.document.getSelection(); | |
const ctrl = range.insertContentControl(); | |
ctrl.appearance = "boundingBox"; | |
ctrl.insertOoxml(xmlContent.value, "Replace"); | |
return context.sync().then(() => { | |
resolve(); | |
}); | |
}); | |
}); | |
} | |
function copy() { | |
retrieveXML().then(() => { | |
console.log("content copied"); | |
}); | |
} | |
function paste() { | |
insertContentControl().then(() => { | |
console.log("content control inserted"); | |
}); | |
} | |
/** Default helper for invoking an action and handling errors. */ | |
async function tryCatch(callback) { | |
try { | |
await callback(); | |
} catch (error) { | |
// Note: In a production add-in, you'd want to notify the user through your add-in's UI. | |
console.error(error); | |
} | |
} | |
language: typescript | |
template: | |
content: |- | |
<button id="copy" class="ms-Button"> | |
<span class="ms-Button-label">Copy</span> | |
</button> | |
<button id="paste" class="ms-Button"> | |
<span class="ms-Button-label">Paste</span> | |
</button> | |
language: html | |
style: | |
content: |- | |
section.samples { | |
margin-top: 20px; | |
} | |
section.samples .ms-Button, section.setup .ms-Button { | |
display: block; | |
margin-bottom: 5px; | |
margin-left: 20px; | |
min-width: 80px; | |
} | |
language: css | |
libraries: | | |
https://appsforoffice.microsoft.com/lib/1/hosted/office.js | |
@types/office-js | |
[email protected]/dist/css/fabric.min.css | |
[email protected]/dist/css/fabric.components.min.css | |
[email protected]/client/core.min.js | |
@types/core-js | |
[email protected] | |
@types/[email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment