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


TypeScript preact.render函數代碼示例

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


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

示例1: Promise

 const readyPromise = new Promise((resolve) => {
   const el = h(nb.Notebook, {
     nbId: "default",
     onReady: resolve,
   });
   render(el, document.body);
 });
開發者ID:Befirst-Solutions,項目名稱:propel,代碼行數:7,代碼來源:notebook_test.ts

示例2: async

window.addEventListener("load", async() => {
  render(h(Router, null), document.body, document.body.children[0]);
  await drainExecuteQueue();
  // If we're in a testing environment...
  if (window.navigator.webdriver) {
    // rerender to make sure the dom is up to date and then output a special
    // string which is used in tools/test_browser.js.
    rerender();
    console.log("Propel onload");
  }
});
開發者ID:Befirst-Solutions,項目名稱:propel,代碼行數:11,代碼來源:website_main.ts

示例3: testBrowser

testBrowser(function notebook_NotebookRoot() {
  const mdb = enableMock();
  document.body.innerHTML = "";
  const el = h(nb.NotebookRoot, { });
  render(el, document.body);
  console.log("mdb.counts", mdb.counts);
  assert(objectsEqual(mdb.counts, {
    queryLatest: 1,
  }));
  const c = document.body.children[0];
  assert(c.className === "notebook");
});
開發者ID:Befirst-Solutions,項目名稱:propel,代碼行數:12,代碼來源:notebook_test.ts

示例4: mountJsx

export function mountJsx (
    selector : string,
    ComponentToMount : ComponentFactory<any>,
    additionalProps : object = {},
    context : Document|HTMLElement = document
)
{
    const elements = find(selector, context);

    for (let i = 0; i < elements.length; i++)
    {
        try
        {
            const node = elements[i];

            if (node.parentElement === null)
            {
                console.error("Can't mount on container without parent.");
                continue;
            }

            const content = (node.textContent || "").trim();
            let data = (content !== "")
                ? JSON.parse(content)
                : {};
            data = merge(data, additionalProps);

            render(
                h(ComponentToMount, data),
                node.parentElement,
                node
            );
        }
        catch (e)
        {
            console.error("Could not mount component", e);
        }
    }
}
開發者ID:Becklyn,項目名稱:mojave,代碼行數:39,代碼來源:mount.ts

示例5: loadWebFonts

BROWSER.ready(() => {
  loadWebFonts();

  // Create the main store and register the state to the history object
  const ga = createGoogleAnalytics('UA-12048148-1').sendPageView();
  const sendPageView = ga.sendPageView.bind(ga);
  BROWSER.history.onPopState(sendPageView);
  BROWSER.history.onPushState(sendPageView);

  const fetcher = new FetchStreamer(BROWSER);
  const metafileStore = createMetafileStore(fetcher);

  const metaHolder = BROWSER.query(
    'script[type="application/json"]'
  ) as HTMLElement;
  const metadata = inflate(metaHolder.innerHTML) as
    | MetaFileData
    | MetaFileData[];
  const meta = MetaFile.fromData(metadata);
  console.debug('Infalted meta', meta);

  // Render the main react component
  const pageProps: PageProps = {
    meta,
    metafileStore,
    fetcher,
    gistStore: new GistStore(
      fetcher,
      metafileStore,
      isValidMetaFile(meta) ? meta : null
    ),
    pkg: BROWSER.prop('pkg') as PackageJson
  };
  const el = h(Page, pageProps);
  const root = BROWSER.query('#app');
  render(el, root, root.firstElementChild);
});
開發者ID:valotas,項目名稱:valotas.com,代碼行數:37,代碼來源:main.ts

示例6: disconnectedCallback

 disconnectedCallback() {
   if (super.disconnectedCallback) {
     super.disconnectedCallback();
   }
   render(null, this.renderRoot, mapDom.get(this));
 }
開發者ID:skatejs,項目名稱:skatejs,代碼行數:6,代碼來源:index.ts

示例7: renderer

 renderer() {
   const dom = mapDom.get(this);
   mapDom.set(this, render(this.render(), this.renderRoot, dom));
 }
開發者ID:skatejs,項目名稱:skatejs,代碼行數:4,代碼來源:index.ts

示例8: renderPage

export function renderPage(p: Page): void {
  render(h(p.root, null), document.body, document.body.children[0]);
}
開發者ID:Befirst-Solutions,項目名稱:propel,代碼行數:3,代碼來源:website.ts


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