mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-05-25 11:22:16 +00:00
[UI] Sortable Tables Header By Click (#7980)
* [UI] Sortable Tables Header By Click * get rid of padding above header * restart CI * fix lint * convert getArrow JS to SortArrow go func * addopt SortArrow funct * suggestions from @silverwind - tablesort.js Co-authored-by: silverwind <me@silverwind.io> * Update web_src/js/features/tablesort.js Co-authored-by: silverwind <me@silverwind.io> * Update web_src/js/features/tablesort.js Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: silverwind <me@silverwind.io>
This commit is contained in:
parent
ae20de7771
commit
c86478ec47
10 changed files with 106 additions and 18 deletions
20
web_src/js/features/tablesort.js
Normal file
20
web_src/js/features/tablesort.js
Normal file
|
@ -0,0 +1,20 @@
|
|||
export default function initTableSort() {
|
||||
for (const header of document.querySelectorAll('th[data-sortt-asc]') || []) {
|
||||
const {sorttAsc, sorttDesc, sorttDefault} = header.dataset;
|
||||
header.addEventListener('click', () => {
|
||||
tableSort(sorttAsc, sorttDesc, sorttDefault);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function tableSort(normSort, revSort, isDefault) {
|
||||
if (!normSort) return false;
|
||||
if (!revSort) revSort = '';
|
||||
|
||||
const url = new URL(window.location);
|
||||
let urlSort = url.searchParams.get('sort');
|
||||
if (!urlSort && isDefault) urlSort = normSort;
|
||||
|
||||
url.searchParams.set('sort', urlSort !== normSort ? normSort : revSort);
|
||||
window.location.replace(url.href);
|
||||
}
|
|
@ -15,6 +15,7 @@ import initUserHeatmap from './features/userheatmap.js';
|
|||
import initServiceWorker from './features/serviceworker.js';
|
||||
import attachTribute from './features/tribute.js';
|
||||
import createDropzone from './features/dropzone.js';
|
||||
import initTableSort from './features/tablesort.js';
|
||||
import highlight from './features/highlight.js';
|
||||
import ActivityTopAuthors from './components/ActivityTopAuthors.vue';
|
||||
import {initNotificationsTable, initNotificationCount} from './features/notification.js';
|
||||
|
@ -2450,6 +2451,7 @@ $(document).ready(async () => {
|
|||
initRepoStatusChecker();
|
||||
initTemplateSearch();
|
||||
initContextPopups();
|
||||
initTableSort();
|
||||
initNotificationsTable();
|
||||
initNotificationCount();
|
||||
|
||||
|
|
|
@ -6,8 +6,6 @@
|
|||
font-size: 13px;
|
||||
|
||||
&:not(.striped) {
|
||||
padding-top: 5px;
|
||||
|
||||
thead {
|
||||
th:last-child {
|
||||
padding-right: 5px !important;
|
||||
|
|
|
@ -1223,6 +1223,17 @@ i.icon.centerlock {
|
|||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
table th[data-sortt-asc],
|
||||
table th[data-sortt-desc] {
|
||||
&:hover {
|
||||
background: rgba(0, 0, 0, .1) !important;
|
||||
cursor: pointer !important;
|
||||
}
|
||||
.svg {
|
||||
margin-left: .25rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* limit width of all direct dropdown menu children */
|
||||
/* https://github.com/go-gitea/gitea/pull/10835 */
|
||||
.dropdown:not(.selection) > .menu:not(.review-box) > *:not(.header) {
|
||||
|
|
|
@ -479,7 +479,7 @@ a.ui.basic.green.label:hover {
|
|||
|
||||
.ui.table thead th,
|
||||
.ui.table > thead > tr > th {
|
||||
background: #404552 !important;
|
||||
background: #404552;
|
||||
color: #dbdbdb !important;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue