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


TypeScript core.NgModuleRef類代碼示例

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


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

示例1: bootstrap

export const hmrBootstrap = (module: any, bootstrap: () => Promise<NgModuleRef<any>>) => {
    let ngModule: NgModuleRef<any>;
    module.hot.accept();
    bootstrap().then(mod => ngModule = mod);
    module.hot.dispose(() => {
        const appRef: ApplicationRef = ngModule.injector.get(ApplicationRef);
        const elements = appRef.components.map(c => c.location.nativeElement);
        const makeVisible = createNewHosts(elements);
        ngModule.destroy();
        makeVisible();
    });
};
開發者ID:IgniteUI,項目名稱:igniteui-angular,代碼行數:12,代碼來源:hmr.ts

示例2: bootstrap

export const hmrBootstrap = (module: any, bootstrap: () => Promise<NgModuleRef<any>>) => {
  let ngModule: NgModuleRef<any>;

  module.hot.accept();
  bootstrap().then(currentModule => {
    ngModule = currentModule;
    cssLinkManager.loadLinks();
    return ngModule;
  });
  module.hot.dispose(() => {
    const appRef: ApplicationRef = ngModule.injector.get(ApplicationRef);
    const elements = appRef.components.map(c => c.location.nativeElement);
    const removeOldHosts = createNewHosts(elements);
    ngModule.destroy();
    removeOldHosts();
    cssLinkManager.disposeLinks();
  });
};
開發者ID:hstarorg,項目名稱:FlyingChat,代碼行數:18,代碼來源:hmr.ts

示例3: createNewHosts

 module.hot.dispose(() => {
   let appRef: ApplicationRef = ngModule.injector.get(ApplicationRef);
   let elements = appRef.components.map(c => c.location.nativeElement);
   let makeVisible = createNewHosts(elements);
   ngModule.destroy();
   makeVisible();
 });
開發者ID:TypeScriptUserGroupDE,項目名稱:homepage,代碼行數:7,代碼來源:hmr.ts

示例4: createNewHosts

 module.hot.dispose(() => {
   const appRef: ApplicationRef = ngModule.injector.get(ApplicationRef);
   const elements = appRef.components.map(c => c.location.nativeElement);
   const removeOldHosts = createNewHosts(elements);
   ngModule.destroy();
   removeOldHosts();
   cssLinkManager.disposeLinks();
 });
開發者ID:hstarorg,項目名稱:FlyingChat,代碼行數:8,代碼來源:hmr.ts

示例5: createNewHosts

 module.hot.dispose(() => {
   const appRef: ApplicationRef = ngModule.injector.get(ApplicationRef);
   const modalService = ngModule.injector.get(NzModalService, null) as NzModalService;
   if (modalService) modalService.closeAll();
   const elements = appRef.components.map(c => c.location.nativeElement);
   const makeVisible = createNewHosts(elements);
   ngModule.destroy();
   makeVisible();
 });
開發者ID:wenxiayili,項目名稱:LTMCompanyNameFree.YoyoCmsTemplate,代碼行數:9,代碼來源:hmr.ts

示例6: bootstrap

              .subscribe((stable) => {

                // Fire the TransferState Cache
                const bootstrap = moduleRef.instance['ngOnBootstrap'];
                bootstrap && bootstrap();

                // The parse5 Document itself
                const AST_DOCUMENT = state.getDocument();

                // Strip out the Angular application
                const htmlDoc = state.renderToString();

                const APP_HTML = htmlDoc.substring(
                  htmlDoc.indexOf('<body>') + 6,
                  htmlDoc.indexOf('</body>')
                );

                // Strip out Styles / Meta-tags / Title
                const STYLES = [];
                const SCRIPTS = [];
                const META = [];
                const LINKS = [];
                let TITLE = '';

                //let STYLES_STRING = htmlDoc.substring(
                  //htmlDoc.indexOf('<style ng-transition'),
                  //htmlDoc.lastIndexOf('</style>') + 8
                //);
              let STYLES_STRING: string = htmlDoc.indexOf('<style ng-transition') > -1
                                    ? htmlDoc.substring(
                                        htmlDoc.indexOf('<style ng-transition'),
                                        htmlDoc.lastIndexOf('</style>') + 8)
                                    : null;
                // STYLES_STRING = STYLES_STRING.replace(/\s/g, '').replace('<styleng-transition', '<style ng-transition');

                const HEAD = AST_DOCUMENT.head;

                let count = 0;

                for (let i = 0; i < HEAD.children.length; i++) {
                  let element = HEAD.children[i];

                  if (element.name === 'title') {
                    TITLE = element.children[0].data;
                  }

                  if (element.name === 'script') {
                    SCRIPTS.push(
                      `<script>${element.children[0].data}</script>`
                    );
                  }

                  // Broken after 4.0 (worked in rc)
                  // if (element.name === 'style') {
                  //   let styleTag = '<style ';
                  //   for (let key in element.attribs) {
                  //     if (key) {
                  //       styleTag += `${key}="${element.attribs[key]}">`;
                  //     }
                  //   }

                  //   styleTag += `${element.children[0].data}</style>`;
                  //   STYLES.push(styleTag);
                  // }

                  if (element.name === 'meta') {
                    count = count + 1;
                    let metaString = '<meta';
                    for (let key in element.attribs) {
                      if (key) {
                        metaString += ` ${key}="${element.attribs[key]}"`;
                      }
                    }
                    META.push(`${metaString} />\n`);
                  }

                  if (element.name === 'link') {
                    let linkString = '<link';
                    for (let key in element.attribs) {
                      if (key) {
                        linkString += ` ${key}="${element.attribs[key]}"`;
                      }
                    }
                    LINKS.push(`${linkString} />\n`);
                  }
                }

                resolve({
                  html: APP_HTML,
                  globals: {
                    styles: STYLES_STRING,
                    title: TITLE,
                    scripts: SCRIPTS.join(' '),
                    meta: META.join(' '),
                    links: LINKS.join(' ')
                  }
                });

                moduleRef.destroy();

//.........這裏部分代碼省略.........
開發者ID:SKorolchuk,項目名稱:aspnetcore-angular2-universal,代碼行數:101,代碼來源:temporary-aspnetcore-engine.ts

示例7:

		.subscribe(() => {
			callback(state.renderToString());
			moduleRef.destroy();
		});
開發者ID:RootedGlobal,項目名稱:ngx-universal-webpack-seed,代碼行數:4,代碼來源:express-engine.ts


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