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


TypeScript adf-core.StorageService類代碼示例

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


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

示例1: addFilter

    /**
     * Adds a new process instance filter
     * @param filter The new filter to add
     * @returns Details of process filter just added
     */
    addFilter(filter: ProcessFilterCloudModel) {
        const user: IdentityUserModel = this.identityUserService.getCurrentUserInfo();
        const key = `process-filters-${filter.appName}-${user.username}`;
        const storedFilters = JSON.parse(this.storage.getItem(key) || '[]');

        storedFilters.push(filter);
        this.storage.setItem(key, JSON.stringify(storedFilters));

        this.addFiltersToStream(storedFilters);
    }
開發者ID:Alfresco,項目名稱:alfresco-ng2-components,代碼行數:15,代碼來源:process-filter-cloud.service.ts

示例2: updateFilter

 /**
  *  Update process instance filter
  * @param filter The new filter to update
  */
 updateFilter(filter: ProcessFilterCloudModel) {
     const user: IdentityUserModel = this.identityUserService.getCurrentUserInfo();
     const key = `process-filters-${filter.appName}-${user.username}`;
     if (key) {
         let filters = JSON.parse(this.storage.getItem(key) || '[]');
         let itemIndex = filters.findIndex((flt: ProcessFilterCloudModel) => flt.id === filter.id);
         filters[itemIndex] = filter;
         this.storage.setItem(key, JSON.stringify(filters));
         this.addFiltersToStream(filters);
     }
 }
開發者ID:Alfresco,項目名稱:alfresco-ng2-components,代碼行數:15,代碼來源:process-filter-cloud.service.ts

示例3: deleteFilter

 /**
  *  Delete process instance filter
  * @param filter The new filter to delete
  */
 deleteFilter(filter: ProcessFilterCloudModel) {
     const user: IdentityUserModel = this.identityUserService.getCurrentUserInfo();
     const key = `process-filters-${filter.appName}-${user.username}`;
     if (key) {
         let filters = JSON.parse(this.storage.getItem(key) || '[]');
         filters = filters.filter((item) => item.id !== filter.id);
         this.storage.setItem(key, JSON.stringify(filters));
         if (filters.length === 0) {
             this.createDefaultFilters(filter.appName);
         } else {
             this.addFiltersToStream(filters);
         }
     }
 }
開發者ID:Alfresco,項目名稱:alfresco-ng2-components,代碼行數:18,代碼來源:process-filter-cloud.service.ts

示例4: getProcessFilterById

 /**
  * Get process instance filter for given filter id
  * @param appName Name of the target app
  * @param id Id of the target process instance filter
  * @returns Details of process filter
  */
 getProcessFilterById(appName: string, id: string): ProcessFilterCloudModel {
     const user: IdentityUserModel = this.identityUserService.getCurrentUserInfo();
     const key = `process-filters-${appName}-${user.username}`;
     let filters = [];
     filters = JSON.parse(this.storage.getItem(key)) || [];
     return filters.filter((filterTmp: ProcessFilterCloudModel) => id === filterTmp.id)[0];
 }
開發者ID:Alfresco,項目名稱:alfresco-ng2-components,代碼行數:13,代碼來源:process-filter-cloud.service.ts

示例5: getProcessFilters

    /**
     * Gets all process instance filters for a process app.
     * @param appName Name of the target app
     * @returns Observable of process filter details
     */
    getProcessFilters(appName: string): Observable<ProcessFilterCloudModel[]> {
        const user: IdentityUserModel = this.identityUserService.getCurrentUserInfo();
        const key = `process-filters-${appName}-${user.username}`;
        const filters = JSON.parse(this.storage.getItem(key) || '[]');

        if (filters.length === 0) {
            this.createDefaultFilters(appName);
        } else {
            this.addFiltersToStream(filters);
        }
        return this.filters$;
    }
開發者ID:Alfresco,項目名稱:alfresco-ng2-components,代碼行數:17,代碼來源:process-filter-cloud.service.ts


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