2021-05-10 13:22:07 +00:00
|
|
|
import React, { useContext } from "react"
|
|
|
|
import Style from "./PageDashboard.module.css"
|
|
|
|
import classNames from "classnames"
|
|
|
|
import BoxHeader from "../components/base/BoxHeader"
|
|
|
|
import RepositoryEditor from "../components/providers/RepositoryEditor"
|
2021-05-11 14:38:56 +00:00
|
|
|
import useBackendImmediately from "../hooks/useBackendImmediately"
|
2021-05-10 13:22:07 +00:00
|
|
|
import ContextUser from "../contexts/ContextUser"
|
2021-05-11 15:05:38 +00:00
|
|
|
import renderContents from "../utils/renderContents"
|
2021-05-10 13:22:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
export default function PageEdit({ id, className, ...props }) {
|
2021-05-11 14:37:15 +00:00
|
|
|
const { fetchDataAuth } = useContext(ContextUser)
|
2021-05-11 15:05:38 +00:00
|
|
|
const repositoryRequest = useBackendImmediately(fetchDataAuth, "GET", `/api/v1/repositories/${id}`)
|
|
|
|
const contents = renderContents(
|
|
|
|
repositoryRequest,
|
|
|
|
data => <RepositoryEditor className={Style.RepositoryEditor} {...data}/>,
|
|
|
|
)
|
2021-05-10 13:22:07 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={classNames(Style.PageHome, className)} {...props}>
|
|
|
|
<BoxHeader className={Style.Header}>
|
|
|
|
Edit repository
|
|
|
|
</BoxHeader>
|
|
|
|
{contents}
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|