2018-07-26 23:16:50 -05:00
<!DOCTYPE html>
<!-- Proof of concept of running loleaflet.html in an iframe. Also
shows how to, from outside the iframe, invoke Python scripting in
the underlying LibreOffice instance that manipulates the document
being edited.
This demonstrates using the Python InsertText.py and Capitalise.py
scripts from javascript across iframes.
To test this, do 'make run', and then in your browser open the
equivalent of
2019-06-16 12:28:58 -05:00
http://snorken.local:9980/loleaflet/3304e9093/framed.doc.html if the
2018-07-26 23:16:50 -05:00
browser is running on a different machine, or
2019-06-16 12:28:58 -05:00
http://localhost:9980/loleaflet/3304e9093/framed.doc.html if running
2018-07-26 23:16:50 -05:00
on the same machine.
-->
< html >
< head >
< meta http-equiv = "Content-Type" content = "text/html; charset=UTF-8" >
< title > Online Editor< / title >
< script >
2019-06-16 12:28:58 -05:00
function post(msg) {
window.frames[0].postMessage(JSON.stringify(msg), '*');
}
2018-07-26 23:16:50 -05:00
function insertText(text) {
2019-06-16 12:28:58 -05:00
post({'MessageId': 'CallPythonScript',
'SendTime': Date.now(),
'ScriptFile': 'InsertText.py',
'Function': 'InsertText',
'Values': { 'text': {'type': 'string', 'value': text}}
});
2018-07-26 23:16:50 -05:00
}
function capitalize() {
2019-06-16 12:28:58 -05:00
post({'MessageId': 'CallPythonScript',
'SendTime': Date.now(),
'ScriptFile': 'Capitalise.py',
'Function': 'capitalisePython',
'Values': null
});
2018-07-26 23:16:50 -05:00
}
2019-06-15 19:56:28 -05:00
function save() {
post({'MessageId': 'Action_Save',
'Values': { 'Notify': true, }
});
}
2019-06-15 19:58:49 -05:00
function closeDocument() {
post({'MessageId': 'Action_Close',
'Values': null
});
}
2019-06-15 19:56:28 -05:00
function hide_commands(id) {
post({'MessageId': 'Hide_Menu_Item',
'Values': { 'id': id, }
});
post({'MessageId': 'Hide_Button',
'Values': { 'id': id, }
});
}
function show_commands(id) {
post({'MessageId': 'Show_Menu_Item',
'Values': { 'id': id, }
});
post({'MessageId': 'Show_Button',
'Values': { 'id': id, }
});
}
2019-06-16 12:16:20 -05:00
function disable_default_uiaction(action, disable) {
post({'MessageId': 'Disable_Default_UIAction',
'Values': { 'action': action, 'disable': disable }
});
}
2018-07-26 23:16:50 -05:00
// This function is invoked when the iframe posts a message back.
function receiveMessage(event) {
2019-06-16 12:28:58 -05:00
console.log('==== framed.doc.html receiveMessage: ' + event.data);
2018-07-26 23:16:50 -05:00
var msg = JSON.parse(event.data);
2019-06-16 12:28:58 -05:00
if (msg & & msg.MessageId == 'App_LoadingStatus') {
if (msg.Values) {
if (msg.Values.Status == 'Document_Loaded') {
window.frames[0].postMessage(JSON.stringify({'MessageId': 'Host_PostmessageReady'}), '*');
}
}
}
2018-07-26 23:16:50 -05:00
}
// 'main' code of this < script > b l o c k , r u n w h e n p a g e i s b e i n g
// rendered. Install the message listener.
window.addEventListener("message", receiveMessage, false);
< / script >
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< / head >
< body style = "user-select: none;" >
< form id = "insert-text-form" >
Click < button onclick = "insertText(document.forms['insert-text-form'].elements['source'].value); return false;" > here< / button > to insert the following text into the document:
< textarea name = "source" value = "" rows = "10" cols = "80" > < / textarea >
< / form >
< form id = "insert-text-form" >
2019-06-15 19:56:28 -05:00
Click < button onclick = "capitalize(); return false;" > here< / button > to capitalize selected text in the document.< / br > < / br >
2019-06-15 19:58:49 -05:00
< button onclick = "save(); return false;" > Save< / button >
< button onclick = "closeDocument(); return false;" > Close< / button > < / br > < / br >
2019-06-15 19:56:28 -05:00
< button onclick = "hide_commands('save'); return false;" > Hide Save Commands< / button >
< button onclick = "show_commands('save'); return false;" > Show Save Commands< / button > < / br >
< button onclick = "hide_commands('print'); return false;" > Hide Print Commands< / button >
< button onclick = "show_commands('print'); return false;" > Show Print Commands< / button > < / br > < / br >
2019-06-16 12:16:20 -05:00
< button onclick = "disable_default_uiaction('UI_Save', true); return false;" > Disable default save action< / button > < / br >
< button onclick = "disable_default_uiaction('UI_Save', false); return false;" > Enable default save action< / button > < / br > < / br >
2018-07-26 23:16:50 -05:00
< / form >
<!-- The hostname and pathnames below are obviously specific to my
personal environment and need to be changed appropriately. Also
the hex string needs to be changed of course, to the right one as
shown by 'make run'. -->
< iframe src = "http://localhost:9980/loleaflet/ef3c798/loleaflet.html?file_path=file:///home/ash/prj/lo/online/test/data/empty.odt&NotWOPIButIframe=true" height = "1000" width = "1000" > < / iframe >
< / body >
< / html >