2015-11-13 18:05:48 +01:00
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="dashboard feeds">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "user/dashboard/navbar" .}}
|
|
|
|
<div class="ui container">
|
2017-02-08 02:37:23 +01:00
|
|
|
{{template "base/alert" .}}
|
2017-12-31 01:47:52 +01:00
|
|
|
<div class="ui mobile reversed stackable grid">
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="ten wide column">
|
2018-10-23 04:57:42 +02:00
|
|
|
{{if .EnableHeatmap}}
|
2018-11-27 10:36:54 +01:00
|
|
|
<div id="user-heatmap" style="padding-right: 40px">
|
|
|
|
<activity-heatmap :locale="locale" :suburl="suburl" :user="heatmapUser">
|
|
|
|
<div slot="loading">
|
|
|
|
<div class="ui active centered inline indeterminate text loader" id="loading-heatmap">{{.i18n.Tr "user.heatmap.loading"}}</div>
|
|
|
|
</div>
|
|
|
|
</activity-heatmap>
|
|
|
|
</div>
|
2018-10-23 04:57:42 +02:00
|
|
|
<div class="ui divider"></div>
|
|
|
|
{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "user/dashboard/feeds" .}}
|
|
|
|
</div>
|
2017-08-17 18:04:39 +02:00
|
|
|
<div id="app" class="six wide column">
|
2017-08-22 15:00:34 +02:00
|
|
|
<repo-search
|
|
|
|
:search-limit="searchLimit"
|
|
|
|
:suburl="suburl"
|
|
|
|
:uid="uid"
|
|
|
|
:more-repos-link="'{{.ContextUser.HomeLink}}'"
|
|
|
|
{{if not .ContextUser.IsOrganization}}
|
|
|
|
:organizations="[
|
|
|
|
{{range .ContextUser.Orgs}}
|
|
|
|
{name: '{{.Name}}', num_repos: '{{.NumRepos}}'},
|
|
|
|
{{end}}
|
|
|
|
]"
|
|
|
|
:is-organization="false"
|
|
|
|
:organizations-total-count="{{.ContextUser.GetOrganizationCount}}"
|
|
|
|
:can-create-organization="{{.SignedUser.CanCreateOrganization}}"
|
|
|
|
{{end}}
|
|
|
|
inline-template
|
|
|
|
v-cloak
|
|
|
|
>
|
2017-08-19 03:37:48 +02:00
|
|
|
<div>
|
2017-12-31 01:47:52 +01:00
|
|
|
<div v-if="!isOrganization" class="ui two item tabable menu">
|
2017-08-19 03:37:48 +02:00
|
|
|
<a :class="{item: true, active: tab === 'repos'}" @click="changeTab('repos')">{{.i18n.Tr "repository"}}</a>
|
2017-08-22 15:00:34 +02:00
|
|
|
<a :class="{item: true, active: tab === 'organizations'}" @click="changeTab('organizations')">{{.i18n.Tr "organization"}}</a>
|
2017-08-19 03:37:48 +02:00
|
|
|
</div>
|
2017-12-03 00:16:35 +01:00
|
|
|
<div v-show="tab === 'repos'" class="ui tab active list dashboard-repos">
|
2017-08-19 03:37:48 +02:00
|
|
|
<h4 class="ui top attached header">
|
2017-08-22 15:00:34 +02:00
|
|
|
{{.i18n.Tr "home.my_repos"}} <span class="ui grey label">${reposTotalCount}</span>
|
2017-08-19 03:37:48 +02:00
|
|
|
<div class="ui right">
|
2017-08-23 06:08:20 +02:00
|
|
|
<a class="poping up" :href="suburl + '/repo/create'" data-content="{{.i18n.Tr "new_repo"}}" data-variation="tiny inverted" data-position="left center">
|
2017-08-19 03:37:48 +02:00
|
|
|
<i class="plus icon"></i>
|
|
|
|
<span class="sr-only">{{.i18n.Tr "new_repo"}}</span>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached secondary segment repos-search">
|
|
|
|
<div class="ui fluid icon input" :class="{loading: isLoading}">
|
2017-11-01 20:39:05 +01:00
|
|
|
<input @input="searchRepos(reposFilter)" v-model="searchQuery" ref="search" placeholder="{{.i18n.Tr "home.search_repos"}}">
|
2017-08-19 03:37:48 +02:00
|
|
|
<i class="search icon"></i>
|
|
|
|
</div>
|
|
|
|
<div class="ui secondary tiny pointing borderless menu center aligned grid repos-filter">
|
2017-11-01 20:39:05 +01: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>
|
2017-08-19 03:37:48 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="ui attached table segment">
|
|
|
|
<ul class="repo-owner-name-list">
|
|
|
|
<li v-for="repo in repos" :class="{'private': repo.private}" v-show="showRepo(repo, reposFilter)">
|
2017-08-22 15:00:34 +02:00
|
|
|
<a :href="suburl + '/' + repo.full_name">
|
2017-08-19 03:37:48 +02:00
|
|
|
<i :class="repoClass(repo)"></i>
|
2017-08-22 15:00:34 +02:00
|
|
|
<strong class="text truncate item-name">${repo.full_name}</strong>
|
2017-08-19 03:37:48 +02:00
|
|
|
<span class="ui right text light grey">
|
2017-08-22 15:00:34 +02:00
|
|
|
${repo.stars_count} <i class="octicon octicon-star rear"></i>
|
2017-08-19 03:37:48 +02:00
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
2017-11-01 20:39:05 +01:00
|
|
|
<li v-if="showMoreReposLink">
|
2017-08-22 15:00:34 +02:00
|
|
|
<a :href="moreReposLink">{{.i18n.Tr "home.show_more_repos"}}</a>
|
2017-08-19 03:37:48 +02:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-08-22 15:00:34 +02:00
|
|
|
<div v-if="!isOrganization" v-show="tab === 'organizations'" class="ui tab active list">
|
|
|
|
<h4 class="ui top attached header">
|
|
|
|
{{.i18n.Tr "home.my_orgs"}} <span class="ui grey label">${organizationsTotalCount}</span>
|
|
|
|
<div v-if="canCreateOrganization" class="ui right">
|
|
|
|
<a class="poping up" :href="suburl + '/org/create'" data-content="{{.i18n.Tr "new_org"}}" data-variation="tiny inverted" data-position="left center">
|
|
|
|
<i class="plus icon"></i>
|
|
|
|
<span class="sr-only">{{.i18n.Tr "new_org"}}</span>
|
|
|
|
</a>
|
2017-08-19 03:37:48 +02:00
|
|
|
</div>
|
2017-08-22 15:00:34 +02:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached table segment">
|
|
|
|
<ul class="repo-owner-name-list">
|
|
|
|
<li v-for="org in organizations">
|
|
|
|
<a :href="suburl + '/' + org.name">
|
|
|
|
<i class="octicon octicon-organization"></i>
|
|
|
|
<strong class="text truncate item-name">${org.name}</strong>
|
|
|
|
<span class="ui right text light grey">
|
|
|
|
${org.num_repos} <i class="octicon octicon-repo rear"></i>
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2017-08-19 03:37:48 +02:00
|
|
|
</div>
|
2017-08-22 15:00:34 +02:00
|
|
|
</div>
|
2017-08-19 03:37:48 +02:00
|
|
|
</div>
|
2017-08-20 21:48:41 +02:00
|
|
|
</repo-search>
|
|
|
|
</div>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2014-07-26 06:24:27 +02:00
|
|
|
</div>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "base/footer" .}}
|