mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 11:47:56 +01:00
44 lines
1.6 KiB
TypeScript
44 lines
1.6 KiB
TypeScript
import { connect } from "react-redux";
|
|
|
|
import WebhooksSiteSettingsP from "../components/SiteSettings/Webhooks/WebhooksSiteSettingsP";
|
|
import { State } from "../reducers/rootReducer";
|
|
import { requestWebhooks } from "../actions/Webhook/requestWebhooks";
|
|
import { IWebhook } from "../interfaces/IWebhook";
|
|
import { submitWebhook } from "../actions/Webhook/submitWebhook";
|
|
import { deleteWebhook } from "../actions/Webhook/deleteWebhook";
|
|
import { ISiteSettingsWebhookFormUpdate } from "../components/SiteSettings/Webhooks/WebhookForm";
|
|
import { updateWebhook } from "../actions/Webhook/updateWebhook";
|
|
|
|
const mapStateToProps = (state: State) => ({
|
|
webhooks: state.webhooks,
|
|
|
|
isSubmitting: state.siteSettings.webhooks.isSubmitting,
|
|
submitError: state.siteSettings.webhooks.error,
|
|
});
|
|
|
|
const mapDispatchToProps = (dispatch: any) => ({
|
|
requestWebhooks() {
|
|
dispatch(requestWebhooks());
|
|
},
|
|
|
|
onSubmitWebhook(webhook: IWebhook, authenticityToken: string): Promise<any> {
|
|
return dispatch(submitWebhook(webhook, authenticityToken));
|
|
},
|
|
|
|
onUpdateWebhook(id: number, form: ISiteSettingsWebhookFormUpdate, authenticityToken: string): Promise<any> {
|
|
return dispatch(updateWebhook({id, form, authenticityToken}));
|
|
},
|
|
|
|
onToggleEnabledWebhook(id: number, isEnabled: boolean, authenticityToken: string): Promise<any> {
|
|
return dispatch(updateWebhook({id, isEnabled, authenticityToken}));
|
|
},
|
|
|
|
onDeleteWebhook(id: number, authenticityToken: string) {
|
|
dispatch(deleteWebhook(id, authenticityToken));
|
|
}
|
|
});
|
|
|
|
export default connect(
|
|
mapStateToProps,
|
|
mapDispatchToProps,
|
|
)(WebhooksSiteSettingsP); |