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


TypeScript sp-core-library.Log类代码示例

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


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

示例1: onInit

 @override
 public onInit(): Promise<void> {
   Log.info(LOG_SOURCE, 'Activated TaskPriorityFieldCustomizer with properties:');
   Log.info(LOG_SOURCE, JSON.stringify(this.properties, undefined, 2));
   Log.info(LOG_SOURCE, `The following string should be equal: "TaskPriority" and "${strings.Title}"`);
   return Promise.resolve<void>();
 }
开发者ID:AdrianDiaz81,项目名称:sp-dev-fx-extensions,代码行数:7,代码来源:TaskPriorityFieldCustomizer.ts

示例2: onInit

  @override
  public async onInit(): Promise<void> {
    Log.info(LOG_SOURCE, `Initialized ${strings.Title}`);

    // Added to handle possible changes on the existence of placeholders
    // this.context.placeholderProvider.changedEvent.add(this, this._renderPlaceHolders);
    // this.context.application._layoutChangedEvent.add(this, this._layoutChanged);
    
    // Retrieve the menu items from taxonomy
    Log.info(LOG_SOURCE, `Creating instance of SPTermStore.SPTermStoreService`);
    Log.info(LOG_SOURCE, `spHttpClient: ${this.context.spHttpClient}`);
    Log.info(LOG_SOURCE, `siteAbsoluteUrl: ${this.context.pageContext.web.absoluteUrl}`);
    let termStoreService: SPTermStore.SPTermStoreService = new SPTermStore.SPTermStoreService({
      spHttpClient: this.context.spHttpClient,
      siteAbsoluteUrl: this.context.pageContext.web.absoluteUrl,
    });

    Log.info(LOG_SOURCE, `SourceTermSetName: ${this.properties.SourceTermSetName}`);
    this._bottomMenuItems = await termStoreService.getTermsFromTermSetAsync(this.properties.SourceTermSetName);
        
    // Call render method for generating the needed html elements
    this._renderPlaceHolders();

    return Promise.resolve<void>();
  }
开发者ID:AdrianDiaz81,项目名称:sp-dev-fx-extensions,代码行数:25,代码来源:YammerFooterApplicationCustomizer.ts

示例3: onInit

 @override
 public onInit(): Promise<void> {
   Log._initialize(new LogHandler((window as any).LOG_LEVEL || LogLevel.Error));
   Log.verbose(LOG_SOURCE, 'Activated ConditionalFormattingFieldCustomizer with properties:');
   Log.verbose(LOG_SOURCE, JSON.stringify(this.properties, undefined, 2));
   return Promise.resolve<void>();
 }
开发者ID:AdrianDiaz81,项目名称:sp-dev-fx-extensions,代码行数:7,代码来源:ConditionalFormattingFieldCustomizer.ts

示例4: onInit

 @override
 public onInit(): Promise<void> {
   // Add your custom initialization to this method.  The framework will wait
   // for the returned promise to resolve before firing any BaseFieldCustomizer events.
   Log.info(LOG_SOURCE, 'Activated CustomColorFieldFieldCustomizer with properties:');
   Log.info(LOG_SOURCE, JSON.stringify(this.properties, undefined, 2));
   Log.info(LOG_SOURCE, `The following string should be equal: "CustomColorFieldFieldCustomizer" and "${strings.Title}"`);
   return Promise.resolve();
 }
开发者ID:AdrianDiaz81,项目名称:sp-dev-fx-extensions,代码行数:9,代码来源:CustomColorFieldFieldCustomizer.ts

示例5: onInit

  @override
  public onInit(): Promise<void> {
    Log._initialize(new ConsoleLogHandler((window as any).LOG_LEVEL || LogLevel.Error));
    Log.info(LOG_SOURCE, `Initialized ${strings.Title}`);

    if (!this.properties.siteUrl ||
      !this.properties.listName) {
      const e: Error = new Error('Missing required configuration parameters');
      Log.error(LOG_SOURCE, e);
      return Promise.reject(e);
    }

    return Promise.resolve<void>();
  }
开发者ID:AdrianDiaz81,项目名称:sp-dev-fx-extensions,代码行数:14,代码来源:AnnouncementsApplicationCustomizer.ts

示例6: getLookupOptions

function getLookupOptions(state: Array<LookupOptions>, action) {

    let newstate = _.clone(state);
    newstate.push(action.payload.lookupOptions);
    Log.info("getLookupOptions", "Added Header Record");
    return newstate;
}
开发者ID:,项目名称:,代码行数:7,代码来源:

示例7: _renderPlaceHolders

  private _renderPlaceHolders(): void {
    
    Log.info(LOG_SOURCE, `Available placeholders:  ${this.context.placeholderProvider.placeholderNames.map(name => PlaceholderName[name]).join(', ')}`);

    // Handling the bottom placeholder
    if (!this._bottomPlaceholder) {
      this._bottomPlaceholder =
        this.context.placeholderProvider.tryCreateContent(
          PlaceholderName.Bottom,
          { onDispose: this._onDispose });

      // The extension should not assume that the expected placeholder is available.
      if (!this._bottomPlaceholder) {
        console.error('The expected placeholder (Bottom) was not found.');
        return;
      }

      const withinPages: boolean = this.context.pageContext.listItem != null;

      if (this.properties && withinPages) {
        const element: React.ReactElement<IYammerFooterBarProps> = React.createElement(
          YammerFooterBar,
          {
            context: this.context,
            sourceTermSetName: this.properties.SourceTermSetName,
            menuItems: this._bottomMenuItems
          }
        );
    
        ReactDom.render(element, this._bottomPlaceholder.domElement);
      }
    }
  }
开发者ID:AdrianDiaz81,项目名称:sp-dev-fx-extensions,代码行数:33,代码来源:YammerFooterApplicationCustomizer.ts

示例8: SubscribeToStatusChangeForUser

 public async SubscribeToStatusChangeForUser(userEmail: string, userDisplayName: string,
     handler: (newStatus: string, oldStatus: string, displayName: string) => void): Promise<boolean> {
     if (!userEmail || !handler) {
         return false;
     }
     userDisplayName = userDisplayName.replace("(...)", "");
     const skypeApp: any = await this.Initialize();
     const personsAndGroupsManager: any = skypeApp.personsAndGroupsManager;
     const mePerson: any = personsAndGroupsManager.mePerson;
     if (SkypeForBusinessCommunicationService.webPartContext().pageContext.user.email === userEmail) {
         Log.info(Constants.ErrorCategory, `Bypassed skype subscription for current user ${userEmail}`);
         handler("Online", undefined, mePerson.displayName());
     } else {
         const query: any = personsAndGroupsManager.createPersonSearchQuery();
         query.text(userEmail);
         query.limit(1);
         await query.getMore();
         query.results().forEach((result) => {
             const person: any = result.result;
             if (person.id().indexOf(userEmail) !== -1) {
                 handler("Offline", undefined, userDisplayName);
                 person.status.changed((newStatus, reason, oldStatus) => {
                     Log.info(Constants.ErrorCategory,
                         `${person.displayName()} status changed from ${oldStatus} to ${newStatus} because ${reason}`);
                     handler(newStatus, oldStatus, person.displayName());
                 });
                 person.status.subscribe();
             }
         });
     }
     return true;
 }
开发者ID:,项目名称:,代码行数:32,代码来源:

示例9: resolve

 return jQuery.getScript("https://swx.cdn.skype.com/shared/v/1.2.36/SkypeBootstrap.min.js").then(() => {
     const config: {apiKey: string, apiKeyCC: string} = {
         apiKey: "a42fcebd-5b43-4b89-a065-74450fb91255", // sdk
         apiKeyCC: "9c967f6b-a846-4df2-b43d-5167e47d81e1", // sdk+ui
     };
     if (currentConfiguration && currentConfiguration.ClientId) {
         Skype.initialize({ apiKey: config.apiKey }, (api) => {
             const app: any = new api.application();
             app.signInManager.signIn ({
                 client_id: currentConfiguration.ClientId,
                 cors: true,
                 origins: ["https://webdir.online.lync.com/autodiscover/autodiscoverservice.svc/root"],
                 redirect_uri: currentConfiguration.RedirectUri,
             }).then(() => {
                 resolve(app);
             }, (err: any) => {
                 Log.error(Constants.ErrorCategory, new Error(`cannot sign in ${err}`));
                 location.assign("https://login.microsoftonline.com/common/oauth2/authorize?response_type=token" +
                     "&client_id=" + currentConfiguration.ClientId +
                     "&redirect_uri=" + location.href +
                     "&resource=https://webdir.online.lync.com");
                 reject(err);
             });
         });
     } else {
         Log.error(Constants.ErrorCategory, new Error(`configuration missing for skype presence service`));
     }
 });
开发者ID:,项目名称:,代码行数:28,代码来源:

示例10: removeListItem

export function removeListItem(dispatch: any, listItem: ListItem, listDefinition: ListDefinition): any {
    const weburl = utils.ParseSPField(listDefinition.webLookup).id;
    const listid = utils.ParseSPField(listDefinition.listLookup).id;
    const web = new Web(weburl);
    switch (listItem.__metadata__GridRowStatus) {
        case GridRowStatus.toBeDeleted:
            web.lists.getById(listid).items.getById(listItem.ID).recycle()
                .then((response) => {
                    // shouwld have an option to rfresh here in cas of calculated columns

                    const gotListItems = removeListItemSuccessAction(listItem);
                    dispatch(gotListItems); // need to ewname this one to be digfferent from the omported ome
                })
                .catch((error) => {
                    console.log(error);
                    dispatch(removeListItemErrorAction(error)); // need to ewname this one to be digfferent from the omported ome
                });
            return {
                type: REMOVE_LISTITEM,
                payload: {
                    listItem: listItem
                }
            };
        default:
            Log.warn("ListItemContainer", "Invalid GrodrowStatus in update ListiteRender-- " + listItem.__metadata__GridRowStatus.toString());
    }
}
开发者ID:,项目名称:,代码行数:27,代码来源:


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