mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 03:37:56 +01:00
65 lines
2.3 KiB
TypeScript
65 lines
2.3 KiB
TypeScript
import { connect } from "react-redux";
|
|
import { deleteOAuth } from "../actions/OAuth/deleteOAuth";
|
|
import { requestOAuths } from "../actions/OAuth/requestOAuths";
|
|
import { submitOAuth } from "../actions/OAuth/submitOAuth";
|
|
import { updateOAuth } from "../actions/OAuth/updateOAuth";
|
|
|
|
import AuthenticationSiteSettingsP from "../components/SiteSettings/Authentication/AuthenticationSiteSettingsP";
|
|
import { ISiteSettingsOAuthForm } from "../components/SiteSettings/Authentication/OAuthForm";
|
|
import { IOAuth } from "../interfaces/IOAuth";
|
|
import { State } from "../reducers/rootReducer";
|
|
import { updateDefaultOAuth } from "../actions/OAuth/updateDefaultOAuth";
|
|
import { TenantSettingEmailRegistrationPolicy } from "../interfaces/ITenantSetting";
|
|
import { updateTenant } from "../actions/Tenant/updateTenant";
|
|
|
|
const mapStateToProps = (state: State) => ({
|
|
oAuths: state.oAuths,
|
|
|
|
isSubmitting: state.siteSettings.authentication.isSubmitting,
|
|
submitError: state.siteSettings.authentication.error,
|
|
});
|
|
|
|
const mapDispatchToProps = (dispatch: any) => ({
|
|
requestOAuths() {
|
|
dispatch(requestOAuths());
|
|
},
|
|
|
|
onSubmitOAuth(oAuth: IOAuth, authenticityToken: string): Promise<any> {
|
|
return dispatch(submitOAuth(oAuth, authenticityToken));
|
|
},
|
|
|
|
onUpdateOAuth(id: number, form: ISiteSettingsOAuthForm, authenticityToken: string): Promise<any> {
|
|
return dispatch(updateOAuth({id, form, authenticityToken}));
|
|
},
|
|
|
|
onToggleEnabledOAuth(id: number, isEnabled: boolean, authenticityToken: string) {
|
|
dispatch(updateOAuth({id, isEnabled, authenticityToken}));
|
|
},
|
|
|
|
onToggleEnabledDefaultOAuth(id: number, isEnabled: boolean, authenticityToken: string) {
|
|
dispatch(updateDefaultOAuth({id, isEnabled, authenticityToken}));
|
|
},
|
|
|
|
onDeleteOAuth(id: number, authenticityToken: string) {
|
|
dispatch(deleteOAuth(id, authenticityToken));
|
|
},
|
|
|
|
onUpdateTenantSettings(
|
|
emailRegistrationPolicy: TenantSettingEmailRegistrationPolicy,
|
|
allowedEmailDomains: string,
|
|
authenticityToken: string,
|
|
): Promise<any> {
|
|
return dispatch(updateTenant({
|
|
tenantSetting: {
|
|
email_registration_policy: emailRegistrationPolicy,
|
|
allowed_email_domains: allowedEmailDomains,
|
|
},
|
|
authenticityToken,
|
|
}));
|
|
},
|
|
});
|
|
|
|
export default connect(
|
|
mapStateToProps,
|
|
mapDispatchToProps,
|
|
)(AuthenticationSiteSettingsP); |