本文整理匯總了TypeScript中@dapps/modules/loading/reducer.loadingReducer函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript loadingReducer函數的具體用法?TypeScript loadingReducer怎麽用?TypeScript loadingReducer使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了loadingReducer函數的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: switch
export const tokenReducer: Reducer<TokenState> = (
state = INITIAL_STATE,
action: TokenReducerAction
): TokenState => {
switch (action.type) {
case FETCH_TOKENS_REQUEST:
case FETCH_POLLS_REQUEST:
case FETCH_POLL_REQUEST: {
return {
...state,
loading: loadingReducer(state.loading, action)
}
}
case FETCH_TOKENS_SUCCESS: {
return {
loading: loadingReducer(state.loading, action),
error: null,
data: toObjectByKey<Token>(action.payload.tokens, state.data, 'address')
}
}
case FETCH_POLLS_SUCCESS: {
const data = { ...state.data }
for (const poll of action.payload.polls) {
if (poll.token) {
data[poll.token.address] = { ...poll.token }
}
}
return {
loading: loadingReducer(state.loading, action),
error: null,
data
}
}
case FETCH_POLL_SUCCESS: {
const { token } = action.payload
return {
loading: loadingReducer(state.loading, action),
error: null,
data: {
...state.data,
[token.address]: { ...token }
}
}
}
case FETCH_TOKENS_FAILURE:
case FETCH_POLLS_FAILURE:
case FETCH_POLL_FAILURE: {
return {
...state,
loading: loadingReducer(state.loading, action),
error: action.payload.error
}
}
default:
return state
}
}