미디어위키:Gadget-Excalidraw.js: 두 판 사이의 차이
둘러보기로 이동
검색으로 이동
(Excalidraw 임베드 테스트) |
잔글편집 요약 없음 |
||
49번째 줄: | 49번째 줄: | ||
const root = ReactDOM.createRoot(excalidrawWrapper); | const root = ReactDOM.createRoot(excalidrawWrapper); | ||
root.render(React.createElement(App)); | root.render(React.createElement(App)); | ||
}).catch(function (e){ | |||
console.log("Excalidraw 스크립트 로딩 실패, 저장소에 연결할 수 없습니다."); | |||
}); | }); | ||
}).catch(function (e){ | |||
console.log("React DOM 라이브러리 로딩 실패, 저장소에 연결할 수 없습니다."); | |||
}); | }); | ||
}).catch(function (e){ | |||
console.log("React 라이브러리 로딩 실패, 저장소에 연결할 수 없습니다."); | |||
}); | }); | ||
} | } | ||
$(LoadExcalidraw)(); | $(LoadExcalidraw)(); |
2024년 8월 10일 (토) 15:07 판
// Excalidraw 임베딩 위젯
// 제작자 [[사용자:Senouis]]
// TODO: ScriptLoader 위젯에 아래 기능을 일임하고 이 위젯이 의존하도록 하기
function asyncJSLoader(url, type) { // UE4, Godot 등의 다른 스크립트 로딩 위젯들과 공유함
return new Promise(function (resolve, reject) {
try {
var scriptElement = document.createElement("script");
scriptElement.src = url;
scriptElement.async = true; // force asynchronous loading
scriptElement.type = type;
var contextsection = document.getElementById("mw-content-text");
scriptElement.addEventListener("load", function (ev) {
resolve({ status: true });
});
scriptElement.addEventListener("error", function (ev) {
reject({
status: false,
message: "Failed to load the script"
});
});
contextsection.appendChild(scriptElement);
} catch (e) {
reject(e);
}
});
}
function LoadExcalidraw(){
if (!document.getElementById("excalidraw-container")) return;
asyncJSLoader("https://unpkg.com/react@18.2.0/umd/react.development.js", "text/javascript").then(function (result) {
asyncJSLoader("https://unpkg.com/react-dom@18.2.0/umd/react-dom.development.js", "text/javascript").then( function(result) {
asyncJSLoader("https://unpkg.com/@excalidraw/excalidraw/dist/excalidraw.development.js", "text/javascript").then(function(result) {
const App = function () {
return React.createElement(
React.Fragment,
null,
React.createElement(
"div",
{
style: { height: "500px" },
},
React.createElement(ExcalidrawLib.Excalidraw)
)
);
};
const excalidrawWrapper = document.getElementById("app");
const root = ReactDOM.createRoot(excalidrawWrapper);
root.render(React.createElement(App));
}).catch(function (e){
console.log("Excalidraw 스크립트 로딩 실패, 저장소에 연결할 수 없습니다.");
});
}).catch(function (e){
console.log("React DOM 라이브러리 로딩 실패, 저장소에 연결할 수 없습니다.");
});
}).catch(function (e){
console.log("React 라이브러리 로딩 실패, 저장소에 연결할 수 없습니다.");
});
}
$(LoadExcalidraw)();