mirror of
https://github.com/harness/drone.git
synced 2025-05-21 11:29:52 +08:00
111 lines
4.2 KiB
TypeScript
111 lines
4.2 KiB
TypeScript
import React, { useState } from 'react'
|
|
import { useMutate } from 'restful-react'
|
|
import { Link, useParams } from 'react-router-dom'
|
|
import { Drawer } from '@blueprintjs/core'
|
|
import { Container, PageHeader, PageBody, Button, Layout, ButtonVariation, Text, useToaster } from '@harnessio/uicore'
|
|
import { Icon } from '@harnessio/icons'
|
|
import { Color } from '@harnessio/design-system'
|
|
import type { OpenapiCommitFilesRequest, RepoCommitFilesResponse } from 'services/code'
|
|
import { useStrings } from 'framework/strings'
|
|
import { useGetSpaceParam } from 'hooks/useGetSpaceParam'
|
|
import MonacoSourceCodeEditor from 'components/SourceCodeEditor/MonacoSourceCodeEditor'
|
|
import { useAppContext } from 'AppContext'
|
|
import type { CODEProps } from 'RouteDefinitions'
|
|
import { getErrorMessage } from 'utils/Utils'
|
|
import pipelineSchema from './schema/pipeline-schema.json'
|
|
|
|
import css from './NewPipeline.module.scss'
|
|
|
|
const NewPipeline = (): JSX.Element => {
|
|
const { routes } = useAppContext()
|
|
const { getString } = useStrings()
|
|
const { pipeline } = useParams<CODEProps>()
|
|
const space = useGetSpaceParam()
|
|
const { showError } = useToaster()
|
|
const [pipelineAsYAML, setPipelineAsYaml] = useState<string>('')
|
|
const [showDrawer, setShowDrawer] = useState<boolean>(false)
|
|
|
|
const { mutate, loading } = useMutate<RepoCommitFilesResponse>({
|
|
verb: 'POST',
|
|
path: `/api/v1/repos/${space}/vb-repo/+/commits`
|
|
})
|
|
|
|
const handleSaveAndRun = (): void => {
|
|
try {
|
|
const data: OpenapiCommitFilesRequest = {
|
|
actions: [{ action: 'CREATE', path: `sample_${new Date().getTime()}.txt`, payload: pipelineAsYAML }],
|
|
branch: 'main',
|
|
new_branch: '',
|
|
title: `Create pipeline ${pipeline}`,
|
|
message: ''
|
|
}
|
|
|
|
mutate(data)
|
|
.then(() => setShowDrawer(true))
|
|
.catch(error => {
|
|
showError(getErrorMessage(error), 0, 'pipelines.failedToSavePipeline')
|
|
})
|
|
} catch (exception) {
|
|
showError(getErrorMessage(exception), 0, 'pipelines.failedToCreatePipeline')
|
|
}
|
|
}
|
|
|
|
return (
|
|
<>
|
|
{showDrawer && (
|
|
<Drawer isOpen={showDrawer} title={getString('pipelines.run')} onClose={() => setShowDrawer(false)}>
|
|
<Layout.Vertical padding="xlarge" flex={{ justifyContent: 'flex-end' }} className={css.drawer}>
|
|
<Layout.Horizontal spacing="medium" flex={{ justifyContent: 'flex-start' }} width="100%">
|
|
<Button variation={ButtonVariation.PRIMARY} text={getString('run')} />
|
|
<Button
|
|
variation={ButtonVariation.SECONDARY}
|
|
text={getString('cancel')}
|
|
onClick={() => setShowDrawer(false)}
|
|
/>
|
|
</Layout.Horizontal>
|
|
</Layout.Vertical>
|
|
</Drawer>
|
|
)}
|
|
<Container className={css.main}>
|
|
<PageHeader
|
|
title={getString('pipelines.editPipeline', { pipeline })}
|
|
breadcrumbs={
|
|
<Container className={css.header}>
|
|
<Layout.Horizontal spacing="small" className={css.breadcrumb}>
|
|
<Link to={routes.toCODEPipelines({ space })}>{getString('pageTitle.pipelines')}</Link>
|
|
<Icon name="main-chevron-right" size={8} color={Color.GREY_500} />
|
|
<Text font={{ size: 'small' }}>{pipeline}</Text>
|
|
</Layout.Horizontal>
|
|
</Container>
|
|
}
|
|
content={
|
|
<Layout.Horizontal flex={{ justifyContent: 'space-between' }}>
|
|
<Button
|
|
variation={ButtonVariation.PRIMARY}
|
|
text={getString('pipelines.saveAndRun')}
|
|
onClick={handleSaveAndRun}
|
|
disabled={loading}
|
|
/>
|
|
</Layout.Horizontal>
|
|
}
|
|
/>
|
|
<PageBody>
|
|
<Container className={css.editorContainer}>
|
|
<MonacoSourceCodeEditor
|
|
language={'yaml'}
|
|
schema={pipelineSchema}
|
|
source={
|
|
'stages:\n- type: ci\n spec:\n steps:\n - type: script\n spec:\n run: echo hello world'
|
|
}
|
|
onChange={(value: string) => setPipelineAsYaml(value)}
|
|
autoHeight
|
|
/>
|
|
</Container>
|
|
</PageBody>
|
|
</Container>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default NewPipeline
|