juanjo / spree-reviews forked from paulcc/spree-reviews

Basic review and ratings facility for Spree -- work in progress: see TODO file, and also see my fork of spree-demo for actual use

This URL has Read+Write access

name age message
file README.markdown Fri Feb 13 07:21:50 -0800 2009 updated the explanation and added some discussi... [paulcc]
file Rakefile Fri Feb 06 21:04:03 -0800 2009 first commit of main code [paulcc]
file TODO Fri Feb 13 07:35:31 -0800 2009 updated this [paulcc]
directory app/ Loading commit data...
directory config/
directory db/
directory lib/
directory public/
file reviews_extension.rb
directory spec/ Fri Feb 06 21:04:03 -0800 2009 first commit of main code [paulcc]
README.markdown

Reviews

Straightforward review/rating facility

Please see TODO file

Usage

Action "submit" in "reviews" controller - goes to review entry form

Users must be logged in to submit a review

Three partials: - ./app/views/products/rating.html.erb -- display number of stars - ./app/views/products/shortrating.html.erb -- shorter version of above - ./app/views/products/_review.html.erb -- display a single review

Administrator can edit and/or approve and/or delete reviews.

Implementation

reviews table is quite obvious - and note the "approved" flag which is for the administrator to update

ratings table holds current fractional value - avoids frequent recalc...

Discussion

Some points which might need modification in future: - I don't track the actual user on a review (just their "screen name" at the time), but we may want to use this information to avoid duplicate reviews etc.

  • Rating votes are tied to a review, to avoid spam. However: ratings are accepted whether or not the review is accepted. Perhaps they should only be counted when the review is approved.