Merge pull request #110 from stisa/run-nim-code

Allow to run nim code in posts (via playground)
This commit is contained in:
Dominik Picheta 2017-10-23 19:28:44 +01:00 committed by GitHub
commit bca6096b65
2 changed files with 71 additions and 1 deletions

View file

@ -175,6 +175,48 @@
</div>
</div>
# end for
<script>
// tiny helper that run the code in the playground
var els = Array.prototype.slice.call(document.getElementsByClassName("listing"))
els.forEach(function(element) {
var runDiv = document.createElement("DIV")
runDiv.setAttribute("class", "runDiv")
var btn = document.createElement("BUTTON")
var t = document.createTextNode("Run")
var code = element.innerText
btn.appendChild(t)
btn.onclick = function(){
var httpRequest = new XMLHttpRequest();
httpRequest.open("POST", "https://play.nim-lang.org/compile", true)
function displayContents(e){
if (httpRequest.readyState!=httpRequest.DONE){return}
if (httpRequest.status == 200){
var res = JSON.parse(httpRequest.responseText)
// this works because only 1 `element` is inside `element`
var resDiv = element.getElementsByClassName("resDiv")[0]
if (resDiv == null) {
resDiv = document.createElement("DIV")
runDiv.appendChild(resDiv)
}
if (res.log != "Compilation Failed\u000A"){
resDiv.textContent = res.log
resDiv.setAttribute("class", "resDiv successComp")
} else {
resDiv.textContent = res.compileLog
resDiv.setAttribute("class","resDiv failedComp")
}
} else {
console.log("There was a problem with the request.")
}
}
httpRequest.onreadystatechange = displayContents
httpRequest.send(JSON.stringify({"code": code, "compilationTarget": "c"}))
}
runDiv.appendChild(document.createElement("HR"))
runDiv.appendChild(btn)
element.appendChild(runDiv)
}, this);
</script>
</div>
#end proc
#

View file

@ -441,7 +441,7 @@ div#sidebar .content
}
div#sidebar .content .button
div#sidebar .content .button, .runDiv>button
{
background-color: rgba(0,0,0,0.2);
text-decoration: none;
@ -711,3 +711,31 @@ blockquote p {
color: rgb(109, 109, 109) !important;
}
.runDiv > hr {
border: 1px solid #80828d;
}
.runDiv > button {
cursor: pointer;
border: none; /* remove border from runDiv>button */
border-bottom: 2px solid rgba(0,0,0,0.24);
background-color: #80828d;
}
.runDiv>button:hover {
border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}
.runDiv > .resDiv {
width: 80%;
padding: 0.2em 1em 0.2em 1em;
display: inline-block;
}
.successComp {
color: lightgreen;
}
.failedComp {
color: lightcoral;
}