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


TypeScript redux.bindActionCreators函数代码示例

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


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

示例1: bindActionCreators

const mapDispatchToProps = (dispatch: any, ownProps: any) => {
    return {
        sendLoginDetailsToServer: bindActionCreators(actions().sendLoginDetailsToServer, dispatch),
        sendSignupDetailsToServer: bindActionCreators(actions().sendSignupDetailsToServer, dispatch)

    }
}
开发者ID:mortonprod,项目名称:CleaningWebsite,代码行数:7,代码来源:index.ts

示例2: bindActionCreators

const getActions = () => {
  if (actions) {
    return actions
  }
  actions = bindActionCreators(newTabActions, store.dispatch.bind(store))
  return actions
}
开发者ID:Snuupy,项目名称:brave-core,代码行数:7,代码来源:api.ts

示例3: bindActionCreators

export const mapDispatchToProps = (dispatch) => bindActionCreators({
	onAvatarChange: CurrentUserActions.uploadAvatar,
	onUserDataChange: CurrentUserActions.updateUser,
	onPasswordChange: CurrentUserActions.updateUserPassword,
	onGenerateApiKey: CurrentUserActions.generateApiKey,
	onDeleteApiKey: CurrentUserActions.deleteApiKey
}, dispatch);
开发者ID:3drepo,项目名称:3drepo.io,代码行数:7,代码来源:profile.container.ts

示例4: bindActionCreators

export const mapDispatchToProps = (dispatch) => bindActionCreators({
	fetchMetadata: BimActions.fetchMetadata,
	setComponentState: BimActions.setComponentState,
	clearStarredMetadata: StarredMetaActions.clearStarredMeta,
	addMetaRecordToStarred: StarredMetaActions.addToStarredMeta,
	removeMetaRecordFromStarred: StarredMetaActions.removeFromStarredMeta,
	showConfirmDialog: DialogActions.showConfirmDialog
}, dispatch);
开发者ID:3drepo,项目名称:3drepo.io,代码行数:8,代码来源:bim.container.ts

示例5: mapDispatchToThis

 mapDispatchToThis(dispatch)  {
   return bindActionCreators({
       increment: CounterActions.increment,
       decrement: CounterActions.decrement,
       incrementIfOdd: CounterActions.incrementIfOdd,
       incrementAsync: CounterActions.incrementAsync
   }, dispatch);
 }
开发者ID:aptogo,项目名称:angular2-webpack-starter,代码行数:8,代码来源:app.ts

示例6: bindActionCreators

export const mapDispatchToProps = (dispatch) =>
	bindActionCreators(
		{
			fetchQuotaInfo: CurrentUserActions.fetchQuotaInfo,
			fetchBillingData: BillingActions.fetchBillingData,
			changeSubscription: BillingActions.changeSubscription
		},
		dispatch
	);
开发者ID:3drepo,项目名称:3drepo.io,代码行数:9,代码来源:subscription.container.ts

示例7: bindActionCreators

export const mapDispatchToProps = (dispatch) => bindActionCreators({
	addUser: UserManagementActions.addUser,
	removeUser: UserManagementActions.removeUser,
	updateJob: UserManagementActions.updateJob,
	updatePermissions: UserManagementActions.updatePermissions,
	onUsersSearch: UserManagementActions.getUsersSuggestions,
	clearUsersSuggestions: UserManagementActions.clearUsersSuggestions,
	fetchQuotaInfo: TeamspacesActions.fetchQuotaInfo
}, dispatch);
开发者ID:3drepo,项目名称:3drepo.io,代码行数:9,代码来源:users.container.ts

示例8: bindActionCreators

 dispatch => ({
   nodeBalancerConfigActions: bindActionCreators(
     {
       getAllNodeBalancerConfigs,
       createNodeBalancerConfig,
       updateNodeBalancerConfig,
       deleteNodeBalancerConfig
     },
     dispatch
   )
 })
开发者ID:linode,项目名称:manager,代码行数:11,代码来源:nodeBalancerConfig.containers.ts

示例9: bindActionCreators

export const mapDispatchToProps = (dispatch) => bindActionCreators({
	sendGetNotifications: NotificationsActions.sendGetNotifications,
	sendUpdateNotificationRead: NotificationsActions.sendUpdateNotificationRead,
	sendUpdateAllNotificationsRead: NotificationsActions.sendUpdateAllNotificationsRead,
	sendDeleteNotification: NotificationsActions.sendDeleteNotification,
	confirmSendDeleteAllNotifications: NotificationsActions.confirmSendDeleteAllNotifications,
	upsertNotification: NotificationsActions.upsertNotification,
	deleteNotification: NotificationsActions.deleteNotification,
	showUpdatedFailedError: NotificationsActions.showUpdatedFailedError,
	setDrawerPanelState: NotificationsActions.setDrawerPanelState
}, dispatch);
开发者ID:3drepo,项目名称:3drepo.io,代码行数:11,代码来源:notifications.container.ts

示例10: bindActionCreators

 dispatch => ({
   nodeBalancerActions: bindActionCreators(
     {
       getAllNodeBalancersWithConfigs,
       getAllNodeBalancers,
       createNodeBalancer,
       deleteNodeBalancer,
       updateNodeBalancer,
     },
     dispatch,
   ),
 }),
开发者ID:displague,项目名称:manager,代码行数:12,代码来源:nodeBalancer.containers.ts


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