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

Refine content and appearance of the 'Edit View' screen #9833

Merged
merged 8 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,49 +27,42 @@ THE SOFTWARE.
<?jelly escape-by-default='true'?>
<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" xmlns:i="jelly:fmt">
<st:adjunct includes="hudson.model.ListView.configure-entries-resources" />
<f:section title="${%Jobs}" description="${%jobs.description}">
<f:entry field="recurse">
<f:checkbox title="${%Recurse in subfolders}" id="recurse" />
</f:entry>

<f:section title="${%Job Filters}">

<f:entry field="recurse">
<f:checkbox title="${%Recurse in subfolders}" id="recurse" />
</f:entry>

<f:entry title="${%Jobs}">
<div class="listview-jobs">
<j:forEach var="job" items="${h.getAllTopLevelItems(it.ownerItemGroup)}">
<j:set var="spanClass" value=""/>
<j:set var="spanStyle" value=""/>
<j:if test="${job.parent!=it.ownerItemGroup}">
<j:set var="spanClass" value="nested"/>
<j:set var="spanStyle" value="${it.recurse?'':'display:none'}"/>
</j:if>
<span class="${spanClass}" style="${spanStyle}">
<f:checkbox name="item_${job.getRelativeNameFromGroup(it.ownerItemGroup)}" checked="${it.jobNamesContains(job)}" title="${h.getRelativeDisplayNameFrom(job,it.ownerItemGroup)}" tooltip="${job.fullName}" json="true"/>
<br/>
</span>
</j:forEach>
</div>
</f:entry>

<f:optionalBlock name="useincluderegex" title="${%Use a regular expression to include jobs into the view}"
checked="${it.includeRegex != null}" help="/help/view-config/includeregex.html">
<f:entry title="${%Regular expression}">
<f:textbox name="includeRegex" field="includeRegex" />
<f:entry>
<div class="listview-jobs">
<j:forEach var="job" items="${h.getAllTopLevelItems(it.ownerItemGroup)}">
<j:set var="spanClass" value="notnested"/>
<j:set var="spanStyle" value=""/>
<j:if test="${job.parent!=it.ownerItemGroup}">
<j:set var="spanClass" value="nested"/>
<j:set var="spanStyle" value="${it.recurse?'':'display:none'}"/>
</j:if>
<span class="${spanClass}" style="${spanStyle}">
<f:checkbox name="item_${job.getRelativeNameFromGroup(it.ownerItemGroup)}" checked="${it.jobNamesContains(job)}" title="${h.getRelativeDisplayNameFrom(job,it.ownerItemGroup)}" tooltip="${job.fullName}" json="true"/>
</span>
</j:forEach>
</div>
</f:entry>
</f:optionalBlock>

<f:optionalBlock name="useincluderegex" title="${%Use a regular expression to include jobs into the view}"
checked="${it.includeRegex != null}" help="/help/view-config/includeregex.html">
<f:entry title="${%Regular expression}">
<f:textbox name="includeRegex" field="includeRegex" />
</f:entry>
</f:optionalBlock>
</f:section>

<j:if test="${it.hasJobFilterExtensions()}">
<f:block>
<f:section title="${%Filters}" description="${%filters.description}">
<f:repeatableHeteroProperty field="jobFilters" hasHeader="true" addCaption="${%Add Job Filter}" />
</f:block>
</f:section>
</j:if>

<f:section title="${%Columns}" description="${%columns.description}">
<f:repeatableHeteroProperty field="columns" hasHeader="true" addCaption="${%Add column}"/>
</f:section>

<f:section title="${%Columns}">
<f:block>
<f:repeatableHeteroProperty field="columns" hasHeader="true" addCaption="${%Add column}"/>
</f:block>
</f:section>

</j:jelly>
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
jobs.description=Select the jobs to show in this view.
filters.description=Filter the jobs that show in this view based on specific conditions.
columns.description=Select the columns in this view.
39 changes: 25 additions & 14 deletions core/src/main/resources/hudson/model/View/configure.jelly
Original file line number Diff line number Diff line change
Expand Up @@ -29,32 +29,43 @@ THE SOFTWARE.
<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" xmlns:i="jelly:fmt">
<l:layout title="${%Edit View}" permission="${it.CONFIGURE}">
<st:include page="sidepanel.jelly" />
<l:breadcrumb title="${%Configure}" />

<l:breadcrumb title="${title}" />

<l:main-panel>
<l:app-bar title="${title}" />

<!-- to make the form field binding work -->
<j:set var="instance" value="${it}" />
<j:set var="descriptor" value="${it.descriptor}" />

<f:form method="post" action="configSubmit" name="viewConfig">
<f:entry title="${%Name}">
<f:textbox name="name" value="${it.viewName}" autocomplete="on"/>
</f:entry>
<f:entry field="description" title="${%Description}" help="/help/view-config/description.html">
<f:textarea codemirror-mode="${app.markupFormatter.codeMirrorMode}" codemirror-config="${app.markupFormatter.codeMirrorConfig}" previewEndpoint="/markupFormatter/previewDescription"/>
</f:entry>
<f:entry field="filterQueue" help="/help/view-config/filter-queue.html">
<f:checkbox title="${%Filter build queue}"/>
</f:entry>
<f:entry field="filterExecutors" help="/help/view-config/filter-executors.html">
<f:checkbox title="${%Filter build executors}"/>
</f:entry>
<f:form method="post" action="configSubmit" name="viewConfig" class="jenkins-form">
<f:section>
<f:entry title="${%Name}">
<f:textbox name="name" value="${it.viewName}" autocomplete="on" />
</f:entry>
<f:entry field="description" title="${%Description}" description="${%description.description}">
<f:textarea codemirror-mode="${app.markupFormatter.codeMirrorMode}" codemirror-config="${app.markupFormatter.codeMirrorConfig}" previewEndpoint="/markupFormatter/previewDescription"/>
</f:entry>
</f:section>

<!-- subtypes can put entries here. -->
<st:include page="configure-entries.jelly" optional="true" />

<!-- view property configurations -->
<f:descriptorList descriptors="${it.getVisiblePropertyDescriptors()}" instances="${it.properties}" />

<f:section title="${%Widgets}" description="${%widgets.description}">
<f:entry field="filterQueue">
<f:checkbox title="${%Filter build queue}"
description="${%widgets.filterqueue.description}" />
</f:entry>
<f:entry field="filterExecutors">
<f:checkbox title="${%Filter build executors}"
description="${%widgets.filterexecutors.description}" />
</f:entry>
</f:section>

<f:bottomButtonBar>
<f:submit value="${%OK}" />
<f:apply value="${%Apply}"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
description.description=Describe the purpose of this view.
widgets.description=Customize the widgets that show in this view.
widgets.filterqueue.description=If checked, only jobs in this view will be shown in the queue.
widgets.filterexecutors.description=If checked, only those build executors will be shown that could execute the jobs in this view.
8 changes: 8 additions & 0 deletions core/src/main/resources/lib/form/checkbox.jelly
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ THE SOFTWARE.
<st:attribute name="tooltip">
Used as tooltip of the checkbox, and, if a title is specified, of the title
</st:attribute>
<st:attribute name="description" since="TODO">
Optional description for the checkbox
</st:attribute>
</st:documentation>
<f:prepareDatabinding />
<j:set var="name" value="${attrs.name ?: '_.'+attrs.field}"/>
Expand All @@ -87,6 +90,11 @@ THE SOFTWARE.
<label class="attach-previous ${attrs.title == null ? 'js-checkbox-label-empty' : ''}"
title="${attrs.tooltip}">${attrs.title}</label>
</span>
<j:if test="${attrs.description != null}">
<div class="jenkins-checkbox__description">
${attrs.description}
</div>
</j:if>
janfaracik marked this conversation as resolved.
Show resolved Hide resolved
<j:if test="${customizedFields != null and attrs.field != null and value != default}">
<j:mute>${customizedFields.add(name)}</j:mute>
</j:if>
Expand Down
23 changes: 19 additions & 4 deletions war/src/main/scss/base/_style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -408,10 +408,25 @@ img.icon-help {

/* ============================ list view entries ======================== */
div.listview-jobs {
max-height: 300px;
overflow: auto;
margin-left: -15px;
padding-left: 15px;
display: flex;
flex-direction: column;
gap: 0.3rem;

.nested,
.notnested {
display: flex;
}

.nested {
border-left: 2px solid color-mix(in sRGB, var(--input-border), transparent);
margin-left: 10px;
padding-left: 22px;

& + .nested {
margin-top: -0.3rem;
padding-top: 0.3rem;
}
}
}

/* ============================ health report hover ========================== */
Expand Down
6 changes: 0 additions & 6 deletions war/src/main/webapp/help/view-config/description.html

This file was deleted.

7 changes: 0 additions & 7 deletions war/src/main/webapp/help/view-config/description_bg.html

This file was deleted.

7 changes: 0 additions & 7 deletions war/src/main/webapp/help/view-config/description_de.html

This file was deleted.

6 changes: 0 additions & 6 deletions war/src/main/webapp/help/view-config/description_fr.html

This file was deleted.

7 changes: 0 additions & 7 deletions war/src/main/webapp/help/view-config/description_it.html

This file was deleted.

6 changes: 0 additions & 6 deletions war/src/main/webapp/help/view-config/description_ja.html

This file was deleted.

8 changes: 0 additions & 8 deletions war/src/main/webapp/help/view-config/description_nl.html

This file was deleted.

6 changes: 0 additions & 6 deletions war/src/main/webapp/help/view-config/description_pt_BR.html

This file was deleted.

6 changes: 0 additions & 6 deletions war/src/main/webapp/help/view-config/description_ru.html

This file was deleted.

7 changes: 0 additions & 7 deletions war/src/main/webapp/help/view-config/description_tr.html

This file was deleted.

5 changes: 0 additions & 5 deletions war/src/main/webapp/help/view-config/description_zh_TW.html

This file was deleted.

27 changes: 0 additions & 27 deletions war/src/main/webapp/help/view-config/filter-executors.html

This file was deleted.

4 changes: 0 additions & 4 deletions war/src/main/webapp/help/view-config/filter-executors_bg.html

This file was deleted.

27 changes: 0 additions & 27 deletions war/src/main/webapp/help/view-config/filter-executors_de.html

This file was deleted.

27 changes: 0 additions & 27 deletions war/src/main/webapp/help/view-config/filter-executors_it.html

This file was deleted.

24 changes: 0 additions & 24 deletions war/src/main/webapp/help/view-config/filter-executors_ja.html

This file was deleted.

Loading
Loading