summaryrefslogtreecommitdiffstats
path: root/web_src/js/features/repo-commit.js
blob: e2eef3ee590288b6e63c33193f6d780d45b4af8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import $ from 'jquery';
import {createTippy} from '../modules/tippy.js';
import {toggleElem} from '../utils/dom.js';

const {csrfToken} = window.config;

export function initRepoEllipsisButton() {
  $('.ellipsis-button').on('click', function (e) {
    e.preventDefault();
    const expanded = $(this).attr('aria-expanded') === 'true';
    toggleElem($(this).parent().find('.commit-body'));
    $(this).attr('aria-expanded', String(!expanded));
  });
}

export function initRepoCommitLastCommitLoader() {
  const entryMap = {};

  const entries = $('table#repo-files-table tr.notready')
    .map((_, v) => {
      entryMap[$(v).attr('data-entryname')] = $(v);
      return $(v).attr('data-entryname');
    })
    .get();

  if (entries.length === 0) {
    return;
  }

  const lastCommitLoaderURL = $('table#repo-files-table').data('lastCommitLoaderUrl');

  if (entries.length > 200) {
    $.post(lastCommitLoaderURL, {
      _csrf: csrfToken,
    }, (data) => {
      $('table#repo-files-table').replaceWith(data);
    });
    return;
  }

  $.post(lastCommitLoaderURL, {
    _csrf: csrfToken,
    'f': entries,
  }, (data) => {
    $(data).find('tr').each((_, row) => {
      if (row.className === 'commit-list') {
        $('table#repo-files-table .commit-list').replaceWith(row);
        return;
      }
      // there are other <tr> rows in response (eg: <tr class="has-parent">)
      // at the moment only the "data-entryname" rows should be processed
      const entryName = $(row).attr('data-entryname');
      if (entryName) {
        entryMap[entryName].replaceWith(row);
      }
    });
  });
}

export function initCommitStatuses() {
  $('.commit-statuses-trigger').each(function () {
    const top = $('.repository.file.list').length > 0 || $('.repository.diff').length > 0;

    createTippy(this, {
      content: this.nextElementSibling,
      placement: top ? 'top-start' : 'bottom-start',
      interactive: true,
    });
  });
}