metamaps--metamaps/app/views/layouts/application.html.erb

72 lines
2.5 KiB
Plaintext
Raw Normal View History

2016-02-03 13:38:41 +00:00
<%#
# @file
# Main application file. Holds scaffolding present on every page.
# Then a certain non-partial view (no _ preceding filename) will be
# displayed within, based on URL
#%>
2016-03-25 04:26:07 +00:00
<%= render :partial => 'layouts/head' %>
2016-02-03 13:38:41 +00:00
<body class="<%= authenticated? ? "authenticated" : "unauthenticated" %>">
2016-08-01 17:38:57 +00:00
2016-02-03 13:38:41 +00:00
<%= content_tag :div, class: "main" do %>
<% classes = action_name == "home" ? "homePage" : ""
classes += action_name == "home" && authenticated? ? " explorePage" : ""
classes += controller_name == "maps" && action_name == "index" ? " explorePage" : ""
2016-03-25 04:26:07 +00:00
if controller_name == "maps" && action_name == "show"
2016-02-03 13:38:41 +00:00
classes += " mapPage"
2016-03-11 22:54:23 +00:00
if policy(@map).update?
2016-02-03 13:38:41 +00:00
classes += " canEditMap"
end
if @map.permission == "commons"
classes += " commonsMap"
end
end
classes += controller_name == "topics" && action_name == "show" ? " topicPage" : ""
%>
<div class="wrapper <%= classes %>" id="wrapper">
2016-03-25 04:26:07 +00:00
<%= render :partial => 'layouts/upperelements', :locals => { :appsPage => false } %>
2016-02-03 13:38:41 +00:00
<%= yield %>
<div class="showcard mapElement mapElementHidden" id="showcard"></div> <!-- the topic card -->
<% if authenticated? %>
<% # for creating and pulling in topics and synapses %>
<%= render :partial => 'maps/newtopic' %>
<%= render :partial => 'maps/newsynapse' %>
<% # for populating the change metacode list on the topic card %>
<%= render :partial => 'shared/metacodeoptions' %>
<% end %>
<%= render :partial => 'layouts/lowermapelements' %>
2016-08-01 17:38:57 +00:00
<div id="exploreMaps"></div>
2016-07-31 03:48:22 +00:00
<div id="exploreMapsHeader"></div>
2016-08-01 17:38:57 +00:00
<div id="infovis"></div>
<div id="instructions">
<div class="addTopic">
Double-click to<br>add a topic!
</div>
<div class="tabKey">
Use Tab & Shift+Tab to select a metacode
</div>
<div class="enterKey">
Press Enter to add the topic
</div>
</div>
<% if devise_error_messages? %>
<p id="toast"><%= devise_error_messages! %></p>
<% elsif notice %>
<p id="toast"><%= notice %></p>
<% end %>
2016-02-03 13:38:41 +00:00
<div id="loading"></div>
</div>
<% end %>
2016-03-25 04:26:07 +00:00
<%= render :partial => 'layouts/foot' %>