42 lines
1.8 KiB
JavaScript
42 lines
1.8 KiB
JavaScript
/**
|
|
* This is a FAKE bajaux.Widget.js file.
|
|
* It mimics the define signature but returns a simple mock object.
|
|
*/
|
|
// 這裡列出真實文件中的依賴,但 provide function 仍然返回一個簡單物件
|
|
define([
|
|
'lex', // 注意:這裡可能需要 lex 的 plugin ! 如果錯誤棧有 lex!,可能需要一個假的 lex plugin
|
|
'jquery',
|
|
'Promise',
|
|
'bajaux/events',
|
|
'bajaux/Properties',
|
|
'bajaux/commands/CommandGroup',
|
|
'bajaux/commands/Command',
|
|
'bajaux/Validators',
|
|
'tinyevents', // 根據真實代碼的依賴
|
|
'log!bajaux.Widget' // 這個依賴由我們改進的假 log plugin 處理
|
|
], function(lex, $, Promise, events, Properties, CommandGroup, Command, Validators, tinyevents, log) { // 這裡的參數需要與 define 依賴對應
|
|
// console.warn("--- Successfully loaded FAKE bajaux/Widget module ---");
|
|
|
|
// 驗證 log 是否是我們提供的假 logger
|
|
if (log && typeof log.warning === 'function') {
|
|
// console.log("--- FAKE bajaux/Widget received a valid-looking 'log' dependency ---");
|
|
// 這裡可以執行一下真實代碼中導致錯誤的那一行,看看是否還出錯
|
|
try {
|
|
var logWarning = log.warning.bind(log);
|
|
// console.log("--- FAKE bajaux/Widget successfully called log.warning.bind ---");
|
|
} catch (e) {
|
|
// console.error("--- FAKE bajaux/Widget failed to call log.warning.bind:", e, "---");
|
|
}
|
|
} else {
|
|
// console.error("--- FAKE bajaux/Widget received an invalid 'log' dependency:", log, "---");
|
|
}
|
|
|
|
|
|
// 返回一個最小的假物件,表示模組載入成功
|
|
// 你可以根據後續錯誤再添加假方法
|
|
return {
|
|
getDisplayName: function() { return "Fake Widget Instance"; },
|
|
getSlotPath: function() { return "fake/slot/path/instance"; }
|
|
// etc.
|
|
};
|
|
}); |