2021-10-15 02:35:26 +00:00
|
|
|
<div id="dashboard-repo-list" class="six wide column">
|
2020-03-30 06:49:54 +00:00
|
|
|
<repo-search
|
|
|
|
:search-limit="searchLimit"
|
2021-10-15 02:35:26 +00:00
|
|
|
:sub-url="subUrl"
|
2021-10-19 04:38:33 +00:00
|
|
|
:uid="uid"
|
2020-12-27 19:58:03 +00:00
|
|
|
{{if .Team}}
|
|
|
|
:team-id="{{.Team.ID}}"
|
|
|
|
{{end}}
|
2020-03-30 06:49:54 +00:00
|
|
|
:more-repos-link="'{{.ContextUser.HomeLink}}'"
|
|
|
|
{{if not .ContextUser.IsOrganization}}
|
|
|
|
:organizations="[
|
2021-06-18 17:00:53 +00:00
|
|
|
{{range .Orgs}}
|
2020-03-30 06:49:54 +00:00
|
|
|
{name: '{{.Name}}', num_repos: '{{.NumRepos}}'},
|
|
|
|
{{end}}
|
|
|
|
]"
|
|
|
|
:is-organization="false"
|
2021-11-22 15:21:55 +00:00
|
|
|
:organizations-total-count="{{.UserOrgsCount}}"
|
2020-03-30 06:49:54 +00:00
|
|
|
:can-create-organization="{{.SignedUser.CanCreateOrganization}}"
|
|
|
|
{{end}}
|
|
|
|
inline-template
|
|
|
|
v-cloak
|
|
|
|
>
|
|
|
|
<div>
|
|
|
|
<div v-if="!isOrganization" class="ui two item tabable menu">
|
|
|
|
<a :class="{item: true, active: tab === 'repos'}" @click="changeTab('repos')">{{.i18n.Tr "repository"}}</a>
|
|
|
|
<a :class="{item: true, active: tab === 'organizations'}" @click="changeTab('organizations')">{{.i18n.Tr "organization"}}</a>
|
|
|
|
</div>
|
|
|
|
<div v-show="tab === 'repos'" class="ui tab active list dashboard-repos">
|
2020-12-04 11:18:37 +00:00
|
|
|
<h4 class="ui top attached header df ac">
|
|
|
|
<div class="f1 df ac">
|
|
|
|
{{.i18n.Tr "home.my_repos"}}
|
|
|
|
<span class="ui grey label ml-3">${reposTotalCount}</span>
|
|
|
|
</div>
|
2021-11-18 03:26:50 +00:00
|
|
|
<a class="tooltip" :href="subUrl + '/repo/create'" data-content="{{.i18n.Tr "new_repo"}}" data-position="left center">
|
2020-12-04 11:18:37 +00:00
|
|
|
{{svg "octicon-plus"}}
|
|
|
|
<span class="sr-only">{{.i18n.Tr "new_repo"}}</span>
|
|
|
|
</a>
|
2020-03-30 06:49:54 +00:00
|
|
|
</h4>
|
2020-12-10 02:59:05 +00:00
|
|
|
<div class="ui attached segment repos-search">
|
2020-05-16 20:07:01 +00:00
|
|
|
<div class="ui fluid right action left icon input" :class="{loading: isLoading}">
|
2021-04-13 02:09:46 +00:00
|
|
|
<input @input="changeReposFilter(reposFilter)" v-model="searchQuery" ref="search" placeholder="{{.i18n.Tr "home.search_repos"}}">
|
2020-11-09 18:21:47 +00:00
|
|
|
<i class="icon df ac jc">{{svg "octicon-search" 16}}</i>
|
|
|
|
<div class="ui dropdown icon button" title="{{.i18n.Tr "home.filter"}}">
|
|
|
|
<i class="icon df ac jc m-0">{{svg "octicon-filter" 16}}</i>
|
2020-05-16 20:07:01 +00:00
|
|
|
<div class="menu">
|
|
|
|
<div class="item">
|
|
|
|
<a @click="toggleArchivedFilter()">
|
|
|
|
<div class="ui checkbox" id="archivedFilterCheckbox" title="{{.i18n.Tr "home.show_both_archived_unarchived"}}" v-if="archivedFilter === 'both'">
|
|
|
|
<input type="checkbox">
|
2020-12-09 19:03:19 +00:00
|
|
|
<label>
|
|
|
|
{{svg "octicon-archive" 16 "mr-2"}}
|
|
|
|
{{.i18n.Tr "home.show_archived"}}
|
|
|
|
</label>
|
2020-05-16 20:07:01 +00:00
|
|
|
</div>
|
|
|
|
<div class="ui checkbox" id="archivedFilterCheckbox" title="{{.i18n.Tr "home.show_only_unarchived"}}" v-if="archivedFilter === 'unarchived'">
|
|
|
|
<input type="checkbox">
|
2020-12-09 19:03:19 +00:00
|
|
|
<label>
|
|
|
|
{{svg "octicon-archive" 16 "mr-2"}}
|
|
|
|
{{.i18n.Tr "home.show_archived"}}
|
|
|
|
</label>
|
2020-05-16 20:07:01 +00:00
|
|
|
</div>
|
|
|
|
<div class="ui checkbox" id="archivedFilterCheckbox" title="{{.i18n.Tr "home.show_only_archived"}}" v-if="archivedFilter === 'archived'">
|
|
|
|
<input type="checkbox">
|
2020-12-09 19:03:19 +00:00
|
|
|
<label>
|
|
|
|
{{svg "octicon-archive" 16 "mr-2"}}
|
|
|
|
{{.i18n.Tr "home.show_archived"}}
|
|
|
|
</label>
|
2020-05-16 20:07:01 +00:00
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="item">
|
|
|
|
<a @click="togglePrivateFilter()">
|
|
|
|
<div class="ui checkbox" id="privateFilterCheckbox" title="{{.i18n.Tr "home.show_both_private_public"}}" v-if="privateFilter === 'both'">
|
|
|
|
<input type="checkbox">
|
2020-12-09 19:03:19 +00:00
|
|
|
<label>
|
|
|
|
{{svg "octicon-lock" 16 "mr-2"}}
|
|
|
|
{{.i18n.Tr "home.show_private"}}
|
|
|
|
</label>
|
2020-05-16 20:07:01 +00:00
|
|
|
</div>
|
|
|
|
<div class="ui checkbox" id="privateFilterCheckbox" title="{{.i18n.Tr "home.show_only_public"}}" v-if="privateFilter === 'public'">
|
|
|
|
<input type="checkbox">
|
2020-12-09 19:03:19 +00:00
|
|
|
<label>
|
|
|
|
{{svg "octicon-lock" 16 "mr-2"}}
|
|
|
|
{{.i18n.Tr "home.show_private"}}
|
|
|
|
</label>
|
2020-05-16 20:07:01 +00:00
|
|
|
</div>
|
|
|
|
<div class="ui checkbox" id="privateFilterCheckbox" title="{{.i18n.Tr "home.show_only_private"}}" v-if="privateFilter === 'private'">
|
|
|
|
<input type="checkbox">
|
2020-12-09 19:03:19 +00:00
|
|
|
<label>
|
|
|
|
{{svg "octicon-lock" 16 "mr-2"}}
|
|
|
|
{{.i18n.Tr "home.show_private"}}
|
|
|
|
</label>
|
2020-05-16 20:07:01 +00:00
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-03-30 06:49:54 +00:00
|
|
|
</div>
|
2021-10-19 04:38:33 +00:00
|
|
|
<div class="ui secondary tiny pointing borderless menu center grid repos-filter">
|
2020-03-30 06:49:54 +00:00
|
|
|
<a class="item" :class="{active: reposFilter === 'all'}" @click="changeReposFilter('all')">
|
|
|
|
{{.i18n.Tr "all"}}
|
|
|
|
<div v-show="reposFilter === 'all'" class="ui circular mini grey label">${repoTypeCount}</div>
|
|
|
|
</a>
|
|
|
|
<a class="item" :class="{active: reposFilter === 'sources'}" @click="changeReposFilter('sources')">
|
|
|
|
{{.i18n.Tr "sources"}}
|
|
|
|
<div v-show="reposFilter === 'sources'" class="ui circular mini grey label">${repoTypeCount}</div>
|
|
|
|
</a>
|
|
|
|
<a class="item" :class="{active: reposFilter === 'forks'}" @click="changeReposFilter('forks')">
|
|
|
|
{{.i18n.Tr "forks"}}
|
|
|
|
<div v-show="reposFilter === 'forks'" class="ui circular mini grey label">${repoTypeCount}</div>
|
|
|
|
</a>
|
|
|
|
<a class="item" :class="{active: reposFilter === 'mirrors'}" @click="changeReposFilter('mirrors')">
|
|
|
|
{{.i18n.Tr "mirrors"}}
|
|
|
|
<div v-show="reposFilter === 'mirrors'" class="ui circular mini grey label">${repoTypeCount}</div>
|
|
|
|
</a>
|
|
|
|
<a class="item" :class="{active: reposFilter === 'collaborative'}" @click="changeReposFilter('collaborative')">
|
|
|
|
{{.i18n.Tr "collaborative"}}
|
|
|
|
<div v-show="reposFilter === 'collaborative'" class="ui circular mini grey label">${repoTypeCount}</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-11-12 15:59:33 +00:00
|
|
|
<div v-if="repos.length" class="ui attached table segment rounded-bottom">
|
2020-03-30 06:49:54 +00:00
|
|
|
<ul class="repo-owner-name-list">
|
2020-06-05 11:41:06 +00:00
|
|
|
<li v-for="repo in repos" :class="{'private': repo.private || repo.internal}">
|
2021-11-16 18:18:25 +00:00
|
|
|
<a class="repo-list-link df ac sb" :href="repo.html_url">
|
2021-02-25 12:35:43 +00:00
|
|
|
<div class="text truncate item-name f1">
|
2020-12-04 11:18:37 +00:00
|
|
|
<component v-bind:is="repoIcon(repo)" size="16"></component>
|
2021-02-25 12:35:43 +00:00
|
|
|
<strong>${repo.full_name}</strong>
|
2020-12-09 19:03:19 +00:00
|
|
|
<span v-if="repo.archived">
|
|
|
|
{{svg "octicon-archive" 16 "ml-2"}}
|
|
|
|
</span>
|
2020-12-04 11:18:37 +00:00
|
|
|
</div>
|
2021-04-15 16:53:57 +00:00
|
|
|
{{if not .DisableStars}}
|
|
|
|
<div class="text light grey df ac">
|
|
|
|
${repo.stars_count}
|
|
|
|
{{svg "octicon-star" 16 "ml-2"}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2020-03-30 06:49:54 +00:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2020-12-17 19:58:21 +00:00
|
|
|
<div v-if="showMoreReposLink" class="center py-3 border-secondary-top">
|
|
|
|
<div class="ui borderless pagination menu narrow">
|
|
|
|
<a class="item navigation py-2" :class="{'disabled': page === 1}"
|
|
|
|
@click="changePage(1)" title="{{$.i18n.Tr "admin.first_page"}}">
|
|
|
|
{{svg "gitea-double-chevron-left" 16 "mr-2"}}
|
|
|
|
</a>
|
|
|
|
<a class="item navigation py-2" :class="{'disabled': page === 1}"
|
|
|
|
@click="changePage(page - 1)" title="{{$.i18n.Tr "repo.issues.previous"}}">
|
|
|
|
{{svg "octicon-chevron-left" 16 "mr-2"}}
|
|
|
|
</a>
|
|
|
|
<a class="active item py-2">${page}</a>
|
|
|
|
<a class="item navigation" :class="{'disabled': page === finalPage}"
|
|
|
|
@click="changePage(page + 1)" title="{{$.i18n.Tr "repo.issues.next"}}">
|
|
|
|
{{svg "octicon-chevron-right" 16 "ml-2"}}
|
|
|
|
</a>
|
|
|
|
<a class="item navigation py-2" :class="{'disabled': page === finalPage}"
|
|
|
|
@click="changePage(finalPage)" title="{{$.i18n.Tr "admin.last_page"}}">
|
|
|
|
{{svg "gitea-double-chevron-right" 16 "ml-2"}}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-03-30 06:49:54 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-12-04 11:18:37 +00:00
|
|
|
<div v-if="!isOrganization" v-show="tab === 'organizations'" class="ui tab active list dashboard-orgs">
|
|
|
|
<h4 class="ui top attached header df ac">
|
|
|
|
<div class="f1 df ac">
|
|
|
|
{{.i18n.Tr "home.my_orgs"}}
|
|
|
|
<span class="ui grey label ml-3">${organizationsTotalCount}</span>
|
2020-03-30 06:49:54 +00:00
|
|
|
</div>
|
2021-11-18 03:26:50 +00:00
|
|
|
<a v-if="canCreateOrganization" class="tooltip" :href="subUrl + '/org/create'" data-content="{{.i18n.Tr "new_org"}}" data-position="left center">
|
2020-12-04 11:18:37 +00:00
|
|
|
{{svg "octicon-plus"}}
|
|
|
|
<span class="sr-only">{{.i18n.Tr "new_org"}}</span>
|
|
|
|
</a>
|
2020-03-30 06:49:54 +00:00
|
|
|
</h4>
|
2020-11-12 15:59:33 +00:00
|
|
|
<div v-if="organizations.length" class="ui attached table segment rounded-bottom">
|
2020-03-30 06:49:54 +00:00
|
|
|
<ul class="repo-owner-name-list">
|
|
|
|
<li v-for="org in organizations">
|
2021-11-16 18:18:25 +00:00
|
|
|
<a class="repo-list-link df ac sb" :href="subUrl + '/' + encodeURIComponent(org.name)">
|
2021-02-25 12:35:43 +00:00
|
|
|
<div class="text truncate item-name f1">
|
2020-12-04 11:18:37 +00:00
|
|
|
{{svg "octicon-organization" 16 "mr-2"}}
|
2021-02-25 12:35:43 +00:00
|
|
|
<strong>${org.name}</strong>
|
2020-12-04 11:18:37 +00:00
|
|
|
</div>
|
|
|
|
<div class="text light grey df ac">
|
|
|
|
${org.num_repos}
|
2020-12-17 19:58:21 +00:00
|
|
|
{{svg "octicon-repo" 16 "ml-2 mt-1"}}
|
2020-12-04 11:18:37 +00:00
|
|
|
</div>
|
2020-03-30 06:49:54 +00:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</repo-search>
|
|
|
|
</div>
|