2018-03-21 16:22:55 +08:00
|
|
|
<%= content_for :sidebar do %>
|
|
|
|
<div id="slide-panel" class="visible">
|
2019-07-19 22:25:14 +08:00
|
|
|
<div id="repo-tree" class="tree">
|
2018-03-21 16:22:55 +08:00
|
|
|
<ul>
|
2019-08-09 18:54:22 +08:00
|
|
|
<% if can_create_repositories?(current_team) %>
|
|
|
|
<li>
|
|
|
|
<span class="tree-link link-wrap no-indent">
|
2019-08-19 20:01:48 +08:00
|
|
|
<a class="sidebar-button create-new-repository" data-remote="true"
|
|
|
|
href="<%= create_modal_team_repositories_path(current_team) %>">
|
2019-08-09 18:54:22 +08:00
|
|
|
<span class="fas fa-plus"></span>
|
|
|
|
<%= t('libraries.index.no_libraries.create_new_button') %>
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
<% end %>
|
2018-03-21 16:22:55 +08:00
|
|
|
<% repositories.each do |repository| %>
|
2019-07-19 22:25:14 +08:00
|
|
|
<li class="<%= 'active parent_li' if current_page?(repository_path(repository)) %>" >
|
|
|
|
<span class="tree-link line-wrap no-indent">
|
|
|
|
<% if current_page?(repository_path(repository)) %>
|
|
|
|
<span title="<%= repository.name %>"><%= repository.name %></span>
|
|
|
|
<% else %>
|
|
|
|
<%= link_to repository.name,
|
|
|
|
repository_path(repository),
|
|
|
|
data: { 'no-turbolink' => 'true' } %>
|
|
|
|
<% end %>
|
2019-07-17 22:00:49 +08:00
|
|
|
|
2019-07-24 22:01:02 +08:00
|
|
|
<% if repository.shared_with?(current_team) %>
|
2019-08-12 21:49:08 +08:00
|
|
|
<% if repository.shared_with_write?(current_team) %>
|
2019-07-25 21:11:38 +08:00
|
|
|
<%= draw_custom_icon('shared-edit') %>
|
2019-07-29 22:39:23 +08:00
|
|
|
<% else %>
|
2019-07-25 21:11:38 +08:00
|
|
|
<%= draw_custom_icon('shared-read') %>
|
|
|
|
<% end %>
|
2019-08-19 21:43:55 +08:00
|
|
|
<% elsif repository.i_shared?(current_team) %>
|
|
|
|
<%= draw_custom_icon('i-shared') %>
|
2019-07-19 22:25:14 +08:00
|
|
|
<% end %>
|
2018-04-12 23:12:45 +08:00
|
|
|
</span>
|
|
|
|
</li>
|
2018-03-21 16:22:55 +08:00
|
|
|
<% end %>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
2018-03-28 20:12:11 +08:00
|
|
|
|
|
|
|
<script>
|
2018-07-19 23:56:42 +08:00
|
|
|
$('#wrapper').show();
|
2018-03-28 20:12:11 +08:00
|
|
|
</script>
|