• 可拖拽布局组件


    import React from 'react';
    import style from './index.module.scss';
    
    const icon = `<svg t="1587390375993" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="893" width="200" height="200"><path d="M912 512c0 7.7-2.8 14.5-8.5 20.1L789.3 646.5c-5.6 5.6-12.4 8.5-20.1 8.5-7.7 0-14.5-2.8-20.1-8.5-5.6-5.6-8.5-12.3-8.5-20.1v-57.2H283.5v57.2c0 7.7-2.8 14.5-8.5 20.1-5.6 5.6-12.4 8.5-20.1 8.5-7.7 0-14.5-2.8-20.1-8.5L120.5 532c-5.6-5.6-8.5-12.3-8.5-20.1 0-7.7 2.8-14.5 8.5-20.1l114.3-114.3c5.6-5.6 12.3-8.5 20.1-8.5 7.7 0 14.5 2.8 20.1 8.5 5.6 5.6 8.5 12.4 8.5 20.1v57.2h457.2v-57.2c0-7.7 2.8-14.5 8.5-20.1 5.6-5.6 12.3-8.5 20.1-8.5 7.7 0 14.5 2.8 20.1 8.5l114.4 114.3c5.4 5.7 8.2 12.5 8.2 20.2z" p-id="894"></path></svg>`;
    
    export default (props: {
    
        /**  初始左侧宽度 */
        initLeftConnWidth?: number;
    
        /** 左侧显示对象 */
        liftChild: React.ReactChild;
    
        /** 右侧显示对象 */
        rightChild: React.ReactChild;
    }) => {
    
        const [leftConnWidth, setLeftConnWidth] = React.useState(props.initLeftConnWidth || 200)
    
        const onMouseDownAdjust = (e: React.MouseEvent<HTMLDivElement, MouseEvent>) => {
    
            const oldScreenX = e.screenX;
            const oldWidth = leftConnWidth;
            const mask = document.createElement('div');
            mask.className = style.shelfMask;
            
            window.top.document.body.appendChild(mask);
    
            mask.addEventListener('mousemove', onmousemove);
            mask.addEventListener('mouseup', onmouseup);
    
            /** 移动鼠标 */
            function onmousemove(e1) {
                let newWidth = oldWidth + (e1.screenX - oldScreenX);
                if (newWidth < 0) {
                    newWidth = 0;
                }
                if (newWidth > 1000) {
                    newWidth = 1000;
                }
                setLeftConnWidth(newWidth);
            }
    
            function onmouseup() {
                mask.removeEventListener('mousemove', onmousemove);
                mask.removeEventListener('mouseup', onmouseup);
                window.top.document.body.removeChild(mask);
            }
        }
    
        return (
            <div className={style.shelf} >
                <div className={style.leftConn} style={{  leftConnWidth }} >
                    {props.liftChild}
                </div>
                <i className={style.adjust} dangerouslySetInnerHTML={{ __html: icon }} onMouseDown={onMouseDownAdjust} ></i>
                <div className={style.rightConn} >
                    {props.rightChild}
                </div>
            </div>
        )
    }
    

      

  • 相关阅读:
    ASP.NET中彩票项目中的计算复式投注的注数的方法
    移除http响应中的多余的头(X-AspNet-Version,Server等)
    获取枚举类型的描述description
    支付宝支付后回调通知中responseTxt=true isSign=False可能的问题
    《JAVA与模式》之门面模式
    《JAVA与模式》之组合模式
    《JAVA与模式》之参考资料
    《JAVA与模式》之有感
    从桥接模式与策略模式谈起(转载)
    《JAVA与模式》之桥接模式
  • 原文地址:https://www.cnblogs.com/zhaoyzml/p/14312343.html
Copyright © 2020-2023  润新知