미디어위키:Gadget-JSONEditor.js: 두 판 사이의 차이
보이기
잔글편집 요약 없음 태그: 되돌려진 기여 |
잔글 Senouis의 32449판 편집을 되돌림 태그: 편집 취소 |
||
4번째 줄: | 4번째 줄: | ||
var targetJSON = "https://dev.libertygame.work/index.php/RPG_in_City/game.json?action=raw"; | var targetJSON = "https://dev.libertygame.work/index.php/RPG_in_City/game.json?action=raw"; | ||
mw.loader.getScript("https://cdn.jsdelivr.net/npm/@json-editor/json-editor@latest/dist/jsoneditor.min.js").then(function() { | mw.loader.getScript("https://cdn.jsdelivr.net/npm/@json-editor/json-editor@latest/dist/jsoneditor.min.js").then(function() { | ||
fetch(targetJSON).then(function(result){return result.json(); }).then(function (response) { | |||
console.log(result); | |||
const jsonEditorContainer = document.querySelector('.json-editor-container'); | |||
const value = document.querySelector('#value'); | |||
var schema = result; | |||
const editor = new JSONEditor(jsonEditorContainer, { | |||
theme: 'bootstrap4', | |||
show_errors: 'always', | |||
iconlib: 'fontawesome5', | |||
keep_oneof_values: true | |||
}, response); | |||
editor.on('change', function () { | |||
value.value = JSON.stringify(editor.getValue(), null, 2); | |||
}); | |||
}).catch(function (e) { console.log('JSON 에디터 로딩 후 JSON 타겟 가져오기 실패');}); | |||
}); | }); | ||
} | } | ||
$(LoadJSONEditor); | $(LoadJSONEditor); |
2024년 12월 22일 (일) 15:57 판
function LoadJSONEditor() {
if (document.getElementsByClassName("jsoneditor-container").length === 0) return;
var targetJSON = "https://dev.libertygame.work/index.php/RPG_in_City/game.json?action=raw";
mw.loader.getScript("https://cdn.jsdelivr.net/npm/@json-editor/json-editor@latest/dist/jsoneditor.min.js").then(function() {
fetch(targetJSON).then(function(result){return result.json(); }).then(function (response) {
console.log(result);
const jsonEditorContainer = document.querySelector('.json-editor-container');
const value = document.querySelector('#value');
var schema = result;
const editor = new JSONEditor(jsonEditorContainer, {
theme: 'bootstrap4',
show_errors: 'always',
iconlib: 'fontawesome5',
keep_oneof_values: true
}, response);
editor.on('change', function () {
value.value = JSON.stringify(editor.getValue(), null, 2);
});
}).catch(function (e) { console.log('JSON 에디터 로딩 후 JSON 타겟 가져오기 실패');});
});
}
$(LoadJSONEditor);