mirror of
https://github.com/harness/drone.git
synced 2025-05-05 23:42:57 +00:00
181 lines
6.7 KiB
TypeScript
181 lines
6.7 KiB
TypeScript
import React, { ChangeEvent, useCallback, useEffect, useMemo, useRef, useState } from 'react'
|
|
import { Button, ButtonVariation, Color, Container, FlexExpander, Icon, Layout, Text, TextInput } from '@harness/uicore'
|
|
import { Link, useHistory } from 'react-router-dom'
|
|
import ReactJoin from 'react-join'
|
|
import cx from 'classnames'
|
|
import { SourceCodeEditor } from 'components/SourceCodeEditor/SourceCodeEditor'
|
|
import type { RepoFileContent } from 'services/code'
|
|
import { useAppContext } from 'AppContext'
|
|
import { GitInfoProps, isDir } from 'utils/GitUtils'
|
|
import { useStrings } from 'framework/strings'
|
|
import { filenameToLanguage, FILE_SEPERATOR } from 'utils/Utils'
|
|
import { CommitModalButton } from 'components/CommitModalButton/CommitModalButton'
|
|
import css from './FileEditor.module.scss'
|
|
|
|
const PathSeparator = () => <Text color={Color.GREY_900}>/</Text>
|
|
|
|
function Editor({
|
|
resourceContent,
|
|
repoMetadata,
|
|
gitRef,
|
|
resourcePath
|
|
}: Pick<GitInfoProps, 'repoMetadata' | 'gitRef' | 'resourcePath' | 'resourceContent'>) {
|
|
const history = useHistory()
|
|
const inputRef = useRef<HTMLInputElement | null>()
|
|
const isNew = useMemo(() => isDir(resourceContent), [resourceContent])
|
|
const [fileName, setFileName] = useState(isNew ? '' : (resourceContent.name as string))
|
|
const [parentPath, setParentPath] = useState(
|
|
isNew ? resourcePath : resourcePath.split(FILE_SEPERATOR).slice(0, -1).join(FILE_SEPERATOR)
|
|
)
|
|
const { getString } = useStrings()
|
|
const { routes } = useAppContext()
|
|
const [language, setLanguage] = useState(() => filenameToLanguage(fileName))
|
|
const [originalContent, setOriginalContent] = useState(
|
|
window.atob((resourceContent?.content as RepoFileContent)?.data || '')
|
|
)
|
|
const [content, setContent] = useState(originalContent)
|
|
const rebuildPaths = useCallback(() => {
|
|
const _tokens = fileName.split(FILE_SEPERATOR).filter(part => !!part.trim())
|
|
const _fileName = _tokens.pop() as string
|
|
const _parentPath = parentPath
|
|
.split(FILE_SEPERATOR)
|
|
.concat(_tokens)
|
|
.map(p => p.trim())
|
|
.filter(part => !!part.trim())
|
|
.join(FILE_SEPERATOR)
|
|
|
|
if (_fileName && _fileName !== fileName) {
|
|
const normalizedFilename = _fileName.trim()
|
|
const newLanguage = filenameToLanguage(normalizedFilename)
|
|
|
|
setFileName(normalizedFilename)
|
|
|
|
// This is a workaround to force Monaco update content
|
|
// with new language. Monaco still throws an error
|
|
// textModel.js:178 Uncaught Error: Model is disposed!
|
|
if (language !== newLanguage) {
|
|
setLanguage(newLanguage)
|
|
setOriginalContent(content)
|
|
}
|
|
}
|
|
|
|
setParentPath(_parentPath)
|
|
}, [fileName, setFileName, parentPath, setParentPath, language, content])
|
|
const fileResourcePath = useMemo(
|
|
() => [parentPath, fileName].filter(p => !!p.trim()).join(FILE_SEPERATOR),
|
|
[parentPath, fileName]
|
|
)
|
|
|
|
useEffect(() => {
|
|
if (inputRef.current) {
|
|
inputRef.current.size = Math.min(Math.max(fileName.length - 2, 20), 50)
|
|
}
|
|
}, [fileName, inputRef])
|
|
|
|
return (
|
|
<Container className={css.container}>
|
|
<Layout.Horizontal className={css.heading}>
|
|
<Container>
|
|
<Layout.Horizontal spacing="small" className={css.path}>
|
|
<Link to={routes.toCODERepository({ repoPath: repoMetadata.path as string, gitRef })}>
|
|
<Icon name="main-folder" padding={{ right: 'small' }} />
|
|
<Text color={Color.GREY_900} inline>
|
|
{repoMetadata.uid}
|
|
</Text>
|
|
</Link>
|
|
<PathSeparator />
|
|
{parentPath && (
|
|
<>
|
|
<ReactJoin separator={<PathSeparator />}>
|
|
{parentPath.split(FILE_SEPERATOR).map((_path, index, paths) => {
|
|
const pathAtIndex = paths.slice(0, index + 1).join('/')
|
|
|
|
return (
|
|
<Link
|
|
key={_path + index}
|
|
to={routes.toCODERepository({
|
|
repoPath: repoMetadata.path as string,
|
|
gitRef,
|
|
resourcePath: pathAtIndex
|
|
})}>
|
|
<Text color={Color.GREY_900}>{_path}</Text>
|
|
</Link>
|
|
)
|
|
})}
|
|
</ReactJoin>
|
|
<PathSeparator />
|
|
</>
|
|
)}
|
|
<TextInput
|
|
value={fileName}
|
|
inputRef={ref => (inputRef.current = ref)}
|
|
wrapperClassName={css.inputContainer}
|
|
placeholder={getString('nameYourFile')}
|
|
onInput={(event: ChangeEvent<HTMLInputElement>) => {
|
|
setFileName(event.currentTarget.value)
|
|
}}
|
|
onBlur={rebuildPaths}
|
|
onFocus={({ target }) => {
|
|
const value = (parentPath ? parentPath + FILE_SEPERATOR : '') + fileName
|
|
setFileName(value)
|
|
setParentPath('')
|
|
setTimeout(() => {
|
|
target.setSelectionRange(value.length, value.length)
|
|
target.scrollLeft = Number.MAX_SAFE_INTEGER
|
|
}, 0)
|
|
}}
|
|
/>
|
|
<Text color={Color.GREY_900}>{getString('in')}</Text>
|
|
<Link
|
|
to={routes.toCODERepository({
|
|
repoPath: repoMetadata.path as string,
|
|
gitRef
|
|
})}
|
|
className={css.refLink}>
|
|
{gitRef}
|
|
</Link>
|
|
</Layout.Horizontal>
|
|
</Container>
|
|
<FlexExpander />
|
|
<Container>
|
|
<Layout.Horizontal spacing="small">
|
|
<CommitModalButton
|
|
text={getString('commitChanges')}
|
|
variation={ButtonVariation.PRIMARY}
|
|
commitMessagePlaceHolder={getString('updateFile').replace('__path__', fileResourcePath)}
|
|
gitRef={gitRef}
|
|
resourcePath={fileResourcePath}
|
|
onSubmit={data => console.log({ data })}
|
|
/>
|
|
<Button
|
|
text={getString('cancel')}
|
|
variation={ButtonVariation.TERTIARY}
|
|
onClick={() => {
|
|
history.push(
|
|
routes.toCODERepository({
|
|
repoPath: repoMetadata.path as string,
|
|
gitRef,
|
|
resourcePath
|
|
})
|
|
)
|
|
}}
|
|
/>
|
|
</Layout.Horizontal>
|
|
</Container>
|
|
</Layout.Horizontal>
|
|
|
|
<Container className={cx(css.content, language)}>
|
|
<SourceCodeEditor
|
|
className={css.editorContainer}
|
|
height="100%"
|
|
language={language}
|
|
source={originalContent}
|
|
onChange={setContent}
|
|
/>
|
|
</Container>
|
|
</Container>
|
|
)
|
|
}
|
|
|
|
export const FileEditor = React.memo(Editor)
|