1bf6e62f2S猫头猫import React from 'react'; 2caaa811bS猫头猫import components from './components'; 3443caf22S猫头猫import {dialogInfoStore} from './useDialog'; 4*e650bfb3S猫头猫import Portal from '../base/portal'; 5bf6e62f2S猫头猫 64060c00aS猫头猫export default function () { 7443caf22S猫头猫 const dialogInfoState = dialogInfoStore.useValue(); 8443caf22S猫头猫 9443caf22S猫头猫 const Component = dialogInfoState.name 10443caf22S猫头猫 ? components[dialogInfoState.name] 11443caf22S猫头猫 : null; 1294a1b1fcS猫头猫 13bf6e62f2S猫头猫 return ( 14bf6e62f2S猫头猫 <Portal> 15443caf22S猫头猫 {Component ? ( 16443caf22S猫头猫 <Component {...(dialogInfoState.payload ?? {})} /> 17443caf22S猫头猫 ) : null} 18bf6e62f2S猫头猫 </Portal> 19bf6e62f2S猫头猫 ); 20bf6e62f2S猫头猫} 21