본문으로 이동

미디어위키:Gadget-JSONEditor.js

리버티게임(개발), 모두가 만들어가는 자유로운 게임
Senouis (토론 | 기여)님의 2024년 12월 21일 (토) 00:10 판

참고: 설정을 저장한 후에 바뀐 점을 확인하기 위해서는 브라우저의 캐시를 새로 고쳐야 합니다.

  • 파이어폭스 / 사파리: Shift 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5 또는 Ctrl-R을 입력 (Mac에서는 ⌘-R)
  • 구글 크롬: Ctrl-Shift-R키를 입력 (Mac에서는 ⌘-Shift-R)
  • 엣지: Ctrl 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5를 입력.
function LoadJSONEditor() {
  if (document.getElementsByClassName("jsoneditor-container").length === 0) return;
  	mw.loader.getScript("https://cdn.jsdelivr.net/npm/@json-editor/json-editor@latest/dist/jsoneditor.min.js").then(function() {
  	  mw.loader.getScript("https://dev.libertygame.work/index.php/%EB%A6%AC%EB%B2%84%ED%8B%B0%EA%B2%8C%EC%9E%84:%EA%B2%8C%EC%9E%84_%EB%A9%94%ED%83%80%EB%8D%B0%EC%9D%B4%ED%84%B0/%EC%8A%A4%ED%82%A4%EB%A7%88.json?action=raw")
  	  .then(function (result) {return result.json()})
	  	.then(function (result) {
	  	  console.log(result);
		  var jsonEditorContainer = document.querySelector('.json-editor-container');
		  var value = document.querySelector('#value');
		
		  var schema = result;
		
		  var editor = new JSONEditor(jsonEditorContainer, {
		    schema: schema,
		    theme: 'bootstrap4',
		    show_errors: 'always',
		    iconlib: 'fontawesome5',
		    keep_oneof_values: false
		  });
		
		  editor.on('change', function () {
		    value.value = JSON.stringify(editor.getValue());
		  });
		
		  document.querySelector('.set-value').addEventListener('click', function () {
		    editor.setValue({ test: 0 });
		  });
	  }).catch(function (e) {
	  	console.log("JSON 에디터 로딩 중 장애 발생" + e.message);
	  });
  });
}

$(LoadJSONEditor);