gitlab-org--gitlab-foss/app/assets/javascripts/commits.js

101 lines
3.1 KiB
JavaScript
Raw Normal View History

import $ from 'jquery';
import { n__ } from '~/locale';
import axios from './lib/utils/axios_utils';
import { localTimeAgo } from './lib/utils/datetime_utility';
2017-12-15 09:31:58 +00:00
import Pager from './pager';
2017-11-13 09:11:54 +00:00
2018-02-15 17:17:29 +00:00
export default class CommitsList {
constructor(limit = 0) {
this.timer = null;
2016-07-24 20:45:11 +00:00
this.$contentList = $('.content_list');
Pager.init({ limit: parseInt(limit, 10), prepareData: this.processCommits.bind(this) });
this.content = $('#commits-list');
this.searchField = $('#commits-search');
this.lastSearch = this.searchField.val();
2018-02-15 17:17:29 +00:00
this.initSearch();
}
2016-07-24 20:45:11 +00:00
2018-02-15 17:17:29 +00:00
initSearch() {
this.timer = null;
2018-02-15 17:17:29 +00:00
this.searchField.on('keyup', () => {
clearTimeout(this.timer);
this.timer = setTimeout(this.filterResults.bind(this), 500);
});
}
2016-07-24 20:45:11 +00:00
2018-02-15 17:17:29 +00:00
filterResults() {
const form = $('.commits-search-form');
2018-02-15 17:17:29 +00:00
const search = this.searchField.val();
if (search === this.lastSearch) return Promise.resolve();
const commitsUrl = `${form.attr('action')}?${form.serialize()}`;
this.content.addClass('gl-opacity-5');
2018-10-24 19:17:03 +00:00
const params = form.serializeArray().reduce(
(acc, obj) =>
Object.assign(acc, {
[obj.name]: obj.value,
}),
{},
);
2018-01-26 09:41:13 +00:00
2018-10-24 19:17:03 +00:00
return axios
.get(form.attr('action'), {
params,
})
2018-01-26 09:41:13 +00:00
.then(({ data }) => {
2018-02-15 17:17:29 +00:00
this.lastSearch = search;
this.content.html(data.html);
this.content.removeClass('gl-opacity-5');
2018-01-26 09:41:13 +00:00
// Change url so if user reload a page - search results are saved
2018-10-24 19:17:03 +00:00
window.history.replaceState(
{
page: commitsUrl,
},
document.title,
commitsUrl,
);
2018-01-26 09:41:13 +00:00
})
.catch(() => {
this.content.removeClass('gl-opacity-5');
2018-02-15 17:17:29 +00:00
this.lastSearch = null;
2018-01-26 09:41:13 +00:00
});
2018-02-15 17:17:29 +00:00
}
2016-07-24 20:45:11 +00:00
// Prepare loaded data.
2018-02-15 17:17:29 +00:00
processCommits(data) {
let processedData = data;
const $processedData = $(processedData);
2018-02-15 17:17:29 +00:00
const $commitsHeadersLast = this.$contentList.find('li.js-commit-header').last();
const lastShownDay = $commitsHeadersLast.data('day');
const $loadedCommitsHeadersFirst = $processedData.filter('li.js-commit-header').first();
const loadedShownDayFirst = $loadedCommitsHeadersFirst.data('day');
let commitsCount;
// If commits headers show the same date,
// remove the last header and change the previous one.
if (lastShownDay === loadedShownDayFirst) {
// Last shown commits count under the last commits header.
commitsCount = $commitsHeadersLast.nextUntil('li.js-commit-header').find('li.commit').length;
// Remove duplicate of commits header.
processedData = $processedData.not(`li.js-commit-header[data-day='${loadedShownDayFirst}']`);
// Update commits count in the previous commits header.
2018-10-24 19:17:03 +00:00
commitsCount += Number(
$(processedData).nextUntil('li.js-commit-header').first().find('li.commit').length,
2018-10-24 19:17:03 +00:00
);
2018-10-24 19:17:03 +00:00
$commitsHeadersLast
.find('span.commits-count')
.text(n__('%d commit', '%d commits', commitsCount));
}
localTimeAgo($processedData.find('.js-timeago').get());
return processedData;
2018-02-15 17:17:29 +00:00
}
}