chore(runtime): 更新runtime-help

This commit is contained in:
roymondchen 2025-03-06 20:22:52 +08:00
parent 6f5bb84c04
commit 8d0040da53
6 changed files with 15 additions and 10 deletions

View File

@ -20,7 +20,7 @@
},
"dependencies": {
"@tmagic/core": "1.5.9",
"@tmagic/react-runtime-help": "0.0.4",
"@tmagic/react-runtime-help": "0.1.0",
"@tmagic/stage": "1.5.9",
"axios": "^0.25.0",
"terser": "^5.31.6",

View File

@ -16,7 +16,7 @@
* limitations under the License.
*/
import React, { useContext } from 'react';
import React, { useContext, useEffect } from 'react';
import type Core from '@tmagic/core';
import type { MPage } from '@tmagic/core';
@ -31,7 +31,12 @@ function App() {
const MagicUiPage = app.resolveComponent('page');
return <MagicUiPage config={app?.page?.data as MPage}></MagicUiPage>;
useEffect(() => {
const page = document.querySelector(`div[data-tmagic-id=${app.page?.data.id}]`);
page && window.magic?.onPageElUpdate(page as HTMLElement);
});
return <MagicUiPage config={app.page.data as MPage}></MagicUiPage>;
}
export default App;

View File

@ -63,11 +63,6 @@ const renderDom = () => {
</AppContent.Provider>
</React.StrictMode>,
);
setTimeout(() => {
// @ts-ignore
window.magic.onPageElUpdate(document.querySelector('.magic-ui-page'));
});
};
Object.keys(components).forEach((type: string) => app.registerComponent(type, components[type]));

View File

@ -5,5 +5,10 @@
"jsx": "react",
"forceConsistentCasingInFileNames": true,
"types": ["node"],
"paths": {
// src/index.ts, .
"@tmagic/*": ["../../packages/*/src"],
"@tmagic/react-runtime-help": ["../react-runtime-help/src"],
},
},
}

View File

@ -21,7 +21,7 @@
"dependencies": {
"@tmagic/core": "1.5.9",
"@tmagic/stage": "1.5.9",
"@tmagic/vue-runtime-help": "^1.0.0",
"@tmagic/vue-runtime-help": "^1.1.0",
"axios": "^0.25.0",
"terser": "^5.31.6",
"vue": "^2.7.16"

View File

@ -21,7 +21,7 @@
"dependencies": {
"@tmagic/core": "1.5.9",
"@tmagic/stage": "1.5.9",
"@tmagic/vue-runtime-help": "^1.0.0",
"@tmagic/vue-runtime-help": "^1.1.0",
"axios": "^0.25.0",
"vue": "^3.5.0"
},