juanjo / spree-reviews forked from paulcc/spree-reviews
- Source
- Commits
- Network (7)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
README.markdown | Fri Feb 13 07:21:50 -0800 2009 | |
| |
Rakefile | Fri Feb 06 21:04:03 -0800 2009 | |
| |
TODO | Fri Feb 13 07:35:31 -0800 2009 | |
| |
app/ | ||
| |
config/ | ||
| |
db/ | ||
| |
lib/ | ||
| |
public/ | ||
| |
reviews_extension.rb | ||
| |
spec/ | Fri Feb 06 21:04:03 -0800 2009 |
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.

