本文整理汇总了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);
}
}
示例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);
});
}
示例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);
});
}
示例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'));
}