diff options
author | 6543 <6543@obermui.de> | 2020-06-25 00:23:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-24 23:23:05 +0100 |
commit | c86478ec47366dfb7081cc2eb2790a0af1880eca (patch) | |
tree | 6301cdfabec3f619cd61e673fa9bef3802a16b82 /templates | |
parent | ae20de7771d81d76ff62227e464a699d55c62084 (diff) | |
download | gitea-c86478ec47366dfb7081cc2eb2790a0af1880eca.tar.gz gitea-c86478ec47366dfb7081cc2eb2790a0af1880eca.zip |
[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>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/admin/emails/list.tmpl | 10 | ||||
-rw-r--r-- | templates/admin/org/list.tmpl | 12 | ||||
-rw-r--r-- | templates/admin/repo/list.tmpl | 22 | ||||
-rw-r--r-- | templates/admin/user/list.tmpl | 12 |
4 files changed, 43 insertions, 13 deletions
diff --git a/templates/admin/emails/list.tmpl b/templates/admin/emails/list.tmpl index 64b7603e2e..39a200942d 100644 --- a/templates/admin/emails/list.tmpl +++ b/templates/admin/emails/list.tmpl @@ -33,9 +33,15 @@ <table class="ui very basic striped table"> <thead> <tr> - <th>{{.i18n.Tr "admin.users.name"}}</th> + <th data-sortt-asc="username" data-sortt-desc="reverseusername"> + {{.i18n.Tr "admin.users.name"}} + {{SortArrow "username" "reverseusername" $.SortType false}} + </th> <th>{{.i18n.Tr "admin.users.full_name"}}</th> - <th>{{.i18n.Tr "email"}}</th> + <th data-sortt-asc="email" data-sortt-desc="reverseemail" data-sortt-default="true"> + {{.i18n.Tr "email"}} + {{SortArrow "email" "reverseemail" $.SortType true}} + </th> <th>{{.i18n.Tr "admin.emails.primary"}}</th> <th>{{.i18n.Tr "admin.emails.activated"}}</th> </tr> diff --git a/templates/admin/org/list.tmpl b/templates/admin/org/list.tmpl index fc512f2ad9..4f6bc50342 100644 --- a/templates/admin/org/list.tmpl +++ b/templates/admin/org/list.tmpl @@ -16,12 +16,18 @@ <table class="ui very basic striped table"> <thead> <tr> - <th>ID</th> - <th>{{.i18n.Tr "admin.orgs.name"}}</th> + <th data-sortt-asc="oldest" data-sortt-desc="newest">ID{{SortArrow "oldest" "newest" $.SortType false}}</th> + <th data-sortt-asc="alphabetically" data-sortt-desc="reversealphabetically" data-sortt-default="true"> + {{.i18n.Tr "admin.orgs.name"}} + {{SortArrow "alphabetically" "reversealphabetically" $.SortType true}} + </th> <th>{{.i18n.Tr "admin.orgs.teams"}}</th> <th>{{.i18n.Tr "admin.orgs.members"}}</th> <th>{{.i18n.Tr "admin.users.repos"}}</th> - <th>{{.i18n.Tr "admin.users.created"}}</th> + <th data-sortt-asc="recentupdate" data-sortt-desc="leastupdate"> + {{.i18n.Tr "admin.users.created"}} + {{SortArrow "recentupdate" "leastupdate" $.SortType false}} + </th> <th>{{.i18n.Tr "admin.users.edit"}}</th> </tr> </thead> diff --git a/templates/admin/repo/list.tmpl b/templates/admin/repo/list.tmpl index f946b8a461..b9b8865382 100644 --- a/templates/admin/repo/list.tmpl +++ b/templates/admin/repo/list.tmpl @@ -13,15 +13,27 @@ <table class="ui very basic striped table"> <thead> <tr> - <th>ID</th> + <th data-sortt-asc="oldest" data-sortt-desc="newest">ID{{SortArrow "oldest" "newest" $.SortType false}}</th> <th>{{.i18n.Tr "admin.repos.owner"}}</th> - <th>{{.i18n.Tr "admin.repos.name"}}</th> + <th data-sortt-asc="alphabetically" data-sortt-desc="reversealphabetically"> + {{.i18n.Tr "admin.repos.name"}} + {{SortArrow "alphabetically" "reversealphabetically" $.SortType false}} + </th> <th>{{.i18n.Tr "admin.repos.private"}}</th> <th>{{.i18n.Tr "admin.repos.watches"}}</th> - <th>{{.i18n.Tr "admin.repos.stars"}}</th> - <th>{{.i18n.Tr "admin.repos.forks"}}</th> + <th data-sortt-asc="moststars" data-sortt-desc="feweststars"> + {{.i18n.Tr "admin.repos.stars"}} + {{SortArrow "moststars" "feweststars" $.SortType false}} + </th> + <th data-sortt-asc="mostforks" data-sortt-desc="fewestforks"> + {{.i18n.Tr "admin.repos.forks"}} + {{SortArrow "mostforks" "fewestforks" $.SortType false}} + </th> <th>{{.i18n.Tr "admin.repos.issues"}}</th> - <th>{{.i18n.Tr "admin.repos.size"}}</th> + <th data-sortt-asc="size" data-sortt-desc="reversesize"> + {{.i18n.Tr "admin.repos.size"}} + {{SortArrow "size" "reversesize" $.SortType false}} + </th> <th>{{.i18n.Tr "admin.users.created"}}</th> <th>{{.i18n.Tr "admin.notices.op"}}</th> </tr> diff --git a/templates/admin/user/list.tmpl b/templates/admin/user/list.tmpl index 72b7ccd191..3442d04195 100644 --- a/templates/admin/user/list.tmpl +++ b/templates/admin/user/list.tmpl @@ -16,15 +16,21 @@ <table class="ui very basic striped table"> <thead> <tr> - <th>ID</th> - <th>{{.i18n.Tr "admin.users.name"}}</th> + <th data-sortt-asc="oldest" data-sortt-desc="newest">ID{{SortArrow "oldest" "newest" .SortType false}}</th> + <th data-sortt-asc="alphabetically" data-sortt-desc="reversealphabetically" data-sortt-default="true"> + {{.i18n.Tr "admin.users.name"}} + {{SortArrow "alphabetically" "reversealphabetically" $.SortType true}} + </th> <th>{{.i18n.Tr "email"}}</th> <th>{{.i18n.Tr "admin.users.activated"}}</th> <th>{{.i18n.Tr "admin.users.admin"}}</th> <th>{{.i18n.Tr "admin.users.restricted"}}</th> <th>{{.i18n.Tr "admin.users.repos"}}</th> <th>{{.i18n.Tr "admin.users.created"}}</th> - <th>{{.i18n.Tr "admin.users.last_login"}}</th> + <th data-sortt-asc="recentupdate" data-sortt-desc="leastupdate"> + {{.i18n.Tr "admin.users.last_login"}} + {{SortArrow "recentupdate" "leastupdate" $.SortType false}} + </th> <th>{{.i18n.Tr "admin.users.edit"}}</th> </tr> </thead> |