Cleaning out a bunch more cruft, getting map choice by click working

This commit is contained in:
Dan Buch
2012-03-07 20:02:03 -05:00
parent 70d0a835ed
commit a1aa03451f
12 changed files with 9307 additions and 112 deletions

View File

@@ -1,17 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<title>Maps: <%= controller.action_name %></title>
<%= stylesheet_link_tag 'scaffold' %>
</head>
<body>
<p style="color: green"><%= flash[:notice] %></p>
<%= yield %>
</body>
</html>

View File

@@ -4,8 +4,11 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<title>Mashes: <%= controller.action_name %></title>
<title>Map Mash</title>
<%= stylesheet_link_tag 'styles' %>
<%= stylesheet_link_tag 'scaffold' %>
<%= javascript_include_tag 'jquery.min' %>
<%= yield :head_js %>
</head>
<body>

View File

@@ -1,28 +0,0 @@
<h1>Editing mash</h1>
<% form_for(@mash) do |f| %>
<%= f.error_messages %>
<p>
<%= f.label :requester %><br />
<%= f.text_field :requester %>
</p>
<p>
<%= f.label :map_a %><br />
<%= f.text_field :map_a %>
</p>
<p>
<%= f.label :map_b %><br />
<%= f.text_field :map_b %>
</p>
<p>
<%= f.label :winner %><br />
<%= f.text_field :winner %>
</p>
<p>
<%= f.submit 'Update' %>
</p>
<% end %>
<%= link_to 'Show', @mash %> |
<%= link_to 'Back', mashes_path %>

View File

@@ -1,26 +0,0 @@
<h1>Listing mashes</h1>
<table>
<tr>
<th>Requester</th>
<th>Map a</th>
<th>Map b</th>
<th>Winner</th>
</tr>
<% @mashes.each do |mash| %>
<tr>
<td><%=h mash.requester %></td>
<td><%=h mash.map_a %></td>
<td><%=h mash.map_b %></td>
<td><%=h mash.winner %></td>
<td><%= link_to 'Show', mash %></td>
<td><%= link_to 'Edit', edit_mash_path(mash) %></td>
<td><%= link_to 'Destroy', mash, :confirm => 'Are you sure?', :method => :delete %></td>
</tr>
<% end %>
</table>
<br />
<%= link_to 'New mash', new_mash_path %>

View File

@@ -1,25 +1,32 @@
<% content_for :head_js do %>
<script type="text/javascript">
$(function() {
$('.mash-image').click(function(elem) {
$('#mash_winner').val($(elem.target).attr('data-map-id'));
$('#new_mash').submit();
});
});
</script>
<% end %>
<h1>Mash the Maps!</h1>
<p>Choose your fave.</p>
<% form_for(@mash) do |f| %>
<%= f.error_messages %>
<div id="map_a" class="mash-image">
<%= f.label 'A' %><br />
<%= f.hidden_field :map_a, :value => @map_a.id %>
<image src="<%= url_for @map_a %>.png" />
<div id="maps">
<div id="map_a" class="mash-image">
<image src="<%= url_for @map_a %>.png" data-map-id="<%= @map_a.id %>" />
</div>
<div id="map_b" class="mash-image">
<image src="<%= url_for @map_b %>.png" data-map-id="<%= @map_b.id %>" />
</div>
</div>
<div id="map_b" class="mash-image">
<%= f.label 'B' %><br />
<%= f.hidden_field :map_b, :value => @map_b.id %>
<image src="<%= url_for @map_b %>.png" />
</div>
<p>
<%= f.select :winner, [['A', @map_a.id], ['B', @map_b.id]] %>
</p>
<p>
<%= f.submit 'Mash' %>
</p>
<%= f.hidden_field :map_a, :value => @map_a.id %>
<%= f.hidden_field :map_b, :value => @map_b.id %>
<%= f.hidden_field :winner, :value => -1 %>
<% end %>
<%= link_to 'Back', mashes_path %>

View File

@@ -1,23 +0,0 @@
<p>
<b>Requester:</b>
<%=h @mash.requester %>
</p>
<p>
<b>Map a:</b>
<%=h @mash.map_a %>
</p>
<p>
<b>Map b:</b>
<%=h @mash.map_b %>
</p>
<p>
<b>Winner:</b>
<%=h @mash.winner %>
</p>
<%= link_to 'Edit', edit_mash_path(@mash) %> |
<%= link_to 'Back', mashes_path %>