當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript runtime.RenderResult類代碼示例

本文整理匯總了TypeScript中@glimmer/runtime.RenderResult的典型用法代碼示例。如果您正苦於以下問題:TypeScript RenderResult類的具體用法?TypeScript RenderResult怎麽用?TypeScript RenderResult使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了RenderResult類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: assertInvariants

function assertInvariants(result: RenderResult, msg?: string) {
  assert.strictEqual(result.firstNode(), root.firstChild, `The firstNode of the result is the same as the root's firstChild${msg ? ': ' + msg : ''}`);
  assert.strictEqual(result.lastNode(), root.lastChild, `The lastNode of the result is the same as the root's lastChild${msg ? ': ' + msg : ''}`);
}
開發者ID:jayphelps,項目名稱:glimmer,代碼行數:4,代碼來源:attributes-test.ts

示例2: destroy

  destroy() {
    let { result, env } = this;

    this.destroyed = true;

    this.env = undefined as any;
    this.root = null as any;
    this.result = undefined;
    this.render = undefined as any;

    if (result) {
      /*
       Handles these scenarios:

       * When roots are removed during standard rendering process, a transaction exists already
         `.begin()` / `.commit()` are not needed.
       * When roots are being destroyed manually (`component.append(); component.destroy() case), no
         transaction exists already.
       * When roots are being destroyed during `Renderer#destroy`, no transaction exists

       */
      let needsTransaction = !env.inTransaction;

      if (needsTransaction) {
        env.begin();
      }
      try {
        result.destroy();
      } finally {
        if (needsTransaction) {
          env.commit();
        }
      }
    }
  }
開發者ID:jrjohnson,項目名稱:ember.js,代碼行數:35,代碼來源:renderer.ts

示例3: rerender

function rerender(context: any = null) {
  if (context !== null) self.update(context);
  env.begin();
  result.rerender();
  env.commit();
}
開發者ID:jayphelps,項目名稱:glimmer,代碼行數:6,代碼來源:attributes-test.ts

示例4:

this.render = () => result.rerender(options);
開發者ID:habdelra,項目名稱:ember.js,代碼行數:1,代碼來源:renderer.ts


注:本文中的@glimmer/runtime.RenderResult類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。