Add loop protection on keyup update

This commit is contained in:
Berkeley Martinez
2015-12-02 14:56:06 -08:00
parent a6a32d94cd
commit 096fba0de7
3 changed files with 35 additions and 10 deletions

View File

@@ -1,7 +1,12 @@
$(document).ready(function() {
const common = window.common;
const { Observable } = window.Rx;
const { challengeName, challengeType, challengeTypes } = common;
const {
addLoopProtect,
challengeName,
challengeType,
challengeTypes
} = common;
common.init.forEach(function(init) {
init($);
@@ -29,7 +34,13 @@ $(document).ready(function() {
.filter(() => common.challengeType === challengeTypes.HTML)
.flatMap(code => {
return common.detectUnsafeCode$(code)
.map(() => {
const combinedCode = common.head + code + common.tail;
return addLoopProtect(combinedCode);
})
.flatMap(code => common.updatePreview$(code))
.flatMap(() => common.checkPreview$({ code }))
.catch(err => Observable.just({ err }));
})
.subscribe(