2022-10-01 16:26:38 +02:00
|
|
|
import {createApp, nextTick} from 'vue';
|
2022-01-28 22:00:11 +01:00
|
|
|
import $ from 'jquery';
|
2021-10-15 04:35:26 +02:00
|
|
|
import {initVueSvg, vueDelimiters} from './VueComponentLoader.js';
|
2022-08-09 14:37:34 +02:00
|
|
|
import {initTooltip} from '../modules/tippy.js';
|
2021-10-15 04:35:26 +02:00
|
|
|
|
2021-10-21 09:37:43 +02:00
|
|
|
const {appSubUrl, assetUrlPrefix, pageData} = window.config;
|
2021-10-15 04:35:26 +02:00
|
|
|
|
2022-10-01 16:26:38 +02:00
|
|
|
function initVueComponents(app) {
|
|
|
|
app.component('repo-search', {
|
2021-10-15 04:35:26 +02:00
|
|
|
delimiters: vueDelimiters,
|
|
|
|
props: {
|
|
|
|
searchLimit: {
|
|
|
|
type: Number,
|
|
|
|
default: 10
|
|
|
|
},
|
|
|
|
subUrl: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
uid: {
|
|
|
|
type: Number,
|
|
|
|
default: 0
|
|
|
|
},
|
|
|
|
teamId: {
|
|
|
|
type: Number,
|
|
|
|
required: false,
|
|
|
|
default: 0
|
|
|
|
},
|
|
|
|
organizations: {
|
|
|
|
type: Array,
|
|
|
|
default: () => [],
|
|
|
|
},
|
|
|
|
isOrganization: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true
|
|
|
|
},
|
|
|
|
canCreateOrganization: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
organizationsTotalCount: {
|
|
|
|
type: Number,
|
|
|
|
default: 0
|
|
|
|
},
|
|
|
|
moreReposLink: {
|
|
|
|
type: String,
|
|
|
|
default: ''
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
const params = new URLSearchParams(window.location.search);
|
|
|
|
|
|
|
|
let tab = params.get('repo-search-tab');
|
|
|
|
if (!tab) {
|
|
|
|
tab = 'repos';
|
|
|
|
}
|
|
|
|
|
|
|
|
let reposFilter = params.get('repo-search-filter');
|
|
|
|
if (!reposFilter) {
|
|
|
|
reposFilter = 'all';
|
|
|
|
}
|
|
|
|
|
|
|
|
let privateFilter = params.get('repo-search-private');
|
|
|
|
if (!privateFilter) {
|
|
|
|
privateFilter = 'both';
|
|
|
|
}
|
|
|
|
|
|
|
|
let archivedFilter = params.get('repo-search-archived');
|
|
|
|
if (!archivedFilter) {
|
|
|
|
archivedFilter = 'unarchived';
|
|
|
|
}
|
|
|
|
|
|
|
|
let searchQuery = params.get('repo-search-query');
|
|
|
|
if (!searchQuery) {
|
|
|
|
searchQuery = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
let page = 1;
|
|
|
|
try {
|
|
|
|
page = parseInt(params.get('repo-search-page'));
|
|
|
|
} catch {
|
|
|
|
// noop
|
|
|
|
}
|
|
|
|
if (!page) {
|
|
|
|
page = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
2023-03-01 03:22:14 +01:00
|
|
|
hasMounted: false, // accessing $refs in computed() need to wait for mounted
|
2021-10-15 04:35:26 +02:00
|
|
|
tab,
|
|
|
|
repos: [],
|
|
|
|
reposTotalCount: 0,
|
|
|
|
reposFilter,
|
|
|
|
archivedFilter,
|
|
|
|
privateFilter,
|
|
|
|
page,
|
|
|
|
finalPage: 1,
|
|
|
|
searchQuery,
|
|
|
|
isLoading: false,
|
2021-10-21 09:37:43 +02:00
|
|
|
staticPrefix: assetUrlPrefix,
|
2021-10-15 04:35:26 +02:00
|
|
|
counts: {},
|
|
|
|
repoTypes: {
|
|
|
|
all: {
|
|
|
|
searchMode: '',
|
|
|
|
},
|
|
|
|
forks: {
|
|
|
|
searchMode: 'fork',
|
|
|
|
},
|
|
|
|
mirrors: {
|
|
|
|
searchMode: 'mirror',
|
|
|
|
},
|
|
|
|
sources: {
|
|
|
|
searchMode: 'source',
|
|
|
|
},
|
|
|
|
collaborative: {
|
|
|
|
searchMode: 'collaborative',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
// used in `repolist.tmpl`
|
|
|
|
showMoreReposLink() {
|
|
|
|
return this.repos.length > 0 && this.repos.length < this.counts[`${this.reposFilter}:${this.archivedFilter}:${this.privateFilter}`];
|
|
|
|
},
|
|
|
|
searchURL() {
|
2022-04-07 20:59:56 +02:00
|
|
|
return `${this.subUrl}/repo/search?sort=updated&order=desc&uid=${this.uid}&team_id=${this.teamId}&q=${this.searchQuery
|
2021-10-15 04:35:26 +02:00
|
|
|
}&page=${this.page}&limit=${this.searchLimit}&mode=${this.repoTypes[this.reposFilter].searchMode
|
|
|
|
}${this.reposFilter !== 'all' ? '&exclusive=1' : ''
|
|
|
|
}${this.archivedFilter === 'archived' ? '&archived=true' : ''}${this.archivedFilter === 'unarchived' ? '&archived=false' : ''
|
|
|
|
}${this.privateFilter === 'private' ? '&is_private=true' : ''}${this.privateFilter === 'public' ? '&is_private=false' : ''
|
|
|
|
}`;
|
|
|
|
},
|
|
|
|
repoTypeCount() {
|
|
|
|
return this.counts[`${this.reposFilter}:${this.archivedFilter}:${this.privateFilter}`];
|
2023-03-01 03:22:14 +01:00
|
|
|
},
|
|
|
|
checkboxArchivedFilterTitle() {
|
|
|
|
return this.hasMounted && this.$refs.checkboxArchivedFilter?.getAttribute(`data-title-${this.archivedFilter}`);
|
|
|
|
},
|
|
|
|
checkboxArchivedFilterProps() {
|
|
|
|
return {checked: this.archivedFilter === 'archived', indeterminate: this.archivedFilter === 'both'};
|
|
|
|
},
|
|
|
|
checkboxPrivateFilterTitle() {
|
|
|
|
return this.hasMounted && this.$refs.checkboxPrivateFilter?.getAttribute(`data-title-${this.privateFilter}`);
|
|
|
|
},
|
|
|
|
checkboxPrivateFilterProps() {
|
|
|
|
return {checked: this.privateFilter === 'private', indeterminate: this.privateFilter === 'both'};
|
|
|
|
},
|
2021-10-15 04:35:26 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
2022-10-01 16:26:38 +02:00
|
|
|
const el = document.getElementById('dashboard-repo-list');
|
2021-10-15 04:35:26 +02:00
|
|
|
this.changeReposFilter(this.reposFilter);
|
2022-10-01 16:26:38 +02:00
|
|
|
for (const elTooltip of el.querySelectorAll('.tooltip')) {
|
|
|
|
initTooltip(elTooltip);
|
2022-08-09 14:37:34 +02:00
|
|
|
}
|
2022-10-01 16:26:38 +02:00
|
|
|
$(el).find('.dropdown').dropdown();
|
|
|
|
nextTick(() => {
|
2021-10-15 04:35:26 +02:00
|
|
|
this.$refs.search.focus();
|
|
|
|
});
|
2023-03-01 03:22:14 +01:00
|
|
|
|
|
|
|
this.hasMounted = true;
|
2021-10-15 04:35:26 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
changeTab(t) {
|
|
|
|
this.tab = t;
|
|
|
|
this.updateHistory();
|
|
|
|
},
|
|
|
|
|
|
|
|
changeReposFilter(filter) {
|
|
|
|
this.reposFilter = filter;
|
|
|
|
this.repos = [];
|
|
|
|
this.page = 1;
|
2022-10-01 16:26:38 +02:00
|
|
|
this.counts[`${filter}:${this.archivedFilter}:${this.privateFilter}`] = 0;
|
2021-10-15 04:35:26 +02:00
|
|
|
this.searchRepos();
|
|
|
|
},
|
|
|
|
|
|
|
|
updateHistory() {
|
|
|
|
const params = new URLSearchParams(window.location.search);
|
|
|
|
|
|
|
|
if (this.tab === 'repos') {
|
|
|
|
params.delete('repo-search-tab');
|
|
|
|
} else {
|
|
|
|
params.set('repo-search-tab', this.tab);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.reposFilter === 'all') {
|
|
|
|
params.delete('repo-search-filter');
|
|
|
|
} else {
|
|
|
|
params.set('repo-search-filter', this.reposFilter);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.privateFilter === 'both') {
|
|
|
|
params.delete('repo-search-private');
|
|
|
|
} else {
|
|
|
|
params.set('repo-search-private', this.privateFilter);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.archivedFilter === 'unarchived') {
|
|
|
|
params.delete('repo-search-archived');
|
|
|
|
} else {
|
|
|
|
params.set('repo-search-archived', this.archivedFilter);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.searchQuery === '') {
|
|
|
|
params.delete('repo-search-query');
|
|
|
|
} else {
|
|
|
|
params.set('repo-search-query', this.searchQuery);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.page === 1) {
|
|
|
|
params.delete('repo-search-page');
|
|
|
|
} else {
|
|
|
|
params.set('repo-search-page', `${this.page}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
const queryString = params.toString();
|
|
|
|
if (queryString) {
|
|
|
|
window.history.replaceState({}, '', `?${queryString}`);
|
|
|
|
} else {
|
|
|
|
window.history.replaceState({}, '', window.location.pathname);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
toggleArchivedFilter() {
|
2023-03-01 03:22:14 +01:00
|
|
|
if (this.archivedFilter === 'unarchived') {
|
|
|
|
this.archivedFilter = 'archived';
|
|
|
|
} else if (this.archivedFilter === 'archived') {
|
|
|
|
this.archivedFilter = 'both';
|
|
|
|
} else { // including both
|
|
|
|
this.archivedFilter = 'unarchived';
|
2021-10-15 04:35:26 +02:00
|
|
|
}
|
|
|
|
this.page = 1;
|
|
|
|
this.repos = [];
|
2022-10-01 16:26:38 +02:00
|
|
|
this.counts[`${this.reposFilter}:${this.archivedFilter}:${this.privateFilter}`] = 0;
|
2021-10-15 04:35:26 +02:00
|
|
|
this.searchRepos();
|
|
|
|
},
|
|
|
|
|
|
|
|
togglePrivateFilter() {
|
2023-03-01 03:22:14 +01:00
|
|
|
if (this.privateFilter === 'both') {
|
|
|
|
this.privateFilter = 'public';
|
|
|
|
} else if (this.privateFilter === 'public') {
|
|
|
|
this.privateFilter = 'private';
|
|
|
|
} else { // including private
|
|
|
|
this.privateFilter = 'both';
|
2021-10-15 04:35:26 +02:00
|
|
|
}
|
|
|
|
this.page = 1;
|
|
|
|
this.repos = [];
|
2022-10-01 16:26:38 +02:00
|
|
|
this.counts[`${this.reposFilter}:${this.archivedFilter}:${this.privateFilter}`] = 0;
|
2021-10-15 04:35:26 +02:00
|
|
|
this.searchRepos();
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
changePage(page) {
|
|
|
|
this.page = page;
|
|
|
|
if (this.page > this.finalPage) {
|
|
|
|
this.page = this.finalPage;
|
|
|
|
}
|
|
|
|
if (this.page < 1) {
|
|
|
|
this.page = 1;
|
|
|
|
}
|
|
|
|
this.repos = [];
|
2022-10-01 16:26:38 +02:00
|
|
|
this.counts[`${this.reposFilter}:${this.archivedFilter}:${this.privateFilter}`] = 0;
|
2021-10-15 04:35:26 +02:00
|
|
|
this.searchRepos();
|
|
|
|
},
|
|
|
|
|
2022-04-26 22:34:30 +02:00
|
|
|
async searchRepos() {
|
2021-10-15 04:35:26 +02:00
|
|
|
this.isLoading = true;
|
|
|
|
|
|
|
|
const searchedMode = this.repoTypes[this.reposFilter].searchMode;
|
|
|
|
const searchedURL = this.searchURL;
|
|
|
|
const searchedQuery = this.searchQuery;
|
|
|
|
|
2022-04-26 22:34:30 +02:00
|
|
|
let response, json;
|
|
|
|
try {
|
|
|
|
if (!this.reposTotalCount) {
|
|
|
|
const totalCountSearchURL = `${this.subUrl}/repo/search?count_only=1&uid=${this.uid}&team_id=${this.teamId}&q=&page=1&mode=`;
|
|
|
|
response = await fetch(totalCountSearchURL);
|
|
|
|
this.reposTotalCount = response.headers.get('X-Total-Count');
|
2021-10-15 04:35:26 +02:00
|
|
|
}
|
2022-04-26 22:34:30 +02:00
|
|
|
|
|
|
|
response = await fetch(searchedURL);
|
|
|
|
json = await response.json();
|
|
|
|
} catch {
|
2021-10-15 04:35:26 +02:00
|
|
|
if (searchedURL === this.searchURL) {
|
|
|
|
this.isLoading = false;
|
|
|
|
}
|
2022-04-26 22:34:30 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (searchedURL === this.searchURL) {
|
|
|
|
this.repos = json.data;
|
|
|
|
const count = response.headers.get('X-Total-Count');
|
|
|
|
if (searchedQuery === '' && searchedMode === '' && this.archivedFilter === 'both') {
|
|
|
|
this.reposTotalCount = count;
|
|
|
|
}
|
2022-10-01 16:26:38 +02:00
|
|
|
this.counts[`${this.reposFilter}:${this.archivedFilter}:${this.privateFilter}`] = count;
|
2022-04-26 22:34:30 +02:00
|
|
|
this.finalPage = Math.ceil(count / this.searchLimit);
|
|
|
|
this.updateHistory();
|
|
|
|
this.isLoading = false;
|
|
|
|
}
|
2021-10-15 04:35:26 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
repoIcon(repo) {
|
|
|
|
if (repo.fork) {
|
|
|
|
return 'octicon-repo-forked';
|
|
|
|
} else if (repo.mirror) {
|
|
|
|
return 'octicon-mirror';
|
|
|
|
} else if (repo.template) {
|
|
|
|
return `octicon-repo-template`;
|
|
|
|
} else if (repo.private) {
|
|
|
|
return 'octicon-lock';
|
|
|
|
} else if (repo.internal) {
|
|
|
|
return 'octicon-repo';
|
|
|
|
}
|
|
|
|
return 'octicon-repo';
|
|
|
|
}
|
2022-10-01 16:26:38 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
template: document.getElementById('dashboard-repo-list-template'),
|
2021-10-15 04:35:26 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-10-16 19:28:04 +02:00
|
|
|
export function initDashboardRepoList() {
|
2021-10-15 04:35:26 +02:00
|
|
|
const el = document.getElementById('dashboard-repo-list');
|
|
|
|
const dashboardRepoListData = pageData.dashboardRepoList || null;
|
|
|
|
if (!el || !dashboardRepoListData) return;
|
|
|
|
|
2022-10-01 16:26:38 +02:00
|
|
|
const app = createApp({
|
2021-10-15 04:35:26 +02:00
|
|
|
delimiters: vueDelimiters,
|
2022-10-01 16:26:38 +02:00
|
|
|
data() {
|
2021-10-15 04:35:26 +02:00
|
|
|
return {
|
|
|
|
searchLimit: dashboardRepoListData.searchLimit || 0,
|
2021-10-21 09:37:43 +02:00
|
|
|
subUrl: appSubUrl,
|
2021-10-19 06:38:33 +02:00
|
|
|
uid: dashboardRepoListData.uid || 0,
|
2021-10-15 04:35:26 +02:00
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
2022-10-01 16:26:38 +02:00
|
|
|
initVueSvg(app);
|
|
|
|
initVueComponents(app);
|
|
|
|
app.mount(el);
|
2021-10-15 04:35:26 +02:00
|
|
|
}
|