Skip to content

Commit ffa9491

Browse files
authored
Use dropdown for the default view of a user (#10482)
* use select for the default vuew of a user Currently one has to manually type name of the view and ony after leaving the field one knows if it was correct. This PR changes it to a select with all known views for the user * fix potential problems
1 parent ac227c1 commit ffa9491

File tree

2 files changed

+21
-5
lines changed

2 files changed

+21
-5
lines changed

core/src/main/java/hudson/model/MyViewsProperty.java

+20
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
import hudson.model.userproperty.UserPropertyCategory;
3434
import hudson.security.ACL;
3535
import hudson.util.FormValidation;
36+
import hudson.util.ListBoxModel;
3637
import hudson.views.MyViewsTabBar;
3738
import hudson.views.ViewsTabBar;
3839
import jakarta.servlet.ServletException;
@@ -48,6 +49,7 @@
4849
import org.jenkinsci.Symbol;
4950
import org.kohsuke.accmod.Restricted;
5051
import org.kohsuke.accmod.restrictions.NoExternalUse;
52+
import org.kohsuke.stapler.AncestorInPath;
5153
import org.kohsuke.stapler.DataBoundConstructor;
5254
import org.kohsuke.stapler.HttpRedirect;
5355
import org.kohsuke.stapler.HttpResponse;
@@ -273,6 +275,24 @@ public UserProperty newInstance(User user) {
273275
public @NonNull UserPropertyCategory getUserPropertyCategory() {
274276
return UserPropertyCategory.get(UserPropertyCategory.Preferences.class);
275277
}
278+
279+
@POST
280+
public ListBoxModel doFillPrimaryViewNameItems(@AncestorInPath User user) throws IOException {
281+
ListBoxModel items = new ListBoxModel();
282+
user = user == null ? User.current() : user;
283+
if (user != null) {
284+
MyViewsProperty property = user.getProperty(MyViewsProperty.class);
285+
if (property == null) {
286+
property = new MyViewsProperty();
287+
user.addProperty(property);
288+
}
289+
for (View view : property.views) {
290+
items.add(new ListBoxModel.Option(view.getDisplayName(), view.getViewName(),
291+
view == property.getPrimaryView()));
292+
}
293+
}
294+
return items;
295+
}
276296
}
277297

278298
@Override

core/src/main/resources/hudson/model/MyViewsProperty/config.jelly

+1-5
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,8 @@ THE SOFTWARE.
2424

2525
<?jelly escape-by-default='true'?>
2626
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
27-
<f:invisibleEntry>
28-
<!-- This only exists to provide the parameter of the checkUrl -->
29-
<f:checkbox name="exists" checked="true"/>
30-
</f:invisibleEntry>
3127
<f:entry title="${%Default View}"
3228
description="${%description}">
33-
<f:textbox field="primaryViewName" checkUrl="${rootURL}/${instance.url}viewExistsCheck" checkDependsOn="exists"/>
29+
<f:select field="primaryViewName"/>
3430
</f:entry>
3531
</j:jelly>

0 commit comments

Comments
 (0)