mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 07:27:09 +08:00
chore(runtime): 更新runtime-help
This commit is contained in:
parent
6f5bb84c04
commit
8d0040da53
@ -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",
|
||||
|
@ -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;
|
||||
|
@ -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]));
|
||||
|
@ -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"],
|
||||
},
|
||||
},
|
||||
}
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user