Skip to content

Commit

Permalink
Item14121: use svg in jquery.stars rating
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDaum committed Sep 6, 2016
1 parent 3ac25fb commit e68c964
Show file tree
Hide file tree
Showing 7 changed files with 175 additions and 27 deletions.
2 changes: 1 addition & 1 deletion JQueryPlugin/lib/Foswiki/Plugins/JQueryPlugin/STARS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ sub new {
my $this = bless(
$class->SUPER::new(
name => 'Stars',
version => '1.10',
version => '2.00',
author => 'Michael Daum',
homepage => 'http://foswiki.org/Extensions/JQueryPlugin',
css => [ 'jquery.stars.css', ],
Expand Down
Binary file not shown.
64 changes: 64 additions & 0 deletions JQueryPlugin/pub/System/JQueryPlugin/plugins/stars/delete.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,31 +1,34 @@
.jqStars {
white-space:nowrap;
}
.jqStarsContainer {
display:inline-block;
background-image:url(star.png);
background-repeat:repeat-x;
height:16px;
vertical-align:text-bottom;
line-height:16px;
}
.jqStarsLabel {
display:inline-block;
margin-left:0.5em;
}
.jqStarsOn {
display:inline-block;
background-image:url(star.png);
.jqStarsLabel,
.jqStarsContainer,
.jqStarsOn,
.jqStarsDelete {
background-position:0 0;
background-size:16px;
background-repeat:repeat-x;
display:inline-block;
height:16px;
line-height:16px;
vertical-align:bottom;
}
.jqStarsOn,
.jqStarsContainer {
background-image:url(stars.svg);
}
.jqStarsLabel {
margin-left:0.3em;
}
.jqStarsDelete {
display:inline-block;
vertical-align:text-bottom;
background-image:url(delete.gif);
margin-right:0.5em;
background-image:url(delete.svg);
background-repeat:no-repeat;
background-position:0 1px;
width:16px;
height:16px;
margin-right:3px;
}
.jqStarsDelete:hover {
background-position:0 -16px;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* jQuery Stars plugin 1.10
* jQuery Stars plugin 2.00
*
* Copyright (c) 2014-2016 Foswiki Contributors http://foswiki.org
*
Expand All @@ -14,8 +14,7 @@
// Create the defaults once
var defaults = {
split: 1,
numStars: 5,
widthStar: 16
numStars: 5
};

// plugin constructor
Expand Down Expand Up @@ -73,7 +72,6 @@
self.opts.split = 1;
}

self.width = self.opts.numStars * self.opts.widthStar;

self._prec = 0;
if (self.opts.split > 1) {
Expand All @@ -89,11 +87,16 @@
self.blockMouseMove = false;
self.timeoutId = undefined;

self.elem.attr("type", "hidden");
self.container = $("<div />").addClass("jqStarsContainer").insertAfter(self.elem).width(self.width);
self.elem.hide();
self.container = $("<div />").addClass("jqStarsContainer").insertAfter(self.elem);
self.labelElem = $("<span />").addClass("jqStarsLabel").insertAfter(self.container);
self.onElem = $("<div />").addClass("jqStarsOn").appendTo(self.container);

self.widthStar = parseInt(self.container.css("background-size"), 10);
self.width = self.opts.numStars * self.widthStar;

self.container.width(self.width);

if (self.elem.is(":disabled")) {
self.container.addClass("jqStarsReadOnly");
} else {
Expand All @@ -102,7 +105,7 @@
// event handler
self.container.on("mousemove", function(ev) {
if (!self.blockMouseMove) {
self.displayAtIndex((ev.clientX - self.container.position().left) / self.opts.widthStar);
self.displayAtIndex((ev.clientX - self.container.position().left) / self.widthStar);
}
});

Expand All @@ -125,7 +128,7 @@
});

self.container.on("click", function(ev) {
self.displayAtIndex((ev.clientX - self.container.position().left) / self.opts.widthStar);
self.displayAtIndex((ev.clientX - self.container.position().left) / self.widthStar);
self.container.addClass("jqStarsSelected");
self.blockMouseMove = true;
self.selectAtIndex(self._tmpIndex);
Expand Down Expand Up @@ -192,7 +195,7 @@
index = Math.ceil(index * self.opts.split) / self.opts.split;
index = self._toFixed(index);

width = self.opts.widthStar * index;
width = self.widthStar * index;
label = self.getDisplayVal(index);
}

Expand Down
Binary file not shown.
78 changes: 78 additions & 0 deletions JQueryPlugin/pub/System/JQueryPlugin/plugins/stars/stars.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e68c964

Please sign in to comment.