- Download this application skeleton.
- Convert the app to use AJAX.
- Add any files you changed to your gist and submit your code.
Last active
December 20, 2015 18:18
-
-
Save markmccanna1/6174619 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<img src="/<%= @roll.value %>.png" title="<%= @roll.value %>" alt="the roll"> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function () { | |
// PSEUDO-CODE: | |
// 1- intercept the form submission event using jQuery | |
// 2- prevent the default action for that event from happening | |
// 3- generate a random number between 1 and 6 using JavaScript | |
// 4- use jQuery to submit an AJAX post to the form's action | |
// 5- when the AJAX post is done, replace the contents of the "#die" DIV in the DOM using jQuery | |
$('.container').on('submit', '#roll_form', function(event) { | |
event.preventDefault(); | |
var randomValue = Math.floor(Math.random()*6) + 1; | |
var url = $(this).attr('action'); | |
$.post(url, { value: randomValue }, function(server_response){ | |
$('#die').html(server_response); | |
}); | |
}); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<h1>Simplest Possible AJAX</h1> | |
<p>This contrived app will simulate a roll of a 6-sided die.</p> | |
<form id="roll_form" method="post" action="/rolls"> | |
<input type="submit" value="Roll the Die"> | |
</form> | |
<div id="die"> | |
<% if @roll %> | |
<%= erb :_die_roll, layout: false %> | |
<% end %> | |
</div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
get '/' do | |
erb :index | |
end | |
# TODO: convert this route to use AJAX | |
post '/rolls' do | |
# If the user passes-in a "value", let's use it. Otherwise, we'll generate a random one. | |
# See: roll_if_value_is_nil method in the Roll model. | |
value = params[:value] ? params[:value].to_i : nil | |
@roll = value ? Roll.create({ value: value }) : Roll.create | |
if request.xhr? | |
erb :_die_roll, layout: false | |
else | |
erb :index # HINT: what does this do? what should we do instead? | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment