Skip to content

Rework delete org and rename org UI #34762

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

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

Conversation

lunny
Copy link
Member

@lunny lunny commented Jun 18, 2025

What's the problem of the original implementation

Renaming organization will mix with organization's information change make the operation difficult to keep consistent.

This PR created a danger zone like what's repository setting. It also moved organization's rename and delete operations to this zone. The original updating repository will not change the name any more.

This is also a step to extract the updaterepository function completely.

Before:

image
image

After:

image
image
image
image

@lunny lunny added this to the 1.25.0 milestone Jun 18, 2025
@lunny lunny added type/enhancement An improvement of existing functionality topic/ui Change the appearance of the Gitea UI labels Jun 18, 2025
@GiteaBot GiteaBot added the lgtm/need 2 This PR needs two approvals by maintainers to be considered for merging. label Jun 18, 2025
@github-actions github-actions bot added modifies/translation modifies/go Pull requests that update Go code modifies/templates This PR modifies the template files labels Jun 18, 2025
@GiteaBot GiteaBot added lgtm/need 1 This PR needs approval from one additional maintainer to be merged. and removed lgtm/need 2 This PR needs two approvals by maintainers to be considered for merging. labels Jun 19, 2025
@GiteaBot GiteaBot added lgtm/done This PR has enough approvals to get merged. There are no important open reservations anymore. and removed lgtm/need 1 This PR needs approval from one additional maintainer to be merged. labels Jun 20, 2025

settings.rename = Rename Organization
settings.rename_desc = Changing the organization name will also change your organization's URL and free the old name.
settings.rename_success = Organization %s have been renamed to %s successfully.
Copy link
Contributor

Choose a reason for hiding this comment

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

%[1]s

Copy link
Member Author

Choose a reason for hiding this comment

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


// SettingsRename response for renaming organization
func SettingsRename(ctx *context.Context) {
form := web.GetForm(ctx).(*forms.RenameOrgForm)
Copy link
Contributor

Choose a reason for hiding this comment

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

Just curious why introduce a new "RenameOrgForm" struct.

Are the errors properly processed if the form validation fails?


Or it should be as simple as read the values by FormString?

Copy link
Member Author

@lunny lunny Jun 20, 2025

Choose a reason for hiding this comment

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

To reuse the binding middleware which can validate the length and the username like previous routers. If we use FormString, we have to do the validation manually. This is what the error looks like.

image

</div>
<div class="required field">
<label for="org_name_to_delete">{{ctx.Locale.Tr "org.org_name_holder"}}</label>
<input id="org_name_to_delete" name="org_name" required>
Copy link
Contributor

Choose a reason for hiding this comment

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

We already have a framework-level support.

So please do not write these IDs.

image

Copy link
Member Author

Choose a reason for hiding this comment

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

@wxiaoguang wxiaoguang marked this pull request as draft June 20, 2025 10:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
lgtm/done This PR has enough approvals to get merged. There are no important open reservations anymore. modifies/go Pull requests that update Go code modifies/templates This PR modifies the template files modifies/translation topic/ui Change the appearance of the Gitea UI type/enhancement An improvement of existing functionality
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants