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


TypeScript appArgs.startLoading函数代码示例

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


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

示例1: return

 return (dispatch: Redux.Dispatch<any, IState>, getState: () => IState) => {
     dispatch(startLoading("wallet"));
     const mutation = WALLET_CREATE_MUTATION;
     const variables = data;
     clientAccess.mutate({mutation, variables})
         .then(response => {
             dispatch(endLoading("wallet"));
             if (!response.data) {
                 throw Error("Server returns empty response");
             } else {
                 const w = (response.data.createWallet as IWalletCreateMutationResponse);
                 const wallet = {
                     ...w,
                     ownerId: (w.owner.id as string)
                 };
                 dispatch(walletCreationSuccess(wallet as any));
             }
         })
         .catch((err: any) => {
                 if (err.graphQLErrors) {
                     err.graphQLErrors.forEach((e: any) => dispatch(this.fetchFailed.execute(e.message)));
                 } else {
                     dispatch(this.fetchFailed.execute(err.message));
                 }
             }
         );
 };
开发者ID:ZulusK,项目名称:Budgetarium,代码行数:27,代码来源:walletCommands.ts

示例2: return

 return (dispatch: Redux.Dispatch<any, IState>, getState: () => IState) => {
     dispatch(startLoading("transactions"));
     const mutation = TRANSACTION_DELETE_MUTATION;
     const variables = {id};
     clientAccess.mutate({mutation, variables})
         .then(response => {
             const answer = (response.data as any);
             clientAccess.cache.reset();
             if (!answer) {
                 throw Error("Server returns empty response");
             } else {
                 dispatch(endLoading("transactions"));
                 dispatch(removeTransactionFromSelectedWallet(id));
                 dispatch(transactionDeleteSuccess(id));
             }
         })
         .catch((err: any) => {
                 if (err.graphQLErrors && err.graphQLErrors.length) {
                     err.graphQLErrors.forEach((e: any) => dispatch(this.fetchFailed.execute(e.message, "transactions")));
                 } else {
                     dispatch(this.fetchFailed.execute(err.message, "transactions"));
                 }
             }
         );
 };
开发者ID:ZulusK,项目名称:Budgetarium,代码行数:25,代码来源:transactionsCommands.ts

示例3: return

 return (dispatch: Redux.Dispatch<any, IState>, getState: () => IState): any => {
     // get current refresh token
     const {refreshToken} = getState().auth;
     if (!refreshToken) {
         return dispatch(authLogout());
     }
     // check time of current refresh token
     if (new Date(refreshToken.expiredIn) <= new Date) {
         return dispatch(authLogout());
     }
     // load new access token
     dispatch(startLoading("auth"));
     clientRefresh.mutate({mutation: REFRESH_ACCESS_TOKEN_MUTATION})
         .then((response: any) => {
             if (!response.data) {
                 throw Error("Server returns empty response");
             } else {
                 clientAccess.cache.reset();
                 const {token, expiredIn} = response.data.access;
                 dispatch(authUpdateAccessToken({token, expiredIn}));
                 dispatch(endLoading("auth"));
             }
         })
         .catch(err => {
             if (err.graphQLErrors) {
                 err.graphQLErrors.forEach((e: any) => this.authFailAction.execute(e.message));
             } else {
                 dispatch(this.authFailAction.execute(err.message));
             }
         });
 };
开发者ID:ZulusK,项目名称:Budgetarium,代码行数:31,代码来源:authCommands.ts


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