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


TypeScript command-factory.CommandFactory类代码示例

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


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

示例1: it

  it("RemoveSourcesCommand Test", () => {
    const conn1 = "conn1";
    const conn2 = "conn2";
    const path1 = "table=node1";
    const path2 = "table=node2";
    const node1 = SchemaNode.create( { connectionName: "conn1", path: path1 } );
    const node2 = SchemaNode.create( { connectionName: "conn2", path: path2 } );
    const temp = CommandFactory.createRemoveSourcesCommand( [ node1, node2 ], "ident" );
    expect( temp instanceof RemoveSourcesCommand ).toBe( true );

    const cmd = temp as RemoveSourcesCommand;
    expect( cmd.id ).toBe( RemoveSourcesCommand.id );
    expect( cmd.args ).not.toBeNull();
    expect( cmd.args.size ).toBe( 2 );

    const expectedSrcPaths = "connection=" + conn1 + "/" + path1 + ", connection=" + conn2 + "/" + path2;
    const expectedFull = expectedSrcPaths + ", ObjectId=ident";
    expect( cmd.getArg( RemoveSourcesCommand.removedSourcePaths ) ).toEqual( expectedSrcPaths );
    expect( cmd.toString() ).toEqual( "RemoveSourcesCommand, removedSourcePaths=" + expectedFull );
    expect( cmd.isUndoable() ).toBe( true );

    const json = cmd.toJSON();
    const tempRoundtrip = CommandFactory.decode( json );
    expect( tempRoundtrip instanceof RemoveSourcesCommand ).toBe( true );

    const roundtrip = tempRoundtrip as RemoveSourcesCommand;
    expect( roundtrip.id ).toBe( cmd.id );
    expect( roundtrip.args.size ).toBe( cmd.args.size );
    expect( roundtrip.getArg( RemoveSourcesCommand.removedSourcePaths ) ).toBe( cmd.getArg( RemoveSourcesCommand.removedSourcePaths ) );
  });
开发者ID:tejones,项目名称:beetle-studio,代码行数:30,代码来源:command-factory.spec.ts

示例2: 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

示例3: it

  it("should create", () => {
    console.log( "========== [Undoable] should create" );
    result = CommandFactory.decodeUndoable(
      {
        "undo": {
          "id": "UpdateViewNameCommand",
          "args": { "oldName": "v", "newName": "" }
        },
        "redo": {
          "id": "UpdateViewNameCommand",
          "args": { "oldName": "b", "newName": "v" }
        }
      }
    );

    if ( result instanceof Undoable ) {
      const undoable = result as Undoable;
      expect( undoable.undoCommand.id ).toEqual( UpdateViewNameCommand.id );
      expect( undoable.redoCommand.id ).toEqual( UpdateViewNameCommand.id );
    } else {
      fail("Unable to create Undoable");
    }
  });
开发者ID:tejones,项目名称:beetle-studio,代码行数:23,代码来源:undoable.spec.ts


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