5 Star Rating System

In this tutorial, you’ll learn how to build a rating system with AJAX, PHP, and jQuery. Votes will be recorded and updated in real-time with the magic of AJAX, and we’ll also leverage the power of PHP so that you don’t even need a database!


Step 1. Building the HTML

We’re going to create a simple page that lists two movies, and allows you to rate them. This means we need the stars to show the current rating, and to allow voting. We also want an area to show the total votes cast, and the current rating down to one decimal place.
Let’s take a look at the HTML/CSS
  1. <div class='movie_choice'>  
  2.     Rate: Raiders of the Lost Ark  
  3.     <div id="r1" class="rate_widget">  
  4.         <div class="star_1 ratings_stars"></div>  
  5.         <div class="star_2 ratings_stars"></div>  
  6.         <div class="star_3 ratings_stars"></div>  
  7.         <div class="star_4 ratings_stars"></div>  
  8.         <div class="star_5 ratings_stars"></div>  
  9.         <div class="total_votes">vote data</div>  
  10.     </div>  
  11. </div>  
  12.   
  13. <div class='movie_choice'>  
  14.     Rate: The Hunt for Red October  
  15.     <div id="r2" class="rate_widget">  
  16.         <div class="star_1 ratings_stars"></div>  
  17.         <div class="star_2 ratings_stars"></div>  
  18.         <div class="star_3 ratings_stars"></div>  
  19.         <div class="star_4 ratings_stars"></div>  
  20.         <div class="star_5 ratings_stars"></div>  
  21.         <div class="total_votes">vote data</div>  
  22.     </div>  
  23. </div>  
Notice how there are no graphics in this HTML? They’ll be added with CSS. We’re just using the HTML to create the framework that the widget works from. Now it’s time to start adding CSS.
  1. .rate_widget {  
  2.     border:     1px solid #CCC;  
  3.     overflow:   visible;  
  4.     padding:    10px;  
  5.     position:   relative;  
  6.     width:      180px;  
  7.     height:     32px;  
  8. }  
  9. .ratings_stars {  
  10.     backgroundurl('star_empty.png'no-repeat;  
  11.     float:      left;  
  12.     height:     28px;  
  13.     padding:    2px;  
  14.     width:      32px;  
  15. }  
  16. .ratings_vote {  
  17.     backgroundurl('star_full.png'no-repeat;  
  18. }  
  19. .ratings_over {  
  20.     backgroundurl('star_highlight.png'no-repeat;  
  21. }  
This first part of the CSS accomplishes a few things:
  • Gives the default ‘empty’ start to each star location
  • Sets up classes for filled in stars, and highlighted stars
  • Defines and styles the stars’ container.
You can either use the graphics provided in the download, or make your own. There needs to be a graphic for each of the three states: empty, full, and highlighted.
Next we add a little more CSS to position the total votes box, and center the widgets so the page matches the graphic at the start of this section.
  1. .total_votes {  
  2.     background: #eaeaea;  
  3.     top: 58px;  
  4.     left: 0;  
  5.     padding: 5px;  
  6.     position:   absolute;    
  7. }   
  8. .movie_choice {  
  9.     font: 10px verdana, sans-serif;  
  10.     margin: 0 auto 40px auto;  
  11.     width: 180px;  
  12. }  

Step 2. Adding the UI Interactivity

At this point, we have a very plain looking bunch of empty stars, but they don’t do a whole lot at this point. This is where jQuery comes to the rescue.
Our first step is to add mouseover and mouseout handlers for the stars. We need to highlight the star the mouse is over, and all the preceding stars.
  1. $('.ratings_stars').hover(  
  2.     // Handles the mouseover  
  3.     function() {  
  4.         $(this).prevAll().andSelf().addClass('ratings_over');  
  5.         $(this).nextAll().removeClass('ratings_vote');   
  6.     },  
  7.     // Handles the mouseout  
  8.     function() {  
  9.         $(this).prevAll().andSelf().removeClass('ratings_over');  
  10.         set_votes($(this).parent());  
  11.     }  
  12. );  
We’re taking advantage of jQuery’s powerful .prevAll() and .nextAll() methods to get the stars preceding and following the currently moused over star.
The code above then adds and removes the classes to make the stars under the mouse and before ‘highlighted’, and the stars after ‘not highlighted’.

What about set_votes() ?

This is a function that checks which stars should be in the ‘full’ state, and ties in closely with the next step, where we grab remote data from the server.

Step 3. Retrieving Data from the Server

Our stars highlight when you move the mouse over them, and that’s a great start. But what about the red stars showing the current vote? To reach this step, we need to both get the information from the server, and write some JavaScript to handle that data.
  1. $('.rate_widget').each(function(i) {  
  2.     var widget = this;  
  3.     var out_data = {  
  4.         widget_id : $(widget).attr('id'),  
  5.         fetch: 1  
  6.     };  
  7.     $.post(  
  8.         'ratings.php',  
  9.         out_data,  
  10.         function(INFO) {  
  11.             $(widget).data( 'fsr', INFO );  
  12.             set_votes(widget);  
  13.         },  
  14.         'json'  
  15.     );  
  16. });  
This code block – actually all the JavaScript – goes in a document.ready block. This particular code executes right away. It queries the server and gets some information on every vote widget on the page.
First we set up an object, out_data, to contain the information we’re sending to the server. Our PHP script expects to see ‘fetch’ when just grabbing data, so we include it here. We also include the ID of the widget, which lets the server-side script know what data we’re after. When the call back function fires, it contains a JavaScript object that looks like this:
  1. {  
  2.     "widget_id"     : "r1",  
  3.     "number_votes"  : 129,  
  4.     "total_points"  : 344,  
  5.     "dec_avg"       : 2.7,  
  6.     "whole_avg"     : 3  
  7. }  
The .data() method is a bit of jQuery magic that allows you to associate arbitrary data with a DOM
object.
If you look closely at the code, you’ll see we’re taking that object (stored in the variable INFO) and
doing something with it via the .data() method.
The .data() method is a bit of jQuery magic that allows you to associate arbitrary data with a DOM
object. In this case, we’re storing the data in the widget div. It can be accessed later like this:
  1. $('#one_of_your_widgets).data('fsr').widget_id;  

set_votes(), Finally.

After the data has been returned from the server, its handed off indirectly to set_votes().
  1. function set_votes(widget) {  
  2.   
  3.     var avg = $(widget).data('fsr').whole_avg;  
  4.     var votes = $(widget).data('fsr').number_votes;  
  5.     var exact = $(widget).data('fsr').dec_avg;  
  6.       
  7.     $(widget).find('.star_' + avg).prevAll().andSelf().addClass('ratings_vote');  
  8.     $(widget).find('.star_' + avg).nextAll().removeClass('ratings_vote');   
  9.     $(widget).find('.total_votes').text( votes + ' votes recorded (' + exact + ' rating)' );  
  10. }  
The first three lines are for readability, as those variable names are pretty long. So let’s take a look at what’s happening here.
Line 7: ‘avg’ is a whole number, representing the rounded vote average of this widget. Because it’s
a number 1-5, we can use it to find the proper star in the widget, and turn it, and the
preceding ones to our ‘filled’ graphic. Notice the use of .andSelf() to include the star that
we’ve selected.
Line 8: This is quite similar to line seven, but we’re removing the filled graphic from later stars. This
is necessary in case the average for this widget has gone down since the last vote.
Line 9: Here we’re updating the grey box underneath the widget, which shows a more precise rating,
and lets a visitor know how many votes have been cast.

Step 4. Let the Voting Begin

The final step for the UI is to enable voting. We’re going to add a click handler to each of the stars. This click handler will be responsible for sending the vote data to the server.

1 comments:

Xplore IT Corp said...

Hey Nice Blog!! Thanks For Sharing!!!Wonderful blog & good post.Its really helpful for me, waiting for a more new post. Keep Blogging!
dot net course training in coimbatore
php course in coimbatore

Post a Comment

www.comhttp.blogspot.in. Powered by Blogger.