@nine-lab/nine-mu 0.1.289 → 0.1.290
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/nine-mu.js +34 -34
- package/dist/nine-mu.js.map +1 -1
- package/dist/nine-mu.umd.js +1 -1
- package/dist/nine-mu.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/NineDiffPopup.js +40 -39
package/dist/nine-mu.js
CHANGED
|
@@ -17563,7 +17563,7 @@ render_fn = function() {
|
|
|
17563
17563
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
17564
17564
|
this.shadowRoot.innerHTML = `
|
|
17565
17565
|
<style>
|
|
17566
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
17566
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.289"}/dist/css/nine-mu.css";
|
|
17567
17567
|
${customImport}
|
|
17568
17568
|
</style>
|
|
17569
17569
|
<div class="wrapper">
|
|
@@ -43780,7 +43780,7 @@ class NineDiff extends HTMLElement {
|
|
|
43780
43780
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
43781
43781
|
this.shadowRoot.innerHTML = `
|
|
43782
43782
|
<style>
|
|
43783
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
43783
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.289"}/dist/css/nine-mu.css";
|
|
43784
43784
|
${customImport}
|
|
43785
43785
|
</style>
|
|
43786
43786
|
|
|
@@ -43834,7 +43834,7 @@ class NineDiffPopup extends HTMLElement {
|
|
|
43834
43834
|
__privateAdd(this, _dialog, null);
|
|
43835
43835
|
__privateAdd(this, _tabContainer, null);
|
|
43836
43836
|
__privateAdd(this, _fileList, []);
|
|
43837
|
-
// 최종
|
|
43837
|
+
// 최종 일괄 저장을 위한 데이터 버퍼
|
|
43838
43838
|
__privateAdd(this, _host);
|
|
43839
43839
|
this.attachShadow({ mode: "open" });
|
|
43840
43840
|
}
|
|
@@ -43847,14 +43847,12 @@ class NineDiffPopup extends HTMLElement {
|
|
|
43847
43847
|
return this;
|
|
43848
43848
|
}
|
|
43849
43849
|
/**
|
|
43850
|
-
* 💡 [
|
|
43850
|
+
* 💡 [기존 정적 매핑 방식]
|
|
43851
|
+
* 동적 생성 없이, 이미 조립되어 들어간 nine-tab 내부의 에디터를 정밀 타격하여 데이터만 꽂습니다.
|
|
43851
43852
|
*/
|
|
43852
43853
|
async data(fileList) {
|
|
43853
43854
|
if (!Array.isArray(fileList) || fileList.length === 0) return this;
|
|
43854
43855
|
__privateSet(this, _fileList, fileList);
|
|
43855
|
-
if (__privateGet(this, _tabContainer) && typeof __privateGet(this, _tabContainer).clearTabs === "function") {
|
|
43856
|
-
__privateGet(this, _tabContainer).clearTabs();
|
|
43857
|
-
}
|
|
43858
43856
|
const detectLanguage = (path) => {
|
|
43859
43857
|
const lower = (path || "").toLowerCase();
|
|
43860
43858
|
if (lower.endsWith(".xml")) return "xml";
|
|
@@ -43862,31 +43860,28 @@ class NineDiffPopup extends HTMLElement {
|
|
|
43862
43860
|
if (lower.endsWith(".json")) return "json";
|
|
43863
43861
|
return "javascript";
|
|
43864
43862
|
};
|
|
43865
|
-
fileList.forEach((file) => {
|
|
43866
|
-
const { layer: layer2, full_path } = file;
|
|
43867
|
-
const fileName = full_path.split("/").pop() || "Unknown";
|
|
43868
|
-
const captionName = `${layer2.toUpperCase()} (${fileName})`;
|
|
43869
|
-
const targetHtmlContent = `
|
|
43870
|
-
<div class="diff-wrapper">
|
|
43871
|
-
<nine-diff class="${layer2}"></nine-diff>
|
|
43872
|
-
</div>
|
|
43873
|
-
`;
|
|
43874
|
-
if (__privateGet(this, _tabContainer) && typeof __privateGet(this, _tabContainer).addTabPage === "function") {
|
|
43875
|
-
__privateGet(this, _tabContainer).addTabPage(captionName, targetHtmlContent);
|
|
43876
|
-
}
|
|
43877
|
-
});
|
|
43878
43863
|
setTimeout(() => {
|
|
43879
43864
|
fileList.forEach((file) => {
|
|
43880
43865
|
const { layer: layer2, full_path, asis_source, source } = file;
|
|
43881
43866
|
const diff = __privateGet(this, _tabContainer).shadowRoot.querySelector(`nine-diff.${layer2}`);
|
|
43882
43867
|
if (diff) {
|
|
43883
43868
|
const lang = detectLanguage(full_path);
|
|
43869
|
+
const fileName = full_path.split("/").pop() || "Unknown";
|
|
43870
|
+
const tabButtons = __privateGet(this, _tabContainer).shadowRoot.querySelectorAll(".tab-button");
|
|
43871
|
+
tabButtons.forEach((btn) => {
|
|
43872
|
+
if (btn.textContent.trim() === layer2.toUpperCase()) {
|
|
43873
|
+
btn.textContent = `${layer2.toUpperCase()} (${fileName})`;
|
|
43874
|
+
}
|
|
43875
|
+
});
|
|
43884
43876
|
diff.initialize(asis_source || "", source || "", lang);
|
|
43885
43877
|
} else {
|
|
43886
|
-
trace.error(`❌ 에디터
|
|
43878
|
+
trace.error(`❌ 에디터 인스턴스를 찾을 수 없습니다: nine-diff.${layer2}`);
|
|
43887
43879
|
}
|
|
43888
43880
|
});
|
|
43889
|
-
|
|
43881
|
+
if (__privateGet(this, _tabContainer) && typeof __privateGet(this, _tabContainer).initialize === "function") {
|
|
43882
|
+
__privateGet(this, _tabContainer).initialize();
|
|
43883
|
+
}
|
|
43884
|
+
}, 100);
|
|
43890
43885
|
return this;
|
|
43891
43886
|
}
|
|
43892
43887
|
}
|
|
@@ -43896,11 +43891,12 @@ _fileList = new WeakMap();
|
|
|
43896
43891
|
_host = new WeakMap();
|
|
43897
43892
|
_NineDiffPopup_instances = new WeakSet();
|
|
43898
43893
|
/**
|
|
43899
|
-
* 💡
|
|
43894
|
+
* 💡 [기존 방식 복구] 스타일 전량 제거하고,
|
|
43895
|
+
* 기존 소스처럼 nine-tab 내부에 nine-tab-page 2개를 정적으로 미리 박아 놓습니다.
|
|
43900
43896
|
*/
|
|
43901
43897
|
renderScaffolding_fn = function() {
|
|
43902
43898
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
43903
|
-
const appVersion = "0.1.
|
|
43899
|
+
const appVersion = "0.1.289";
|
|
43904
43900
|
this.shadowRoot.innerHTML = `
|
|
43905
43901
|
<style>
|
|
43906
43902
|
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${appVersion}/dist/css/nine-mu.css";
|
|
@@ -43908,14 +43904,18 @@ renderScaffolding_fn = function() {
|
|
|
43908
43904
|
</style>
|
|
43909
43905
|
|
|
43910
43906
|
<nine-dialog>
|
|
43911
|
-
<
|
|
43912
|
-
<
|
|
43913
|
-
<nine-
|
|
43914
|
-
</
|
|
43915
|
-
<
|
|
43916
|
-
<
|
|
43917
|
-
|
|
43918
|
-
|
|
43907
|
+
<nine-tab theme="theme-3">
|
|
43908
|
+
<nine-tab-page caption="MYBATIS">
|
|
43909
|
+
<nine-diff class="MyBatis"></nine-diff>
|
|
43910
|
+
</nine-tab-page>
|
|
43911
|
+
<nine-tab-page caption="JAVASCRIPT">
|
|
43912
|
+
<nine-diff class="JavaScript"></nine-diff>
|
|
43913
|
+
</nine-tab-page>
|
|
43914
|
+
</nine-tab>
|
|
43915
|
+
|
|
43916
|
+
<div class="footer">
|
|
43917
|
+
<button class="btn btn-cancel">취소</button>
|
|
43918
|
+
<button class="btn btn-confirm">모두 저장</button>
|
|
43919
43919
|
</div>
|
|
43920
43920
|
</nine-dialog>
|
|
43921
43921
|
`;
|
|
@@ -44242,7 +44242,7 @@ class ChatMessageBody extends HTMLElement {
|
|
|
44242
44242
|
const customImport = this.getAttribute("css-path") ? `@import "${this.getAttribute("css-path")}";` : "";
|
|
44243
44243
|
this.shadowRoot.innerHTML = `
|
|
44244
44244
|
<style>
|
|
44245
|
-
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.
|
|
44245
|
+
@import "https://cdn.jsdelivr.net/npm/@nine-lab/nine-mu@${"0.1.289"}/dist/css/nine-mu.css";
|
|
44246
44246
|
${customImport}
|
|
44247
44247
|
</style>
|
|
44248
44248
|
|
|
@@ -44336,7 +44336,7 @@ if (!customElements.get("nine-chat-progress")) {
|
|
|
44336
44336
|
customElements.define("nine-chat-progress", ProgressMessage);
|
|
44337
44337
|
}
|
|
44338
44338
|
const NineMu = {
|
|
44339
|
-
version: "0.1.
|
|
44339
|
+
version: "0.1.289",
|
|
44340
44340
|
init: (config2) => {
|
|
44341
44341
|
trace$1.log("🛠️ Nine-Mu Engine initialized", config2);
|
|
44342
44342
|
}
|