Compare commits

..

4 Commits

Author SHA1 Message Date
Ivan Li
4cf3b61da7 feat(projects): edit page header and delete button. 2021-05-05 14:28:56 +08:00
Ivan Li
b1e84709db feat(projects): edit entrance. 2021-05-05 13:26:39 +08:00
Ivan Li
93482bec3f feat(projects, pipeline): project detail page. 2021-05-05 11:21:48 +08:00
Ivan Li
ebc3d3a3aa build(deps): clean up. 2021-05-04 22:10:05 +08:00
14 changed files with 7429 additions and 7405 deletions

View File

@ -644,7 +644,7 @@
"deprecationReason": null "deprecationReason": null
}, },
{ {
"name": "modifyPipeline", "name": "updatePipeline",
"description": null, "description": null,
"args": [ "args": [
{ {
@ -662,22 +662,6 @@
"defaultValue": null, "defaultValue": null,
"isDeprecated": false, "isDeprecated": false,
"deprecationReason": null "deprecationReason": null
},
{
"name": "id",
"description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
"name": "String",
"ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
} }
], ],
"type": { "type": {
@ -1427,7 +1411,7 @@
"deprecationReason": null "deprecationReason": null
}, },
{ {
"name": "listPipelines", "name": "pipelines",
"description": null, "description": null,
"args": [ "args": [
{ {
@ -1464,7 +1448,7 @@
"deprecationReason": null "deprecationReason": null
}, },
{ {
"name": "findPipeline", "name": "pipeline",
"description": null, "description": null,
"args": [ "args": [
{ {
@ -1790,6 +1774,22 @@
"defaultValue": null, "defaultValue": null,
"isDeprecated": false, "isDeprecated": false,
"deprecationReason": null "deprecationReason": null
},
{
"name": "id",
"description": null,
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
"name": "String",
"ofType": null
}
},
"defaultValue": null,
"isDeprecated": false,
"deprecationReason": null
} }
], ],
"interfaces": null, "interfaces": null,

14296
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -25,6 +25,8 @@
"formik-material-ui": "^3.0.1", "formik-material-ui": "^3.0.1",
"formik-material-ui-pickers": "^0.0.12", "formik-material-ui-pickers": "^0.0.12",
"graphql": "^15.5.0", "graphql": "^15.5.0",
"material-ui-confirm": "^2.1.2",
"notistack": "^1.0.6",
"ramda": "^0.27.1", "ramda": "^0.27.1",
"react": "^17.0.2", "react": "^17.0.2",
"react-dom": "^17.0.2", "react-dom": "^17.0.2",
@ -66,15 +68,9 @@
"@graphql-codegen/typescript": "1.21.1", "@graphql-codegen/typescript": "1.21.1",
"@graphql-codegen/typescript-operations": "1.17.15", "@graphql-codegen/typescript-operations": "1.17.15",
"@graphql-codegen/typescript-react-apollo": "2.2.3", "@graphql-codegen/typescript-react-apollo": "2.2.3",
"@types/autoprefixer": "^10.2.0",
"@types/graphql": "^14.5.0",
"@types/ramda": "^0.27.40", "@types/ramda": "^0.27.40",
"@types/sass": "^1.16.0",
"@types/tailwindcss": "^2.0.2",
"@types/yup": "^0.29.11", "@types/yup": "^0.29.11",
"autoprefixer": "^9.8.6", "autoprefixer": "^9.8.6",
"postcss": "^7.0.35", "postcss": "^7.0.35"
"sass": "^1.32.11",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.1.2"
} }
} }

View File

@ -66,7 +66,7 @@ export type Mutation = {
updateProject: Project; updateProject: Project;
removeProject: Scalars['Float']; removeProject: Scalars['Float'];
createPipeline: Pipeline; createPipeline: Pipeline;
modifyPipeline: Pipeline; updatePipeline: Pipeline;
deletePipeline: Scalars['Float']; deletePipeline: Scalars['Float'];
createPipelineTask: PipelineTask; createPipelineTask: PipelineTask;
}; };
@ -92,9 +92,8 @@ export type MutationCreatePipelineArgs = {
}; };
export type MutationModifyPipelineArgs = { export type MutationUpdatePipelineArgs = {
Pipeline: UpdatePipelineInput; Pipeline: UpdatePipelineInput;
id: Scalars['String'];
}; };
@ -171,8 +170,8 @@ export type Query = {
hello: Hello; hello: Hello;
projects: Array<Project>; projects: Array<Project>;
project: Project; project: Project;
listPipelines: Array<Pipeline>; pipelines: Array<Pipeline>;
findPipeline: Pipeline; pipeline: Pipeline;
listPipelineTaskByPipelineId: Array<PipelineTask>; listPipelineTaskByPipelineId: Array<PipelineTask>;
findPipelineTask: PipelineTask; findPipelineTask: PipelineTask;
}; };
@ -183,12 +182,12 @@ export type QueryProjectArgs = {
}; };
export type QueryListPipelinesArgs = { export type QueryPipelinesArgs = {
projectId?: Maybe<Scalars['String']>; projectId?: Maybe<Scalars['String']>;
}; };
export type QueryFindPipelineArgs = { export type QueryPipelineArgs = {
id: Scalars['String']; id: Scalars['String'];
}; };
@ -237,6 +236,7 @@ export type UpdatePipelineInput = {
branch: Scalars['String']; branch: Scalars['String'];
name: Scalars['String']; name: Scalars['String'];
workUnitMetadata: WorkUnitMetadataInput; workUnitMetadata: WorkUnitMetadataInput;
id: Scalars['String'];
}; };
export type UpdateProjectInput = { export type UpdateProjectInput = {

View File

@ -13,6 +13,8 @@ import { createRouterComponent } from "@curi/react-dom";
import { createRouter, announce } from "@curi/router"; import { createRouter, announce } from "@curi/router";
import { browser } from "@hickory/browser"; import { browser } from "@hickory/browser";
import routes from "./routes"; import routes from "./routes";
import { ConfirmProvider } from 'material-ui-confirm';
import { SnackbarProvider } from 'notistack';
const router = createRouter(browser, routes, { const router = createRouter(browser, routes, {
sideEffects: [ sideEffects: [
@ -27,6 +29,8 @@ const Router = createRouterComponent(router);
router.once(() => { router.once(() => {
ReactDOM.render( ReactDOM.render(
<React.StrictMode> <React.StrictMode>
<ConfirmProvider>
<SnackbarProvider maxSnack={5}>
<ApolloProvider client={client}> <ApolloProvider client={client}>
<MuiPickersUtilsProvider utils={DateFnsUtils} locale={zhLocale}> <MuiPickersUtilsProvider utils={DateFnsUtils} locale={zhLocale}>
<Router> <Router>
@ -34,6 +38,8 @@ router.once(() => {
</Router> </Router>
</MuiPickersUtilsProvider> </MuiPickersUtilsProvider>
</ApolloProvider> </ApolloProvider>
</SnackbarProvider>
</ConfirmProvider>
</React.StrictMode>, </React.StrictMode>,
document.getElementById("root") document.getElementById("root")
); );

View File

@ -1,4 +1,4 @@
import React, { FC } from "react"; import React, { FC, useCallback, useRef, useState } from "react";
import clsx from "clsx"; import clsx from "clsx";
import { import {
createStyles, createStyles,
@ -16,13 +16,15 @@ import IconButton from "@material-ui/core/IconButton";
import MenuIcon from "@material-ui/icons/Menu"; import MenuIcon from "@material-ui/icons/Menu";
import ChevronLeftIcon from "@material-ui/icons/ChevronLeft"; import ChevronLeftIcon from "@material-ui/icons/ChevronLeft";
import ChevronRightIcon from "@material-ui/icons/ChevronRight"; import ChevronRightIcon from "@material-ui/icons/ChevronRight";
import { ProjectPanel } from '../projects/project-panel'; import { ProjectPanel } from "../projects/project-panel";
import { HeaderContainerProvider } from "./header-container";
const drawerWidth = 240; const drawerWidth = 240;
const useStyles = makeStyles((theme: Theme) => const useStyles = makeStyles((theme: Theme) =>
createStyles({ createStyles({
root: { root: {
display: "flex", display: "flex",
overflow: "hidden",
}, },
appBar: { appBar: {
zIndex: theme.zIndex.drawer + 1, zIndex: theme.zIndex.drawer + 1,
@ -70,17 +72,24 @@ const useStyles = makeStyles((theme: Theme) =>
alignItems: "center", alignItems: "center",
justifyContent: "flex-end", justifyContent: "flex-end",
padding: theme.spacing(0, 1), padding: theme.spacing(0, 1),
flex: "none",
// necessary for content to be below app bar // necessary for content to be below app bar
...theme.mixins.toolbar, ...theme.mixins.toolbar,
}, },
headerContaner: {
flex: "auto",
},
content: { content: {
flexGrow: 1, flexGrow: 1,
padding: theme.spacing(3), height: "100vh",
display: "flex",
flexFlow: "column",
padding: theme.spacing(0),
}, },
}) })
); );
export const DefaultLayout: FC = ({children}) => { export const DefaultLayout: FC = ({ children }) => {
const classes = useStyles(); const classes = useStyles();
const theme = useTheme(); const theme = useTheme();
const [open, setOpen] = React.useState(true); const [open, setOpen] = React.useState(true);
@ -93,6 +102,14 @@ export const DefaultLayout: FC = ({children}) => {
setOpen(false); setOpen(false);
}; };
const [headerContainer, setHeaderContainer] = useState(undefined);
const onRefChange = useCallback(
(node) => {
setHeaderContainer(node);
},
[setHeaderContainer]
);
return ( return (
<div className={classes.root}> <div className={classes.root}>
<CssBaseline /> <CssBaseline />
@ -114,9 +131,7 @@ export const DefaultLayout: FC = ({children}) => {
> >
<MenuIcon /> <MenuIcon />
</IconButton> </IconButton>
<Typography variant="h6" noWrap> <div className={classes.headerContaner} ref={onRefChange}></div>
Mini variant drawer
</Typography>
</Toolbar> </Toolbar>
</AppBar> </AppBar>
<Drawer <Drawer
@ -147,8 +162,11 @@ export const DefaultLayout: FC = ({children}) => {
</Drawer> </Drawer>
<main className={classes.content}> <main className={classes.content}>
<div className={classes.toolbar} /> <div className={classes.toolbar} />
{ children }
<HeaderContainerProvider value={headerContainer}>
{children}
</HeaderContainerProvider>
</main> </main>
</div> </div>
); );
} };

View File

@ -0,0 +1,7 @@
import { createContext, useContext } from 'react';
const Context = createContext<HTMLElement| undefined>(undefined);
export const HeaderContainerProvider = Context.Provider;
export const useHeaderContainer = () => useContext(Context);

View File

@ -1 +1,2 @@
export * from './default'; export * from './default';
export * from './header-container';

View File

@ -0,0 +1,57 @@
import { gql, useQuery } from '@apollo/client';
import { Link } from '@curi/react-dom';
import { List, ListItem, Typography, ListItemText } from '@material-ui/core';
import { FC } from 'react';
import { Pipeline } from '../generated/graphql';
import { Fragment } from 'react';
import { CallMerge } from '@material-ui/icons';
interface Props {
projectId: string;
}
const PIPELINES = gql`
query Pipelines($projectId: String!) {
pipelines(projectId: $projectId) {
id
name
branch
}
}
`
export const PipelineList: FC<Props> = ({ projectId }) => {
const {data, loading} = useQuery<{pipelines: Pipeline[]}, {projectId: string}>(PIPELINES, {
variables: {projectId}
})
return (
<List>
{data?.pipelines.map((pipeline) => (
<Link
name="pipeline-details"
params={{ pipelineId: pipeline.id }}
key={pipeline.id}
>
<Item pipeline={pipeline} />
</Link>
))}
</List>
);
}
const Item = ({pipeline}: {pipeline: Pipeline}) => {
return (
<ListItem button>
<ListItemText
primary={pipeline.name}
secondary={
<Typography component="span" variant="body2" color="textSecondary">
<CallMerge fontSize="small" />
{pipeline.branch}
</Typography>
}
/>
</ListItem>
);
}

4
src/projects/index.ts Normal file
View File

@ -0,0 +1,4 @@
export * from './project-detail';
export * from './project-panel';
export * from './project-editor';
export * from './queries';

View File

@ -0,0 +1,71 @@
import { Project } from "../generated/graphql";
import React, { FC, Fragment } from "react";
import { IconButton, Grid, makeStyles, Paper, Portal, Typography } from "@material-ui/core";
import { useHeaderContainer } from "../layouts";
import { PipelineList } from "../pipelines/pipeline-list";
import { Edit } from '@material-ui/icons';
import { Link } from '@curi/react-dom';
interface Props {
project: Project;
}
const useStyles = makeStyles(() => ({
root: {
height: "100%",
flex: "auto",
overflow: "hidden"
},
pipelineListContainer: {
height: "100%",
width: "100%",
overflow: "auto"
},
}));
export const ProjectDetail: FC<Props> = ({ project }) => {
const headerContainer = useHeaderContainer();
const classes = useStyles();
return (
<Fragment>
<Portal container={headerContainer}>
<Grid
container
spacing={3}
direction="row"
justify="space-between"
alignItems="center"
>
<Grid item>
<Typography component="h1" variant="h6" noWrap>
{project.name}
</Typography>
<Typography variant="subtitle2" gutterBottom noWrap>
{project.comment}
</Typography>
</Grid>
<Grid item>
<Link name="edit-project" params={{ projectId: project.id }}>
<IconButton color="inherit">{<Edit />}</IconButton>
</Link>
</Grid>
</Grid>
</Portal>
<Grid
container
spacing={1}
direction="row"
alignItems="stretch"
className={classes.root}
>
<Grid item xs={3} style={{ height: "100%", display: "flex" }}>
<Paper className={classes.pipelineListContainer}>
<PipelineList projectId={project.id} />
</Paper>
</Grid>
</Grid>
</Fragment>
);
};

View File

@ -1,16 +1,25 @@
import { gql, useMutation } from "@apollo/client"; import { gql, Reference, useMutation } from "@apollo/client";
import { Button, LinearProgress, makeStyles, Paper } from "@material-ui/core"; import {
Button,
LinearProgress,
makeStyles,
Paper,
Portal,
Typography,
Grid,
IconButton,
} from "@material-ui/core";
import { Form, Formik, Field, FormikHelpers } from "formik"; import { Form, Formik, Field, FormikHelpers } from "formik";
import { TextField } from "formik-material-ui"; import { TextField } from "formik-material-ui";
import { not } from "ramda"; import { not } from "ramda";
import React, { FC } from "react"; import { FC } from "react";
import { import { Project } from "../generated/graphql";
CreateProjectInput,
UpdateProjectInput,
Project,
} from "../generated/graphql";
import * as Yup from "yup"; import * as Yup from "yup";
import { useRouter } from "@curi/react-dom"; import { useRouter } from "@curi/react-dom";
import { useHeaderContainer } from "../layouts";
import DeleteIcon from "@material-ui/icons/Delete";
import { useConfirm } from "material-ui-confirm";
import { useSnackbar } from "notistack";
type Values = Partial<Project>; type Values = Partial<Project>;
@ -53,6 +62,12 @@ const UPDATE_PROJECT = gql`
} }
`; `;
const REMOVE_PROJECT = gql`
mutation RemoveProject($id: String!) {
removeProject(id: $id)
}
`;
export const ProjectEditor: FC<Props> = ({ project }) => { export const ProjectEditor: FC<Props> = ({ project }) => {
const isCreate = not("id" in project); const isCreate = not("id" in project);
@ -62,7 +77,7 @@ export const ProjectEditor: FC<Props> = ({ project }) => {
update(cache, { data }) { update(cache, { data }) {
cache.modify({ cache.modify({
fields: { fields: {
findProjects(exitingProjects = []) { projects(exitingProjects = []) {
const newProjectRef = cache.writeFragment({ const newProjectRef = cache.writeFragment({
data: data!.createProject, data: data!.createProject,
fragment: gql` fragment: gql`
@ -86,6 +101,9 @@ export const ProjectEditor: FC<Props> = ({ project }) => {
const [updateProject] = useMutation(UPDATE_PROJECT); const [updateProject] = useMutation(UPDATE_PROJECT);
const router = useRouter(); const router = useRouter();
const { enqueueSnackbar } = useSnackbar();
const submitForm = async ( const submitForm = async (
values: Values, values: Values,
formikHelpers: FormikHelpers<Values> formikHelpers: FormikHelpers<Values>
@ -106,6 +124,9 @@ export const ProjectEditor: FC<Props> = ({ project }) => {
}, },
}); });
} }
enqueueSnackbar("Saved successfully", {
variant: "success",
});
router.navigate({ router.navigate({
url: router.url({ url: router.url({
name: "project-detail", name: "project-detail",
@ -120,9 +141,58 @@ export const ProjectEditor: FC<Props> = ({ project }) => {
} }
}; };
const [removeProject, { loading: deleting }] = useMutation(REMOVE_PROJECT, {
variables: { id: project.id },
update(cache) {
cache.modify({
fields: {
projects(exitingProjects: Reference[] = [], { readField }) {
return exitingProjects.filter(
(ref) => project.id !== readField("id", ref)
);
},
},
});
},
});
const confirm = useConfirm();
const handleDelete = async () => {
try {
await confirm({ description: `This will delete ${project.name}.` });
await removeProject();
enqueueSnackbar("Deleted successfully", {
variant: "success",
});
router.navigate({
url: router.url({
name: "dashboard",
}),
});
} catch {}
};
const headerContainer = useHeaderContainer();
const classes = useStyles(); const classes = useStyles();
return ( return (
<Paper className={classes.root}> <Paper className={classes.root}>
<Portal container={headerContainer}>
<Grid container justify="space-between" alignItems="center">
<Typography variant="h6" component="h1">
{isCreate ? "Create" : "Edit"} Project
</Typography>
{isCreate ? null : (
<IconButton
color="inherit"
onClick={handleDelete}
disabled={deleting}
>
<DeleteIcon />
</IconButton>
)}
</Grid>
</Portal>
<Formik <Formik
initialValues={project} initialValues={project}
validationSchema={Yup.object({ validationSchema={Yup.object({

View File

@ -1,7 +1,6 @@
import { gql, useQuery } from '@apollo/client'; import { gql, useQuery } from '@apollo/client';
import { Link, useRouter } from '@curi/react-dom'; import { Link, useRouter } from '@curi/react-dom';
import { Box, List, ListItem } from '@material-ui/core'; import { Box, List, ListItem } from '@material-ui/core';
import { makeStyles, Theme, createStyles } from '@material-ui/core';
import { find, propEq } from 'ramda'; import { find, propEq } from 'ramda';
import React, { useState, FC, useEffect } from 'react'; import React, { useState, FC, useEffect } from 'react';
import { Project } from '../generated/graphql'; import { Project } from '../generated/graphql';
@ -22,12 +21,6 @@ const PROJECTS = gql`
} }
`; `;
const useStyles = makeStyles((theme: Theme) =>
createStyles({
})
);
export function ProjectPanel() { export function ProjectPanel() {
return ( return (
<section> <section>
@ -68,7 +61,7 @@ const ProjectList: FC<{}> = () => {
const items = projects?.map((item) => ( const items = projects?.map((item) => (
<Link <Link
name="edit-project" name="project-detail"
params={{ projectId: item.id }} params={{ projectId: item.id }}
key={item.id} key={item.id}
onNav={() => setCurrentProject(item)} onNav={() => setCurrentProject(item)}

View File

@ -1,9 +1,9 @@
import { ApolloClient, InMemoryCache } from "@apollo/client"; import { ApolloClient, InMemoryCache } from "@apollo/client";
import { prepareRoutes } from "@curi/router"; import { prepareRoutes } from "@curi/router";
import { omit } from 'ramda'; import { omit } from 'ramda';
import React from 'react';
import { CreateProjectInput, Project } from './generated/graphql'; import { CreateProjectInput, Project } from './generated/graphql';
import { ProjectEditor } from './projects/project-editor'; import { ProjectDetail, ProjectEditor, PROJECT } from "./projects";
import { PROJECT } from './projects/queries';
export default prepareRoutes([ export default prepareRoutes([
{ {
@ -30,7 +30,10 @@ export default prepareRoutes([
{ {
name: "edit-project", name: "edit-project",
path: "projects/:projectId/edit", path: "projects/:projectId/edit",
async resolve(matched, { client }: { client: ApolloClient<InMemoryCache> }) { async resolve(
matched,
{ client }: { client: ApolloClient<InMemoryCache> }
) {
const { data } = await client.query<{ project: Project }>({ const { data } = await client.query<{ project: Project }>({
query: PROJECT, query: PROJECT,
variables: { id: matched?.params.projectId }, variables: { id: matched?.params.projectId },
@ -48,14 +51,22 @@ export default prepareRoutes([
{ {
name: "project-detail", name: "project-detail",
path: "projects/:projectId", path: "projects/:projectId",
resolve() { async resolve(
const body = import( matched,
/* webpackChunkName: "article-editor" */ "./projects/project-panel" { client }: { client: ApolloClient<InMemoryCache> }
).then((m) => m.ProjectPanel); ) {
return body; const { data } = await client.query<{ project: Project }>({
query: PROJECT,
variables: { id: matched?.params.projectId },
});
return {
body: () => (
<ProjectDetail project={omit(["__typename"], data.project)} />
),
};
}, },
respond({ resolved }) { respond({ resolved }) {
return { body: resolved }; return resolved;
}, },
}, },
]); ]);