41 lines
1.7 KiB
Text
41 lines
1.7 KiB
Text
<%#
|
|
# @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
|
|
#%>
|
|
|
|
<%= render :partial => 'layouts/head' %>
|
|
<body class="<%= authenticated? ? "authenticated" : "unauthenticated" %> controller-<%= controller_name %> action-<%= action_name %>">
|
|
<div class="main" id="react-app"></div>
|
|
<%= yield %>
|
|
<% if devise_error_messages? %>
|
|
<%= devise_error_messages! %>
|
|
<% end %>
|
|
<% if notice %>
|
|
<%= notice %>
|
|
<% end %>
|
|
<% if alert %>
|
|
<%= alert %>
|
|
<% end %>
|
|
<% if authenticated? %>
|
|
<% # for creating and pulling in topics and synapses %>
|
|
<% if controller_name == 'maps' && action_name == "conversation" %>
|
|
<%= render :partial => 'maps/newtopicsecret' %>
|
|
<% else %>
|
|
<%= render :partial => 'maps/newtopic' %>
|
|
<% end %>
|
|
<%= render :partial => 'maps/newsynapse' %>
|
|
<% # for populating the change metacode list on the topic card %>
|
|
<%= render :partial => 'shared/metacodeoptions' %>
|
|
<% end %>
|
|
<div class="hidden"><%= render :partial => 'shared/filterBox' %></div>
|
|
<div id="loading"></div>
|
|
<script type="text/javascript">
|
|
Metamaps.ServerData.unreadNotificationsCount = <%= current_user ? user_unread_notification_count : 0 %>
|
|
Metamaps.ServerData.mapIsStarred = <%= current_user && @map && current_user.starred_map?(@map) ? true : false %>
|
|
Metamaps.ServerData.mobileTitle = "<%= yield(:mobile_title) %>"
|
|
Metamaps.ServerData.ActiveMapper = <%= current_user ? current_user.to_json({follows: true, email: true, follow_settings: true}).html_safe : nil %>
|
|
Metamaps.Loading.setup()
|
|
</script>
|
|
<%= render :partial => 'layouts/foot' %>
|