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


TypeScript field-information.getModelName函数代码示例

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


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

示例1: addRecentlyViewed

  /**
   * Add a model to the recently viewed records
   * @param model The model you want to add
   */
  addRecentlyViewed(model: DrupalModel) : void {
    if(!isBlank(model)) {
      let newRecentlyViewedRecord = {
        type: this.fieldInformation.getModelName(model),
        name: model.name,
        id: model.id
      };

      const oldRecentlyViewedRecords = this.records;

      let newRecentlyViewedRecords = [];
      newRecentlyViewedRecords.push(newRecentlyViewedRecord);

      let index = 1;
      for(let oldRecentlyViewedRecord of oldRecentlyViewedRecords) {
        if(!(oldRecentlyViewedRecord.id === newRecentlyViewedRecord.id && oldRecentlyViewedRecord.type === newRecentlyViewedRecord.type)) {
          newRecentlyViewedRecords.push(oldRecentlyViewedRecord);
          index++;

          if(index >= 10) {
            break;
          }
        }
      }

      this.storage.set('recentlyViewedRecords', newRecentlyViewedRecords);
    }
  }
开发者ID:pjcarly,项目名称:ember-mist-components,代码行数:32,代码来源:recently-viewed.ts

示例2:

  @task({ group: 'modelTasks' })
  * deleteWithoutConfirm(model: DrupalModel) {
    const modelName = this.fieldInformation.getModelName(model);
    model.deleteRecord();
    yield model.save()
    .then(() => {
      this.successToast(`Success`, `Record deleted`);
      this.entityRouter.transitionToList(modelName);

      this.recentlyViewed.removeRecentlyViewed(model, model.id);
    })
    .catch((reason: any) => {
      this.logErrorMessage(`There was an error deleting your data`, reason.message);
    });
  }
开发者ID:pjcarly,项目名称:ember-mist-components,代码行数:15,代码来源:model-controller.ts

示例3: state

  @task({ group: 'modelTasks' })
  * refresh(model: DrupalModel) {
    model.rollback(); // To clear any potential dirty state (else the reload won't work)
    const modelName = this.fieldInformation.getModelName(model);
    const defaultIncludes = this.fieldInformation.getDefaultIncludes(modelName);

    const options : QueryParams = {};

    // Lets also include the default includes
    if(defaultIncludes.length > 0) {
      options['include'] = defaultIncludes.join(',');
    }

    yield this.store.loadRecord(modelName, model.get('id'), options)
    .then(() => {
      this.infoToast(`Success`, `Record Refreshed`);
    })
    .catch((reason: any) => {
      this.logErrorMessage(`There was an error refreshing`, reason.message);
    });
  }
开发者ID:pjcarly,项目名称:ember-mist-components,代码行数:21,代码来源:model-controller.ts

示例4: transitionToModelRoute

 /**
  * Transition to a modelroute
  * @param model The model to get the modelroute from
  * @param route The route within the model route to navigate to
  */
 transitionToModelRoute(model: Model, route: string) {
   const modelName = this.fieldInformation.getModelName(model);
   this.router.transitionTo(`${modelName}.${route}`, model.get('id'));
 }
开发者ID:pjcarly,项目名称:ember-mist-components,代码行数:9,代码来源:entity-router.ts


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