-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Git flexibility after task creation #3886
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
3351dfd
Editable git
PMazarovich c603af2
Update cvat-ui/src/utils/git-utils.ts
580f349
Update cvat-ui/src/components/task-page/details.tsx
b1ff791
Update cvat-ui/src/containers/task-page/details.tsx
bda6cf2
Update cvat-ui/src/components/task-page/details.tsx
d25bc43
Merge branch 'develop' into editable_git
bsekachev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,17 +11,22 @@ import notification from 'antd/lib/notification'; | |
import Text from 'antd/lib/typography/Text'; | ||
import Title from 'antd/lib/typography/Title'; | ||
import moment from 'moment'; | ||
|
||
import Descriptions from 'antd/lib/descriptions'; | ||
import Paragraph from 'antd/lib/typography/Paragraph'; | ||
import Select from 'antd/lib/select'; | ||
import Checkbox, { CheckboxChangeEvent } from 'antd/lib/checkbox'; | ||
import getCore from 'cvat-core-wrapper'; | ||
import { getReposData, syncRepos } from 'utils/git-utils'; | ||
import { getReposData, syncRepos, changeRepo } from 'utils/git-utils'; | ||
import { ActiveInference } from 'reducers/interfaces'; | ||
import AutomaticAnnotationProgress from 'components/tasks-page/automatic-annotation-progress'; | ||
import Descriptions from 'antd/lib/descriptions'; | ||
import Space from 'antd/lib/space'; | ||
import UserSelector, { User } from './user-selector'; | ||
import BugTrackerEditor from './bug-tracker-editor'; | ||
import LabelsEditorComponent from '../labels-editor/labels-editor'; | ||
import ProjectSubsetField from '../create-task-page/project-subset-field'; | ||
|
||
const { Option } = Select; | ||
|
||
const core = getCore(); | ||
|
||
interface Props { | ||
|
@@ -32,6 +37,8 @@ interface Props { | |
projectSubsets: string[]; | ||
cancelAutoAnnotation(): void; | ||
onTaskUpdate: (taskInstance: any) => void; | ||
dumpers: any[]; | ||
user: any; | ||
} | ||
|
||
interface State { | ||
|
@@ -40,13 +47,13 @@ interface State { | |
repository: string; | ||
repositoryStatus: string; | ||
format: string; | ||
lfs: boolean; | ||
updatingRepository: boolean; | ||
} | ||
|
||
export default class DetailsComponent extends React.PureComponent<Props, State> { | ||
private mounted: boolean; | ||
|
||
private previewImageElement: HTMLImageElement; | ||
|
||
private previewWrapperRef: React.RefObject<HTMLDivElement>; | ||
|
||
constructor(props: Props) { | ||
|
@@ -63,6 +70,8 @@ export default class DetailsComponent extends React.PureComponent<Props, State> | |
repository: '', | ||
format: '', | ||
repositoryStatus: '', | ||
lfs: false, | ||
updatingRepository: false, | ||
}; | ||
} | ||
|
||
|
@@ -103,6 +112,7 @@ export default class DetailsComponent extends React.PureComponent<Props, State> | |
this.setState({ | ||
repository: data.url, | ||
format: data.format, | ||
lfs: !!data.lfs, | ||
}); | ||
} | ||
}) | ||
|
@@ -130,6 +140,54 @@ export default class DetailsComponent extends React.PureComponent<Props, State> | |
this.mounted = false; | ||
} | ||
|
||
private onChangeRepoValue = (value: string): void => { | ||
const { taskInstance } = this.props; | ||
const { repository } = this.state; | ||
const old = repository; | ||
this.setState({ repository: value, updatingRepository: true }); | ||
changeRepo(taskInstance.id, 'url', value) | ||
.catch((error) => { | ||
this.setState({ repository: old }); | ||
notification.error({ | ||
message: 'Could not update repository', | ||
description: error, | ||
}); | ||
}) | ||
.finally(() => this.setState({ updatingRepository: false })); | ||
}; | ||
|
||
private onChangeLFSValue = (event: CheckboxChangeEvent): void => { | ||
const { taskInstance } = this.props; | ||
const { lfs } = this.state; | ||
const old = lfs; | ||
this.setState({ lfs: event.target.checked, updatingRepository: true }); | ||
changeRepo(taskInstance.id, 'lfs', event.target.checked) | ||
.catch((error) => { | ||
this.setState({ lfs: old }); | ||
notification.error({ | ||
message: 'Could not update LFS', | ||
description: error, | ||
}); | ||
}) | ||
.finally(() => this.setState({ updatingRepository: false })); | ||
}; | ||
|
||
private onChangeFormatValue = (value: string): void => { | ||
const { taskInstance } = this.props; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The same comment like above for other change callbacks |
||
const { format } = this.state; | ||
const old = format; | ||
this.setState({ format: value, updatingRepository: true }); | ||
changeRepo(taskInstance.id, 'format', value) | ||
.catch((error) => { | ||
this.setState({ format: old }); | ||
notification.error({ | ||
message: 'Could not update format', | ||
description: error, | ||
}); | ||
}) | ||
.finally(() => this.setState({ updatingRepository: false })); | ||
}; | ||
|
||
private renderTaskName(): JSX.Element { | ||
const { name } = this.state; | ||
const { taskInstance, onTaskUpdate } = this.props; | ||
|
@@ -205,81 +263,89 @@ export default class DetailsComponent extends React.PureComponent<Props, State> | |
} | ||
|
||
private renderDatasetRepository(): JSX.Element | boolean { | ||
const { taskInstance } = this.props; | ||
const { repository, repositoryStatus, format } = this.state; | ||
|
||
const { taskInstance, dumpers } = this.props; | ||
const { | ||
repository, repositoryStatus, format, lfs, updatingRepository, | ||
} = this.state; | ||
return ( | ||
!!repository && ( | ||
<Row> | ||
<Col className='cvat-dataset-repository-url'> | ||
<Text strong className='cvat-text-color'> | ||
Dataset Repository | ||
</Text> | ||
<br /> | ||
<a href={repository} rel='noopener noreferrer' target='_blank'> | ||
{repository} | ||
</a> | ||
<br /> | ||
<p> | ||
Using format | ||
{' '} | ||
<Text strong> | ||
{format} | ||
<Paragraph> | ||
<Text editable={{ onChange: this.onChangeRepoValue }} disabled={updatingRepository}> | ||
{repository} | ||
</Text> | ||
</p> | ||
{repositoryStatus === 'sync' && ( | ||
<Tag color='blue'> | ||
<CheckCircleOutlined /> | ||
Synchronized | ||
</Tag> | ||
)} | ||
{repositoryStatus === 'merged' && ( | ||
<Tag color='green'> | ||
<CheckCircleOutlined /> | ||
Merged | ||
</Tag> | ||
)} | ||
{repositoryStatus === 'syncing' && ( | ||
<Tag color='purple'> | ||
<LoadingOutlined /> | ||
Syncing | ||
</Tag> | ||
)} | ||
{repositoryStatus === '!sync' && ( | ||
<Tag | ||
color='red' | ||
onClick={(): void => { | ||
this.setState({ | ||
repositoryStatus: 'syncing', | ||
}); | ||
|
||
syncRepos(taskInstance.id) | ||
.then((): void => { | ||
if (this.mounted) { | ||
this.setState({ | ||
repositoryStatus: 'sync', | ||
}); | ||
} | ||
}) | ||
.catch((error): void => { | ||
if (this.mounted) { | ||
Modal.error({ | ||
width: 800, | ||
title: 'Could not synchronize the repository', | ||
content: error.toString(), | ||
}); | ||
|
||
this.setState({ | ||
repositoryStatus: '!sync', | ||
}); | ||
} | ||
{repositoryStatus === 'sync' && ( | ||
<Tag color='blue'> | ||
<CheckCircleOutlined /> | ||
Synchronized | ||
</Tag> | ||
)} | ||
{repositoryStatus === 'merged' && ( | ||
<Tag color='green'> | ||
<CheckCircleOutlined /> | ||
Merged | ||
</Tag> | ||
)} | ||
{repositoryStatus === 'syncing' && ( | ||
<Tag color='purple'> | ||
<LoadingOutlined /> | ||
Syncing | ||
</Tag> | ||
)} | ||
{repositoryStatus === '!sync' && ( | ||
<Tag | ||
color='red' | ||
onClick={(): void => { | ||
this.setState({ | ||
repositoryStatus: 'syncing', | ||
}); | ||
}} | ||
> | ||
<ExclamationCircleOutlined /> | ||
Synchronize | ||
</Tag> | ||
)} | ||
|
||
syncRepos(taskInstance.id) | ||
.then((): void => { | ||
if (this.mounted) { | ||
this.setState({ | ||
repositoryStatus: 'sync', | ||
}); | ||
} | ||
}) | ||
.catch((error): void => { | ||
if (this.mounted) { | ||
Modal.error({ | ||
width: 800, | ||
title: 'Could not synchronize the repository', | ||
content: error.toString(), | ||
}); | ||
|
||
this.setState({ | ||
repositoryStatus: '!sync', | ||
}); | ||
} | ||
}); | ||
}} | ||
> | ||
<ExclamationCircleOutlined /> | ||
Synchronize | ||
</Tag> | ||
)} | ||
</Paragraph> | ||
<Text strong className='cvat-text-color'>Using format: </Text> | ||
<Space> | ||
<Select disabled={updatingRepository} onChange={this.onChangeFormatValue} className='cvat-repository-format-select' value={format}> | ||
{ | ||
dumpers.map((dumper: any) => ( | ||
<Option key={dumper.name} value={dumper.name}>{dumper.name}</Option> | ||
)) | ||
} | ||
</Select> | ||
<Checkbox disabled={updatingRepository} onChange={this.onChangeLFSValue} checked={lfs}> | ||
Large file support | ||
</Checkbox> | ||
{updatingRepository && <LoadingOutlined style={{ fontSize: 14 }} spin />} | ||
</Space> | ||
</Col> | ||
</Row> | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The same comment like above for other change callbacks