Added XSLTTemplate, functions that add it to transform area and documentation for that function (#144)

Co-authored-by: widlam <mikolaj.widla@gmail.com>
Reviewed-on: #144
Reviewed-by: Adam Bem <bema@noreply.example.com>
Co-authored-by: Mikolaj Widla <widlam@noreply.example.com>
Co-committed-by: Mikolaj Widla <widlam@noreply.example.com>
This commit is contained in:
2023-04-19 13:35:40 +02:00
committed by Adam Bem
parent 2b8a9c3008
commit 093c8756b1
3 changed files with 45 additions and 6 deletions

View File

@@ -84,6 +84,24 @@ function fillDefaultXML(element) {
}
}
/**
* The `fillDefaultXSLT()` function fetches a default XSLT template from the server and sets the value of the element with id "transformArea" to the fetched template.
*
* @function
* @name fillDefaultXSLT
* @kind function
* @returns {void}
*/
function fillDefaultXSLT() {
const serverAddress = window.location.protocol + "//" + window.location.hostname + ":8086";
fetch(serverAddress + "/assets/samples/XSLTTemplate.xslt")
.then( response => response.text() )
.then( (XSTLTemplate) => {
document.getElementById('transformArea').value = XSTLTemplate;
} )
}
/**
* It sets default content for the element an changes it's color to grey
*