mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-08 06:25:45 +01:00
71 lines
2.2 KiB
TypeScript
71 lines
2.2 KiB
TypeScript
import React from "react";
|
|
import { connect } from "react-redux";
|
|
import { compose } from "redux";
|
|
import { WithTranslation, withTranslation } from "react-i18next";
|
|
import { History } from "history";
|
|
import { RepositoryRole } from "@scm-manager/ui-types";
|
|
import { ErrorNotification, Subtitle, Title } from "@scm-manager/ui-components";
|
|
import { createRole, getCreateRoleFailure, getFetchVerbsFailure, isFetchVerbsPending } from "../modules/roles";
|
|
import { getRepositoryRolesLink, getRepositoryVerbsLink } from "../../../modules/indexResource";
|
|
import RepositoryRoleForm from "./RepositoryRoleForm";
|
|
|
|
type Props = WithTranslation & {
|
|
repositoryRolesLink: string;
|
|
error?: Error;
|
|
history: History;
|
|
|
|
// dispatch function
|
|
addRole: (link: string, role: RepositoryRole, callback?: () => void) => void;
|
|
};
|
|
|
|
class CreateRepositoryRole extends React.Component<Props> {
|
|
repositoryRoleCreated = (role: RepositoryRole) => {
|
|
const { history } = this.props;
|
|
history.push("/admin/role/" + role.name + "/info");
|
|
};
|
|
|
|
createRepositoryRole = (role: RepositoryRole) => {
|
|
this.props.addRole(this.props.repositoryRolesLink, role, () => this.repositoryRoleCreated(role));
|
|
};
|
|
|
|
render() {
|
|
const { t, error } = this.props;
|
|
|
|
if (error) {
|
|
return <ErrorNotification error={error} />;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Title title={t("repositoryRole.title")} />
|
|
<Subtitle subtitle={t("repositoryRole.createSubtitle")} />
|
|
<RepositoryRoleForm submitForm={(role: RepositoryRole) => this.createRepositoryRole(role)} />
|
|
</>
|
|
);
|
|
}
|
|
}
|
|
|
|
const mapStateToProps = (state: any) => {
|
|
const loading = isFetchVerbsPending(state);
|
|
const error = getFetchVerbsFailure(state) || getCreateRoleFailure(state);
|
|
const verbsLink = getRepositoryVerbsLink(state);
|
|
const repositoryRolesLink = getRepositoryRolesLink(state);
|
|
|
|
return {
|
|
loading,
|
|
error,
|
|
verbsLink,
|
|
repositoryRolesLink
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch: any) => {
|
|
return {
|
|
addRole: (link: string, role: RepositoryRole, callback?: () => void) => {
|
|
dispatch(createRole(link, role, callback));
|
|
}
|
|
};
|
|
};
|
|
|
|
export default compose(connect(mapStateToProps, mapDispatchToProps), withTranslation("admin"))(CreateRepositoryRole);
|