2014-06-04 19:24:16 +00:00
|
|
|
<%#
|
|
|
|
# @file
|
|
|
|
# The inner HTML for switching your metacode set
|
|
|
|
#%>
|
|
|
|
|
|
|
|
<% metacodes = current_user.settings.metacodes %>
|
|
|
|
<% selectedSet = metacodes[0].include?("metacodeset") ? metacodes[0].sub("metacodeset-","") : "custom" %>
|
|
|
|
<% allMetacodeSets = MetacodeSet.order("name").all %>
|
|
|
|
<% if selectedSet == "custom"
|
|
|
|
index = allMetacodeSets.length
|
|
|
|
else
|
|
|
|
set = MetacodeSet.find(selectedSet.to_i)
|
|
|
|
index = allMetacodeSets.index(set)
|
|
|
|
end %>
|
|
|
|
<h3>Switch Metacode Set</h3>
|
2014-09-17 14:59:36 +00:00
|
|
|
|
|
|
|
<p>Use metacode sets to enter different modes of mapping.</p>
|
2014-06-04 19:24:16 +00:00
|
|
|
|
|
|
|
<div id="metacodeSwitchTabs">
|
|
|
|
<ul>
|
|
|
|
<% allMetacodeSets.each do |m| %>
|
|
|
|
<li><a href="#metacodeSwitchTabs<%= m.id %>" data-set-id="<%= m.id %>"><%= m.name %></a></li>
|
|
|
|
<% end %>
|
2014-09-17 14:59:36 +00:00
|
|
|
<li><a href="#metacodeSwitchTabsCustom" data-set-id="custom" id="metacodeSetCustom">CUSTOM SELECTION</a></li>
|
2014-06-04 19:24:16 +00:00
|
|
|
</ul>
|
|
|
|
<% allMetacodeSets.each_with_index do |m, localindex| %>
|
|
|
|
<div id="metacodeSwitchTabs<%= m.id %>"
|
|
|
|
data-metacodes="<%= m.metacodes.map(&:name).join(',') %>">
|
|
|
|
<% @list = '' %>
|
|
|
|
<% m.metacodes.sort{|x,y| x.name <=> y.name }.each_with_index do |m, index| %>
|
|
|
|
<% @list += '<li><img src="' + m.icon + '" alt="' + m.name + '" /><p>' + m.name.downcase + '</p><div class="clearfloat"></div></li>' %>
|
|
|
|
<% end %>
|
|
|
|
<div class="metacodeSetList">
|
2014-06-10 16:59:19 +00:00
|
|
|
<p class="setDesc"><%= m.desc %></p>
|
2014-06-04 19:24:16 +00:00
|
|
|
<ul>
|
|
|
|
<%= @list.html_safe %>
|
|
|
|
</ul>
|
|
|
|
<div class="clearfloat"></div>
|
|
|
|
</div>
|
2014-07-29 17:34:10 +00:00
|
|
|
<button class="button" onclick="Metamaps.Create.updateMetacodeSet(<%= m.id %>, <%= localindex %>, false);">
|
2014-09-17 14:59:36 +00:00
|
|
|
Switch Set
|
2014-07-29 17:34:10 +00:00
|
|
|
</button>
|
2014-06-04 19:24:16 +00:00
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
<div id="metacodeSwitchTabsCustom">
|
2014-06-10 16:59:19 +00:00
|
|
|
<p class="setTitle">Pick Your Own Metacodes</p>
|
2014-06-04 19:24:16 +00:00
|
|
|
<% @list = '' %>
|
|
|
|
<% Metacode.order("name").all.each_with_index do |m, index| %>
|
|
|
|
<% if selectedSet == "custom" %>
|
|
|
|
<% mClass = metacodes.index(m.id.to_s) == nil ? "toggledOff" : "" %>
|
|
|
|
<% else %>
|
|
|
|
<% mClass = "toggledOff" %>
|
|
|
|
<% end %>
|
|
|
|
<% @list += '<li id="' + m.id.to_s + '" data-name="' + m.name + '" class="' + mClass + '"><img src="' + m.icon + '" alt="' + m.name + '" /><p>' + m.name.downcase + '</p><div class="clearfloat"></div></li>' %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<div class="customMetacodeList">
|
|
|
|
<ul>
|
|
|
|
<%= @list.html_safe %>
|
|
|
|
</ul>
|
|
|
|
<div class="clearfloat"></div>
|
|
|
|
</div>
|
2014-07-29 17:34:10 +00:00
|
|
|
<button class="button" onclick="Metamaps.Create.updateMetacodeSet('custom', <%= allMetacodeSets.length %>, true);">
|
|
|
|
Switch to Custom Set
|
|
|
|
</button>
|
2014-06-04 19:24:16 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="clearfloat"></div>
|
|
|
|
|
|
|
|
<script>
|
2014-07-29 17:34:10 +00:00
|
|
|
Metamaps.Create.selectedMetacodeSet = "metacodeset-<%= selectedSet %>";
|
|
|
|
Metamaps.Create.selectedMetacodeSetIndex = <%= index %>;
|
2014-06-04 19:24:16 +00:00
|
|
|
</script>
|