2016-02-03 21:38:41 +08: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-24 21:26:07 -07:00
|
|
|
<%= render :partial => 'layouts/head' %>
|
2016-10-28 10:55:04 +08:00
|
|
|
<body class="<%= authenticated? ? "authenticated" : "unauthenticated" %> controller-<%= controller_name %> action-<%= action_name %>">
|
2017-03-12 12:26:49 -04:00
|
|
|
<div class="main" id="react-app"></div>
|
|
|
|
<%= yield %>
|
2017-03-11 01:49:27 -05:00
|
|
|
<% 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 %>
|
2017-03-12 12:26:49 -04:00
|
|
|
<div class="hidden"><%= render :partial => 'shared/filterBox' %></div>
|
|
|
|
<div id="loading"></div>
|
2017-03-12 03:26:00 -04:00
|
|
|
<script type="text/javascript">
|
2017-03-12 12:26:49 -04:00
|
|
|
Metamaps.ServerData.unreadNotificationsCount = <%= current_user ? user_unread_notification_count : 0 %>
|
|
|
|
Metamaps.ServerData.mapIsStarred = <%= current_user && @map && current_user.starred_map?(@map) ? true : false %>
|
2017-03-12 03:26:00 -04:00
|
|
|
Metamaps.ServerData.mobileTitle = "<%= yield(:mobile_title) %>"
|
2017-03-12 12:26:49 -04:00
|
|
|
Metamaps.ServerData.ActiveMapper = <%= current_user ? current_user.to_json({follows: true, email: true, follow_settings: true}).html_safe : nil %>
|
|
|
|
Metamaps.Loading.setup()
|
2017-03-12 03:26:00 -04:00
|
|
|
</script>
|
2016-03-24 21:26:07 -07:00
|
|
|
<%= render :partial => 'layouts/foot' %>
|