当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript CommandFactory.createUpdateViewNameCommand方法代码示例

本文整理汇总了TypeScript中@dataservices/virtualization/view-editor/command/command-factory.CommandFactory.createUpdateViewNameCommand方法的典型用法代码示例。如果您正苦于以下问题:TypeScript CommandFactory.createUpdateViewNameCommand方法的具体用法?TypeScript CommandFactory.createUpdateViewNameCommand怎么用?TypeScript CommandFactory.createUpdateViewNameCommand使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在@dataservices/virtualization/view-editor/command/command-factory.CommandFactory的用法示例。


在下文中一共展示了CommandFactory.createUpdateViewNameCommand方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: it

  it( "shouldConvertToJsonCorrectly" , () => {
    const undoMgr = new UndoManager();

    // add update name command
    let cmd = CommandFactory.createUpdateViewNameCommand( "newName", "oldName");
    let undoable = CommandFactory.createUndoable( cmd as Command ) ;
    undoMgr.add( undoable as Undoable );

    // add update description command
    cmd = CommandFactory.createUpdateViewDescriptionCommand( "newDescription", "oldDescription");
    undoable = CommandFactory.createUndoable( cmd as Command ) ;
    undoMgr.add( undoable as Undoable );

    // should include both undoables
    expect( undoMgr.toJSON() ).not.toBe( null );
    expect( undoMgr.toJSON()[ UndoManager.undoables ] ).not.toBe( null );
    expect( undoMgr.toJSON()[ UndoManager.undoables ] instanceof Array ).toBe( true );

    const undoables = undoMgr.toJSON()[ UndoManager.undoables ] as Array< any >;
    expect( undoables.length ).toBe( 2 );

    // move the pointer to the left
    undoMgr.popUndoCommand();
    expect( undoMgr.toArray().length).toBe( 1 );
    expect( undoMgr.toArray().length).toBe( 1 );
  } );
开发者ID:tejones,项目名称:beetle-studio,代码行数:26,代码来源:undo-manager.spec.ts

示例2: it

  it("UpdateViewNameCommand Undo Test", () => {
    const tempCmd = CommandFactory.createUpdateViewNameCommand( "theNewName",
                                                                "theOldName" );
    expect( tempCmd instanceof UpdateViewNameCommand ).toBe( true );

    const cmd = tempCmd as UpdateViewNameCommand;
    const tempUndoCmd = CommandFactory.createUndoCommand( cmd );
    expect( tempUndoCmd instanceof UpdateViewNameCommand ).toBe( true );

    const undoCmd = tempUndoCmd as UpdateViewNameCommand;
    expect( undoCmd ).not.toBeNull();
    expect( undoCmd.id ).toBe( UpdateViewNameCommand.id );
    expect( undoCmd.args.size ).toBe( 2 );
    expect( undoCmd.getArg( UpdateViewNameCommand.newName ) ).toBe( cmd.getArg( UpdateViewNameCommand.oldName ) );
    expect( undoCmd.getArg( UpdateViewNameCommand.oldName ) ).toBe( cmd.getArg( UpdateViewNameCommand.newName ) );
  });
开发者ID:tejones,项目名称:beetle-studio,代码行数:16,代码来源:command-factory.spec.ts


注:本文中的@dataservices/virtualization/view-editor/command/command-factory.CommandFactory.createUpdateViewNameCommand方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。