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


TypeScript qcloud-redux-fetcher.generateFetcherActionCreator函數代碼示例

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


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

示例1: generateFetcherActionCreator

ďťżimport { extend } from "@tencent/qcloud-lib";
import { generateFetcherActionCreator } from "@tencent/qcloud-redux-fetcher";
import * as ActionType from "../constants/ActionTypes";
import * as WebAPI from "../WebAPI";
import { Wiki, Example } from "../models";
import { ReduxAction } from "../../../types";

const wikiFetcherActions = generateFetcherActionCreator({
    actionType: ActionType.FetchWikis,
    fetcher: (state, { noCache } = { noCache: false }) => {
        return WebAPI.getAllWikies({ noCache });
    }
});

const wikiSelectActions = {
    select(wiki: Wiki): ReduxAction<Wiki> {
        return {
            type: ActionType.SelectWiki,
            payload: wiki
        }
    }
};

export const wikiActions = extend({}, wikiFetcherActions, wikiSelectActions);

export const exampleActions = {
    select(example: Example) {
        return {
            type: ActionType.SelectExample,
            payload: example
        }
開發者ID:nolan1230,項目名稱:autoaccess,代碼行數:31,代碼來源:RootActions.ts

示例2: generateFetcherActionCreator

ďťżimport { extend } from "@tencent/qcloud-lib";
import { generateFetcherActionCreator } from "@tencent/qcloud-redux-fetcher";
import * as ActionType from "../constants/ActionTypes";
import * as WebAPI from "../WebAPI";
import { ReduxAction } from "../../../types";

const namespaceFetcherActions = generateFetcherActionCreator({
    actionType: ActionType.FetchNamespaces,
    fetcher: WebAPI.fetchNamespaces
});



export const namespaceActions = extend({}, namespaceFetcherActions,addNamespaceActions);

export const moduleActions = {
    select: (moduleName: string) => {
        return {
            type: ActionType.SelectModule,
            payload: moduleName
        }
    }
}
開發者ID:nolan1230,項目名稱:autoaccess,代碼行數:23,代碼來源:RootActions.ts

示例3: generateFetcherActionCreator

import { RecordSet, extend, ReduxAction } from "@tencent/qcloud-lib";
import { generateFetcherActionCreator } from "@tencent/qcloud-redux-fetcher";
import { generateQueryActionCreator } from "@tencent/qcloud-redux-query";
import { generateWorkflowActionCreator, OperationHooks, OperationTrigger } from "@tencent/qcloud-redux-workflow";

import { Todo, TodoFilter, RootState } from "../models";
import * as ActionType from "../constants/ActionType";
import * as WebAPI from "../WebAPI";

type GetState = () => RootState;

const fetchActions = generateFetcherActionCreator({
    actionType: ActionType.FetchTodo,
    fetcher: (getState: GetState) => {
        return WebAPI.fetchTodo(getState().query);
    }
});

const queryActions = generateQueryActionCreator<TodoFilter>({
    actionType: ActionType.QueryTodo,
    bindFetcher: fetchActions
});

const selectionActions = {
    select: (todos: Todo[]): ReduxAction<Todo[]> => {
        return {
            type: ActionType.SelectTodo,
            payload: todos
        };
    }
};
開發者ID:nolan1230,項目名稱:autoaccess,代碼行數:31,代碼來源:todoActions.ts


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