ide-assi 0.612.0 → 0.614.0
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/bundle.cjs.js +8 -0
- package/dist/bundle.esm.js +8 -0
- package/dist/components/ideAi.js +8 -0
- package/package.json +1 -1
- package/src/components/ideAi.js +8 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -202286,6 +202286,7 @@ class IdeAi
|
|
|
202286
202286
|
javascriptTo: `${javascriptTo}.jsx`,
|
|
202287
202287
|
classFrom: classFrom,
|
|
202288
202288
|
classTo: classTo,
|
|
202289
|
+
index: index,
|
|
202289
202290
|
mybatisPullPath: `${this.#parent.settings.beProjectName}/src/main/resources/mapper/${cleaned.split(".").slice(0, -1).join("/")}/${fileName}Mapper.xml`,
|
|
202290
202291
|
controllerPullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/controller/${fileName}Controller.java`,
|
|
202291
202292
|
servicePullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/service/${fileName}Service.java`,
|
|
@@ -202632,6 +202633,9 @@ console.log(el, href, title);
|
|
|
202632
202633
|
let jsSrcFrom;
|
|
202633
202634
|
let jsSrcTo;
|
|
202634
202635
|
if (apply.javascript) {
|
|
202636
|
+
const pathArray = srcPath.javascriptTo.split("/");
|
|
202637
|
+
const javascriptFileTo = pathArray.pop();
|
|
202638
|
+
|
|
202635
202639
|
jsSrcFrom = await this.#generateTmplFile("/prompts/meta/detail/4.BuildReactJsx_Link.txt", "reactFrom.jsx", {
|
|
202636
202640
|
userPrompt: userPrompt,
|
|
202637
202641
|
mybatis: srcPath.mybatis,
|
|
@@ -202639,6 +202643,10 @@ console.log(el, href, title);
|
|
|
202639
202643
|
menuUrl: where.menu.url,
|
|
202640
202644
|
menuName: where.menu.name,
|
|
202641
202645
|
baseClass: srcPath.baseClass,
|
|
202646
|
+
classFrom: srcPath.classFrom,
|
|
202647
|
+
classTo: srcPath.classTo,
|
|
202648
|
+
index: srcPath.index,
|
|
202649
|
+
javascriptFileTo: javascriptFileTo,
|
|
202642
202650
|
mybatisXmlSource: mybatisXmlSource,
|
|
202643
202651
|
controllerSource: controllerSrc,
|
|
202644
202652
|
tableDefinitions: JSON.stringify(columnInfo),
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202282,6 +202282,7 @@ class IdeAi
|
|
|
202282
202282
|
javascriptTo: `${javascriptTo}.jsx`,
|
|
202283
202283
|
classFrom: classFrom,
|
|
202284
202284
|
classTo: classTo,
|
|
202285
|
+
index: index,
|
|
202285
202286
|
mybatisPullPath: `${this.#parent.settings.beProjectName}/src/main/resources/mapper/${cleaned.split(".").slice(0, -1).join("/")}/${fileName}Mapper.xml`,
|
|
202286
202287
|
controllerPullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/controller/${fileName}Controller.java`,
|
|
202287
202288
|
servicePullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/service/${fileName}Service.java`,
|
|
@@ -202628,6 +202629,9 @@ console.log(el, href, title);
|
|
|
202628
202629
|
let jsSrcFrom;
|
|
202629
202630
|
let jsSrcTo;
|
|
202630
202631
|
if (apply.javascript) {
|
|
202632
|
+
const pathArray = srcPath.javascriptTo.split("/");
|
|
202633
|
+
const javascriptFileTo = pathArray.pop();
|
|
202634
|
+
|
|
202631
202635
|
jsSrcFrom = await this.#generateTmplFile("/prompts/meta/detail/4.BuildReactJsx_Link.txt", "reactFrom.jsx", {
|
|
202632
202636
|
userPrompt: userPrompt,
|
|
202633
202637
|
mybatis: srcPath.mybatis,
|
|
@@ -202635,6 +202639,10 @@ console.log(el, href, title);
|
|
|
202635
202639
|
menuUrl: where.menu.url,
|
|
202636
202640
|
menuName: where.menu.name,
|
|
202637
202641
|
baseClass: srcPath.baseClass,
|
|
202642
|
+
classFrom: srcPath.classFrom,
|
|
202643
|
+
classTo: srcPath.classTo,
|
|
202644
|
+
index: srcPath.index,
|
|
202645
|
+
javascriptFileTo: javascriptFileTo,
|
|
202638
202646
|
mybatisXmlSource: mybatisXmlSource,
|
|
202639
202647
|
controllerSource: controllerSrc,
|
|
202640
202648
|
tableDefinitions: JSON.stringify(columnInfo),
|
package/dist/components/ideAi.js
CHANGED
|
@@ -416,6 +416,7 @@ export class IdeAi
|
|
|
416
416
|
javascriptTo: `${javascriptTo}.jsx`,
|
|
417
417
|
classFrom: classFrom,
|
|
418
418
|
classTo: classTo,
|
|
419
|
+
index: index,
|
|
419
420
|
mybatisPullPath: `${this.#parent.settings.beProjectName}/src/main/resources/mapper/${cleaned.split(".").slice(0, -1).join("/")}/${fileName}Mapper.xml`,
|
|
420
421
|
controllerPullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/controller/${fileName}Controller.java`,
|
|
421
422
|
servicePullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/service/${fileName}Service.java`,
|
|
@@ -762,6 +763,9 @@ console.log(el, href, title);
|
|
|
762
763
|
let jsSrcFrom;
|
|
763
764
|
let jsSrcTo;
|
|
764
765
|
if (apply.javascript) {
|
|
766
|
+
const pathArray = srcPath.javascriptTo.split("/");
|
|
767
|
+
const javascriptFileTo = pathArray.pop();
|
|
768
|
+
|
|
765
769
|
jsSrcFrom = await this.#generateTmplFile("/prompts/meta/detail/4.BuildReactJsx_Link.txt", "reactFrom.jsx", {
|
|
766
770
|
userPrompt: userPrompt,
|
|
767
771
|
mybatis: srcPath.mybatis,
|
|
@@ -769,6 +773,10 @@ console.log(el, href, title);
|
|
|
769
773
|
menuUrl: where.menu.url,
|
|
770
774
|
menuName: where.menu.name,
|
|
771
775
|
baseClass: srcPath.baseClass,
|
|
776
|
+
classFrom: srcPath.classFrom,
|
|
777
|
+
classTo: srcPath.classTo,
|
|
778
|
+
index: srcPath.index,
|
|
779
|
+
javascriptFileTo: javascriptFileTo,
|
|
772
780
|
mybatisXmlSource: mybatisXmlSource,
|
|
773
781
|
controllerSource: controllerSrc,
|
|
774
782
|
tableDefinitions: JSON.stringify(columnInfo),
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -416,6 +416,7 @@ export class IdeAi
|
|
|
416
416
|
javascriptTo: `${javascriptTo}.jsx`,
|
|
417
417
|
classFrom: classFrom,
|
|
418
418
|
classTo: classTo,
|
|
419
|
+
index: index,
|
|
419
420
|
mybatisPullPath: `${this.#parent.settings.beProjectName}/src/main/resources/mapper/${cleaned.split(".").slice(0, -1).join("/")}/${fileName}Mapper.xml`,
|
|
420
421
|
controllerPullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/controller/${fileName}Controller.java`,
|
|
421
422
|
servicePullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/service/${fileName}Service.java`,
|
|
@@ -762,6 +763,9 @@ console.log(el, href, title);
|
|
|
762
763
|
let jsSrcFrom;
|
|
763
764
|
let jsSrcTo;
|
|
764
765
|
if (apply.javascript) {
|
|
766
|
+
const pathArray = srcPath.javascriptTo.split("/");
|
|
767
|
+
const javascriptFileTo = pathArray.pop();
|
|
768
|
+
|
|
765
769
|
jsSrcFrom = await this.#generateTmplFile("/prompts/meta/detail/4.BuildReactJsx_Link.txt", "reactFrom.jsx", {
|
|
766
770
|
userPrompt: userPrompt,
|
|
767
771
|
mybatis: srcPath.mybatis,
|
|
@@ -769,6 +773,10 @@ console.log(el, href, title);
|
|
|
769
773
|
menuUrl: where.menu.url,
|
|
770
774
|
menuName: where.menu.name,
|
|
771
775
|
baseClass: srcPath.baseClass,
|
|
776
|
+
classFrom: srcPath.classFrom,
|
|
777
|
+
classTo: srcPath.classTo,
|
|
778
|
+
index: srcPath.index,
|
|
779
|
+
javascriptFileTo: javascriptFileTo,
|
|
772
780
|
mybatisXmlSource: mybatisXmlSource,
|
|
773
781
|
controllerSource: controllerSrc,
|
|
774
782
|
tableDefinitions: JSON.stringify(columnInfo),
|