mirror of
https://git.imnavajas.es/jjimenez/erp-imprimelibros.git
synced 2026-01-24 09:40:21 +00:00
primer commit. añadido tema Velzon
This commit is contained in:
102
src/main/resources/static/assets/js/pages/rating.init.js
Normal file
102
src/main/resources/static/assets/js/pages/rating.init.js
Normal file
@ -0,0 +1,102 @@
|
||||
/*
|
||||
Template Name: Velzon - Admin & Dashboard Template
|
||||
Author: Themesbrand
|
||||
Website: https://Themesbrand.com/
|
||||
Contact: Themesbrand@gmail.com
|
||||
File: Rating Js File
|
||||
*/
|
||||
|
||||
// basic-rater
|
||||
if (document.querySelector('#basic-rater'))
|
||||
var basicRating = raterJs({
|
||||
starSize: 22,
|
||||
rating: 3,
|
||||
element: document.querySelector("#basic-rater"),
|
||||
rateCallback: function rateCallback(rating, done) {
|
||||
this.setRating(rating);
|
||||
done();
|
||||
}
|
||||
});
|
||||
|
||||
// rater-step
|
||||
if (document.querySelector('#rater-step'))
|
||||
var starRatingStep = raterJs({
|
||||
starSize: 22,
|
||||
rating: 1.5,
|
||||
element: document.querySelector("#rater-step"),
|
||||
rateCallback: function rateCallback(rating, done) {
|
||||
this.setRating(rating);
|
||||
done();
|
||||
}
|
||||
});
|
||||
|
||||
// rater-message
|
||||
var messageDataService = {
|
||||
rate: function (rating) {
|
||||
return {
|
||||
then: function (callback) {
|
||||
setTimeout(function () {
|
||||
callback((Math.random() * 5));
|
||||
}, 1000);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (document.querySelector('#rater-message'))
|
||||
var starRatingmessage = raterJs({
|
||||
isBusyText: "Rating in progress. Please wait...",
|
||||
starSize: 22,
|
||||
element: document.querySelector("#rater-message"),
|
||||
rateCallback: function rateCallback(rating, done) {
|
||||
starRatingmessage.setRating(rating);
|
||||
messageDataService.rate().then(function (avgRating) {
|
||||
starRatingmessage.setRating(avgRating);
|
||||
done();
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
// rater-unlimitedstar
|
||||
if (document.querySelector('#rater-unlimitedstar'))
|
||||
var starRatingunlimited = raterJs({
|
||||
max: 16,
|
||||
readOnly: true,
|
||||
rating: 4.4,
|
||||
element: document.querySelector("#rater-unlimitedstar")
|
||||
});
|
||||
|
||||
// rater-onhover
|
||||
if (document.querySelector('#rater-onhover'))
|
||||
var starRatinghover = raterJs({
|
||||
starSize: 22,
|
||||
rating: 1,
|
||||
element: document.querySelector("#rater-onhover"),
|
||||
rateCallback: function rateCallback(rating, done) {
|
||||
this.setRating(rating);
|
||||
done();
|
||||
},
|
||||
onHover: function (currentIndex, currentRating) {
|
||||
document.querySelector('.ratingnum').textContent = currentIndex;
|
||||
},
|
||||
onLeave: function (currentIndex, currentRating) {
|
||||
document.querySelector('.ratingnum').textContent = currentRating;
|
||||
}
|
||||
});
|
||||
|
||||
// rater-reset
|
||||
if (document.querySelector('#raterreset'))
|
||||
var starRatingreset = raterJs({
|
||||
starSize: 22,
|
||||
rating: 2,
|
||||
element: document.querySelector("#raterreset"),
|
||||
rateCallback: function rateCallback(rating, done) {
|
||||
this.setRating(rating);
|
||||
done();
|
||||
}
|
||||
});
|
||||
|
||||
if (document.querySelector('#raterreset-button'))
|
||||
document.querySelector('#raterreset-button').addEventListener("click", function () {
|
||||
starRatingreset.clear();
|
||||
}, false);
|
||||
Reference in New Issue
Block a user