jmou/cgithub
git clone https://github.com/jmou/cgithub.git
git clone git@github.com:jmou/cgithub.git
Loading…
(top)/views/_tree.eta
1.26 KB / 38 lines / 35 loc
History
View raw
<%~ include("./_nav.eta", {...it, view: "tree"}) %>

<% const commitPath = it.path && it.path !== "/" ? it.path : ""; %>
<div class="placeholder commit box" data-src="/api/<%= it.repo.owner %>/<%= it.repo.name %>/latest-commit/<%= it.branch %>/<%= commitPath %>">
  <div>
    <div>…</div>
    <div class="commit-author">…</div>
  </div>
</div>

<table>
  <% for (const item of it.items) { %>
    <tr>
      <td>
        <% if (item.contentType === 'directory') { %>
          <img src="/static/icons/folder-simple.svg" alt="tree" class="icon">
          <a href="/<%= it.repo.owner %>/<%= it.repo.name %>/tree/<%= it.branch %>/<%= item.path %>"><%= item.name %>/</a>
        <% } else { %>
          <img src="/static/icons/file.svg" alt="blob" class="icon">
          <a href="/<%= it.repo.owner %>/<%= it.repo.name %>/blob/<%= it.branch %>/<%= item.path %>"><%= item.name %></a>
        <% } %>
      </td>
    </tr>
  <% } %>
</table>

<% if (it.overviewHtml) { %>
  <% for (const [filename, html] of Object.entries(it.overviewHtml)) { %>
    <% if (html !== null) { %>
      <div class="overview box">
        <header><%= filename %></header>
        <%~ html %>
      </div>
    <% } else { %>
      <!-- No rendered content for <%= filename %> -->
    <% } %>
  <% } %>
<% } %>