Files
SCM-Manager/scm-ui/src/repos/containers/Create.js

112 lines
2.6 KiB
JavaScript
Raw Normal View History

2018-08-02 16:09:58 +02:00
// @flow
import React from "react";
import { connect } from "react-redux";
import { translate } from "react-i18next";
import { Page } from "../../components/layout";
import RepositoryForm from "../components/form";
2018-08-02 16:09:58 +02:00
import type { RepositoryType } from "../types/RepositoryTypes";
import {
fetchRepositoryTypesIfNeeded,
getFetchRepositoryTypesFailure,
getRepositoryTypes,
isFetchRepositoryTypesPending
} from "../modules/repository-types";
2018-08-03 08:52:02 +02:00
import {
createRepo,
createRepoReset,
getCreateRepoFailure,
isCreateRepoPending
} from "../modules/repos";
import type { Repository } from "../types/Repositories";
import type { History } from "history";
2018-08-02 16:09:58 +02:00
type Props = {
repositoryTypes: RepositoryType[],
typesLoading: boolean,
2018-08-03 08:52:02 +02:00
createLoading: boolean,
2018-08-02 16:09:58 +02:00
error: Error,
// dispatch functions
fetchRepositoryTypesIfNeeded: () => void,
2018-08-03 08:52:02 +02:00
createRepo: (Repository, callback: () => void) => void,
resetForm: () => void,
2018-08-02 16:09:58 +02:00
// context props
2018-08-03 08:52:02 +02:00
t: string => string,
history: History
2018-08-02 16:09:58 +02:00
};
class Create extends React.Component<Props> {
componentDidMount() {
2018-08-03 08:52:02 +02:00
this.props.resetForm();
2018-08-02 16:09:58 +02:00
this.props.fetchRepositoryTypesIfNeeded();
}
2018-08-03 08:52:02 +02:00
repoCreated = () => {
const { history } = this.props;
history.push("/repos");
};
2018-08-02 16:09:58 +02:00
render() {
2018-08-03 08:52:02 +02:00
const {
typesLoading,
createLoading,
repositoryTypes,
createRepo,
error
} = this.props;
2018-08-02 16:09:58 +02:00
const { t } = this.props;
return (
<Page
title={t("create.title")}
subtitle={t("create.subtitle")}
loading={typesLoading}
error={error}
2018-08-03 08:52:02 +02:00
showContentOnError={true}
2018-08-02 16:09:58 +02:00
>
2018-08-03 08:52:02 +02:00
<RepositoryForm
repositoryTypes={repositoryTypes}
loading={createLoading}
submitForm={repo => {
createRepo(repo, this.repoCreated);
}}
/>
2018-08-02 16:09:58 +02:00
</Page>
);
}
}
const mapStateToProps = state => {
const repositoryTypes = getRepositoryTypes(state);
const typesLoading = isFetchRepositoryTypesPending(state);
2018-08-03 08:52:02 +02:00
const createLoading = isCreateRepoPending(state);
const error =
getFetchRepositoryTypesFailure(state) || getCreateRepoFailure(state);
2018-08-02 16:09:58 +02:00
return {
repositoryTypes,
typesLoading,
2018-08-03 08:52:02 +02:00
createLoading,
2018-08-02 16:09:58 +02:00
error
};
};
const mapDispatchToProps = dispatch => {
return {
fetchRepositoryTypesIfNeeded: () => {
dispatch(fetchRepositoryTypesIfNeeded());
2018-08-03 08:52:02 +02:00
},
createRepo: (repository: Repository, callback: () => void) => {
dispatch(createRepo(repository, callback));
},
resetForm: () => {
dispatch(createRepoReset());
2018-08-02 16:09:58 +02:00
}
};
};
export default connect(
mapStateToProps,
mapDispatchToProps
)(translate("repos")(Create));