• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript utils.json函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: loadFileAccess

  loadFileAccess(trial1: string, trial2: string) {
    let sub = this.node.getElementsByClassName("file-accesses")[0];

    json("File Accesses", sub, DiffInfoWidget.accesses_url(trial1, trial2), (data: DiffAccessData) => {
      let accesses = this.d3node.select(".file-accesses").html("");
      if ((data.fa_added.length > 0) ||
          (data.fa_removed.length > 0) ||
          (data.fa_replaced.length > 0)) {
        let fold = TrialInfoWidget.createFold(accesses, "File Accesses");
        let foldable = accesses.append("div").classed("foldable show-toolbar", true);
        let filter = FileAccessesInfoWidget.createFilter(foldable);
        let ul = foldable.append("ul")
          .classed("fac-list", true)
        this.filter_trial(filter, (strial: number) => {
          ul.html("");

          if ((strial & 1) == 1) {
            for (var element of data.fa_removed) {
              if (!filter.valid(data.t1_path, element)) {
                continue;
              }
              this.fa_li(ul, 'libefore', element);
            }
          }
          if ((strial & 2) == 2) {
            for (var element of data.fa_added) {
              if (!filter.valid(data.t2_path, element)) {
                continue;
              }
              this.fa_li(ul, 'liafter', element);
            }
          }
          if (strial >= 3) {
            for (var elements of data.fa_replaced) {
              let rem = elements[0],
                  add = elements[1];
              if (!filter.valid(data.t1_path, rem) ||
                  !filter.valid(data.t2_path, add)) {
                continue;
              }
              let li = ul.append("li")

              this.fa_cfield(li, 'name', 'Name', rem.name, add.name);
              this.fa_cfield(li, 'mode', 'Mode', rem.mode, add.mode);
              this.fa_cfield(li, 'buffering', 'Buffering', rem.buffering, add.buffering);
              li.append("div")
                .classed("clear", true)
              this.fa_cfield(li, 'timestamp', 'Time', rem.timestamp, add.timestamp);
              this.fa_cfield(li, 'content_hash_before hash', 'Content hash before', rem.content_hash_before, add.content_hash_before);
              this.fa_cfield(li, 'content_hash_after hash', 'Content hash after', rem.content_hash_after, add.content_hash_after);
              this.fa_cfield(li, 'stack', 'Stack', rem.stack, add.stack);
            }
          }
        });
        TrialInfoWidget.createFilterFold(fold, filter);
      }
    });
  }
开发者ID:gems-uff,项目名称:noworkflow,代码行数:58,代码来源:diff_info.ts


示例2: load

 load(trial1: string, trial2: string) {
   let sub = this.node.getElementsByClassName("trial-info")[0];
   json("Info", sub, DiffInfoWidget.url(trial1, trial2), (data: DiffInfoData) => {
     this.createMain(data);
     this.loadModules(trial1, trial2);
     this.loadEnvironment(trial1, trial2);
     this.loadFileAccess(trial1, trial2);
   })
 }
开发者ID:gems-uff,项目名称:noworkflow,代码行数:9,代码来源:diff_info.ts


示例3: load

  load(selectedGraph: string = "namespace_match", useCache: boolean = true) {
    let sub = this.node.getElementsByClassName("sub-content")[0];
    json("Diff", sub, DiffGraphWidget.url(this.t1, this.t2, selectedGraph, useCache), (data: TrialGraphData) => {
      let selectorDiv = this.d3node.select(".trial-content .graphselector");

      let useCacheDiv = selectorDiv.select(".use-cache");
      useCacheDiv.property("checked", useCache);

      this.configureGraph(selectedGraph, useCache, data);
    })
  }
开发者ID:gems-uff,项目名称:noworkflow,代码行数:11,代码来源:diff_graph.ts


示例4: loadEnvironment

  loadEnvironment() {
    let sub = this.node.getElementsByClassName("environment")[0];

    json("Environment", sub, EnvironmentInfoWidget.url(this.trial.title), (data: EnvironmentData) => {
      let environment = this.d3node.select(".environment").html("");

      let fold = TrialInfoWidget.createFold(environment, "Environment");
      let filter = EnvironmentInfoWidget.createList(
        environment.append("div").classed("foldable show-toolbar", true),
        data.all, "1"
      );
      TrialInfoWidget.createFilterFold(fold, filter);
    })
  }
开发者ID:gems-uff,项目名称:noworkflow,代码行数:14,代码来源:trial_info.ts


示例5: loadModules

 loadModules() {
   let sub = this.node.getElementsByClassName("modules")[0];
   json("Modules", sub, ModulesInfoWidget.url(this.trial.title), (data: ModuleListData) => {
     let modules = this.d3node.select(".modules").html("");
     if (data.all.length > 0) {
       
       let fold = TrialInfoWidget.createFold(modules, "Modules");
       let filter = ModulesInfoWidget.createList(
         modules.append("div").classed("foldable show-toolbar", true),
         data.all, data.trial_path, "1"
       );
       TrialInfoWidget.createFilterFold(fold, filter);
     }
   });
 }
开发者ID:gems-uff,项目名称:noworkflow,代码行数:15,代码来源:trial_info.ts


示例6: loadEnvironment

  loadEnvironment(trial1: string, trial2: string) {
    let sub = this.node.getElementsByClassName("environment")[0];

    json("Environment", sub, DiffInfoWidget.environment_url(trial1, trial2), (data: DiffEnvironmentData) => {
      let environment = this.d3node.select(".environment").html("");
      if ((data.env_added.length > 0) ||
          (data.env_removed.length > 0) ||
          (data.env_replaced.length > 0)) {
        let fold = TrialInfoWidget.createFold(environment, "Environment");
        let foldable = environment.append("div").classed("foldable show-toolbar", true);
        let filter = EnvironmentInfoWidget.createFilter(foldable);
        let ul = foldable.append("ul")
          .classed("env-list", true)
        this.filter_trial(filter, (strial: number) => {
          ul.html("");
          if ((strial & 1) == 1) {
            for (var element of data.env_removed) {
              if (!filter.valid(element)) {
                continue;
              }
              this.env_li(ul, 'dbefore', element);
            }
          }
          if ((strial & 2) == 2) {
            for (var element of data.env_added) {
              if (!filter.valid(element)) {
                continue;
              }
              this.env_li(ul, 'dafter', element);
            }
          }
          if (strial >= 3) {
            for (var elements of data.env_replaced) {
              let rem = elements[0],
                  add = elements[1];
              if (!filter.valid(rem) ||
                  !filter.valid(add)) {
                continue;
              }
              this.env_cli(ul, rem, add);
            }
          }
        });
        TrialInfoWidget.createFilterFold(fold, filter);
      }
    })
  }
开发者ID:gems-uff,项目名称:noworkflow,代码行数:47,代码来源:diff_info.ts


示例7: loadFileAccess

  loadFileAccess() {
    let sub = this.node.getElementsByClassName("file-accesses")[0];

    json("File Accesses", sub, FileAccessesInfoWidget.url(this.trial.title), (data: FileAccessListData) => {
      let accesses = this.d3node.select(".file-accesses").html("");

      if (data.file_accesses.length > 0) {

        let fold = TrialInfoWidget.createFold(accesses, "File Accesses");
        let filter = FileAccessesInfoWidget.createList(
          accesses.append("div").classed("foldable show-toolbar", true),
          data.file_accesses, data.trial_path
        );
        TrialInfoWidget.createFilterFold(fold, filter);
      }
    });
  }
开发者ID:gems-uff,项目名称:noworkflow,代码行数:17,代码来源:trial_info.ts


示例8: loadModules

  loadModules(trial1: string, trial2: string) {
    let sub = this.node.getElementsByClassName("modules")[0];

    json("Modules", sub, DiffInfoWidget.modules_url(trial1, trial2), (data: DiffModuleData) => {
      let modules = this.d3node.select(".modules").html("");
      if ((data.modules_added.length > 0) ||
          (data.modules_removed.length > 0) ||
          (data.modules_replaced.length > 0)) {
        let fold = TrialInfoWidget.createFold(modules, "Modules");
        let foldable = modules.append("div").classed("foldable show-toolbar", true);
        let filter = ModulesInfoWidget.createFilter(foldable);
        let ul = foldable.append("ul")
          .classed("mod-list", true)
        this.filter_trial(filter, (strial: number) => {
          ul.html("");
          if ((strial & 1) == 1) {
            for (var element of data.modules_removed) {
              if (!filter.valid(data.t1_path, element)) {
                continue;
              }
              this.mod_li(ul, 'libefore', element);
            }
          }
          if ((strial & 2) == 2) {
            for (var element of data.modules_added) {
              if (!filter.valid(data.t2_path, element)) {
                continue;
              }
              this.mod_li(ul, 'liafter', element);
            }
          }
          if (strial >= 3) {
            for (var elements of data.modules_replaced) {
              let rem = elements[0],
                  add = elements[1];
              if (!filter.valid(data.t1_path, rem) ||
                  !filter.valid(data.t2_path, add)) {
                continue;
              }
              let li = ul.append("li")

              li.append("div")
                .classed("name", true)
                .text(rem.name);

              let version = li.append("div")
                .classed("version", true)
              version.append("div")
                .classed("dbefore", true)
                .text(rem.version)
              version.append("div")
                .classed("dafter", true)
                .text(add.version)

              li.append("div")
                .classed("clear", true)

              li.append("div")
                .classed("hash dbefore", true)
                .attr("title", rem.path)
                .text(rem.code_hash);

              li.append("div")
                .classed("hash dafter", true)
                .attr("title", add.path)
                .text(add.code_hash);
            }
          }
        });
        TrialInfoWidget.createFilterFold(fold, filter);
      }
    });
  }
开发者ID:gems-uff,项目名称:noworkflow,代码行数:73,代码来源:diff_info.ts


示例9: load

  load(script = "*", execution = "*", summarize=true) {
    let sub = this.node.getElementsByClassName("sub-content")[0];

    json("History", sub, HistoryWidget.url(script, execution, summarize), (data: HistoryGraphData) => {
      this.setGraph(data, {
        width: this.node.getBoundingClientRect().width - 24,
        height: this.node.getBoundingClientRect().height - 24,
        customCtrlClick: (g: HistoryGraph, d: VisibleHistoryNode) => {
          var redTrial = g.state.selectedNode;
          if (redTrial == null) {
            return true;
          }
          var greenTrial = d;
          let diffGraphWidget = new DiffGraphWidget(
            "Diff " + redTrial.display + "-" + greenTrial.display,
            "diff-" + redTrial.title + "-" + greenTrial.title + makeid(),
            +redTrial.title, +greenTrial.title
          );
          let parentDock: NowVisPanel = this.parent as NowVisPanel;

          if (this.config.showInfo()) {
            let diffInfoWidget = new DiffInfoWidget(redTrial.display, greenTrial.display, redTrial.title, greenTrial.title);
            parentDock.addInfoWidget(diffInfoWidget);
            parentDock.activateWidget(diffInfoWidget);
          }

          if (this.config.showTrial()) {
            parentDock.addGraphWidget(diffGraphWidget);
            parentDock.activateWidget(diffGraphWidget);
            diffGraphWidget.load(
              this.config.graphType(),
              this.config.useCache()
            );
          }
          return true;
        },
        customSelectNode: (g: HistoryGraph, d: VisibleHistoryNode) => {
          let trialGraphWidget = new TrialGraphWidget("Trial " + d.display, "trial-" + d.title + makeid(), +d.title, +d.title);
          let parentDock: NowVisPanel = this.parent as NowVisPanel;

          if (this.config.showInfo()) {
            let trialInfoWidget = new TrialInfoWidget(d);
            parentDock.addInfoWidget(trialInfoWidget);
            parentDock.activateWidget(trialInfoWidget);
          }
          if (this.config.showTrial()) {
            parentDock.addGraphWidget(trialGraphWidget);
            parentDock.activateWidget(trialGraphWidget);
            trialGraphWidget.load(
              this.config.graphType(),
              this.config.useCache()
            );
          }
          return true;
        },
        customForm: (graph: HistoryGraph, form: d3_Selection<d3_BaseType, {}, HTMLElement | null, any>) => {
          // Toggle Tooltips
          let filterDiv = this.d3node.select(".history-content .filter");

          let scriptOptions = filterDiv.select(".script-options");

          let currentScript = scriptOptions.property("value");

          scriptOptions.html("");

          scriptOptions.append("option")
            .attr("value", "*")
            .text("All Scripts");

          for (let script of data.scripts) {
            scriptOptions.append("option")
              .attr("value", script)
              .text(script);
          }

          scriptOptions.property("value", currentScript);

          let filterToggle = form.append("input")
            .attr("id", "history-" + graph.graphId + "-toolbar-filter-check")
            .attr("type", "checkbox")
            .attr("name", "history-toolbar-filter-check")
            .attr("value", "show")
            .property("checked", filterDiv.classed('visible'))
            .on("change", () => {
              let visible = filterToggle.property("checked");
              filterToggleI
                .classed('fa-circle-o', visible)
                .classed('fa-circle', !visible);
              filterDiv
                .classed('visible', visible)
                .classed('show-toolbar', visible)
                  .classed('hide-toolbar', !visible)
            });
          let filterLabel = form.append("label")
            .attr("for", "history-" + graph.graphId + "-toolbar-filter-check")
          let filterToggleI = filterLabel.append("i")
            .classed('fa', true)
            .classed("fa-circle", !filterDiv.classed('visible'))
            .classed("fa-circle-o", filterDiv.classed('visible'))
        }
//.........这里部分代码省略.........
开发者ID:gems-uff,项目名称:noworkflow,代码行数:101,代码来源:history_graph.ts


示例10: load

 load(selectedGraph: string = "namespace_match", useCache: boolean = true) {
   let sub = this.node.getElementsByClassName("sub-content")[0];
   json("Trial", sub, TrialGraphWidget.url(this.t1, selectedGraph, useCache), (data: TrialGraphData) => {
     this.configureGraph(selectedGraph, useCache, data);
   })
 }
开发者ID:gems-uff,项目名称:noworkflow,代码行数:6,代码来源:trial_graph.ts



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript actions.acceptPayloadMessage函数代码示例发布时间:2022-05-28
下一篇:
TypeScript trial.TrialGraph类代码示例发布时间:2022-05-28
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap