Skip to content
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

Add a new section named development in issue view sidebar to interact with branch/pr #31899

Draft
wants to merge 67 commits into
base: main
Choose a base branch
from

Conversation

lunny
Copy link
Member

@lunny lunny commented Aug 21, 2024

Partially Resolve #20226

This PR add a new section on the sidebar of issue named Development. It supports creating one or multiple branches and pull requests from the sidebar.

  1. No related branch or PR
    image

  2. Create new branch from the issue

image
  1. Related branch created
image
  1. Prefill title and content when creating pull request from the issue development link
    图片

  2. Realted PR created
    image

  3. Related PR merged
    image

  4. Mayge fixed near the issue title
    image

TODO:

  • Delete dev_link records from the database when deleting repos/issues
  • Delete dev_link records from the database when deleting pull requests/branch
  • Allow creating multiple branches/pull requests from UI
  • Bring issue information into the pull request when creating the pull request.
  • Adjust the toast z-index to 9999 so that it will display in front of the modal.

@GiteaBot GiteaBot added the lgtm/need 2 This PR needs two approvals by maintainers to be considered for merging. label Aug 21, 2024
@pull-request-size pull-request-size bot added the size/L Denotes a PR that changes 100-499 lines, ignoring generated files. label Aug 21, 2024
@github-actions github-actions bot added modifies/translation modifies/go Pull requests that update Go code modifies/templates This PR modifies the template files modifies/migrations labels Aug 21, 2024
@pull-request-size pull-request-size bot added size/XL Denotes a PR that changes 500-999 lines, ignoring generated files. and removed size/L Denotes a PR that changes 100-499 lines, ignoring generated files. labels Aug 22, 2024
@pull-request-size pull-request-size bot added size/L Denotes a PR that changes 100-499 lines, ignoring generated files. and removed size/XL Denotes a PR that changes 500-999 lines, ignoring generated files. labels Aug 22, 2024
@pull-request-size pull-request-size bot added size/XL Denotes a PR that changes 500-999 lines, ignoring generated files. and removed size/L Denotes a PR that changes 100-499 lines, ignoring generated files. labels Aug 29, 2024
@lunny lunny marked this pull request as ready for review August 29, 2024 19:46
@lunny lunny added this to the 1.23.0 milestone Aug 29, 2024
@lunny lunny added the type/feature Completely new functionality. Can only be merged if feature freeze is not active. label Aug 29, 2024
@yp05327
Copy link
Contributor

yp05327 commented Dec 10, 2024

This section should be hidden or disabled when repo is empty or repo is archive or repo is mirror.

@lunny
Copy link
Member Author

lunny commented Dec 10, 2024

This section should be hidden or disabled when repo is empty or repo is archive or repo is mirror.

The links are still useable. Only create branch link should be hide.

type IssueDevLinkType int

const (
IssueDevLinkTypeBranch IssueDevLinkType = iota + 1
Copy link
Contributor

@wxiaoguang wxiaoguang Dec 12, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just tried to play with GitHub's development sidebar for a while. I can see there could be a lot of edge cases:

  1. create a new branch 123-my-issue, rename the branch to 123-my-issue-other, the link disappears, rename another branch to 123-my-issue, the link won't appear again.
  2. create a new branch 123-my-issue, create a PR from 123-my-issue, then the link is updated to PR, the branch link is replaced.

I believe these details need enough documents(comments) and tests.

@wxiaoguang
Copy link
Contributor

wxiaoguang commented Dec 12, 2024

I guess it won't catch 1.23 milestone since this PR doesn't seem to be complete enough.


LinkIndex: I also agree it doesn't seem to be a good name or proper design. There are already too many "index" in code: search index, database index, issue index, etc.

And using "string" to store "int" in database would cause problems, if you write ("where str_field = ?", intVal), then it can't use the index and would cause imperceptible performance problems.


Just tried to play with GitHub's development sidebar for a while. I can see there could be a lot of edge cases:

  1. create a new branch 123-my-issue, rename the branch to 123-my-issue-other, the link disappears, rename another branch to 123-my-issue, the link won't appear again.
  2. create a new branch 123-my-issue, create a PR from 123-my-issue, then the link is updated to PR, the branch link is replaced.

I believe these details need enough documents(comments) and tests.

@lunny lunny modified the milestones: 1.23.0, 1.24.0 Dec 12, 2024
@lunny lunny mentioned this pull request Dec 17, 2024
@lunny lunny marked this pull request as draft December 27, 2024 17:53
@KemptonM
Copy link

KemptonM commented Feb 8, 2025

Progress on this? We are using Gitea at work and I would love to have this feature

@lunny
Copy link
Member Author

lunny commented Feb 8, 2025

I think I need to migrate the current ref column in the issue table.

@krokets
Copy link

krokets commented Feb 21, 2025

Hi, still plan for 1.24.0 ?

@lunny
Copy link
Member Author

lunny commented Feb 22, 2025

Hi, still plan for 1.24.0 ?

Yes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
lgtm/need 1 This PR needs approval from one additional maintainer to be merged. modifies/frontend modifies/go Pull requests that update Go code modifies/migrations modifies/templates This PR modifies the template files modifies/translation size/XL Denotes a PR that changes 500-999 lines, ignoring generated files. topic/ui Change the appearance of the Gitea UI topic/ux How users interact with Gitea type/feature Completely new functionality. Can only be merged if feature freeze is not active.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Create a branch from an issue, with pull/merge request
8 participants