It is a lightweight JavaScript library that transforms a <select>
HTML Element into a dynamic rating indicator.
- Features
- Installation
- Usage
- Options
- Methods
- Build
- Style customization
- Task list
- Compatibility
- Copyright and license
- Changelog
- It is written in pure JavaScript and CSS, and does not require any external libraries.
- Wide customization options (ability to set icons of any shape, size, color, etc.).
- Touch, mouse and keyboard accessibility.
- Screen reader friendly.
- Reset to the initial state on form reset.
Install with npm:
npm i mr-rating.js
Import it into your file:
import Rating from 'mr-rating.js';
You can also download the latest release on GitHub.
<link rel="stylesheet" href="css/mr-rating.min.css">
<select class="visually-hidden js-rating">
<option value="">Select a rating</option>
<option value="1">Bad</option>
<option value="2">Poor</option>
<option value="3">Fair</option>
<option value="4">Good</option>
<option value="5">Excellent</option>
</select>
<script src="js/mr-rating.min.js"></script>
Now, you need to create an instance by passing a string selector (a
), HTML element (b
), or list of HTML elements (c
):
<script>
// a
const rating = new Rating('.js-rating');
// b
const elem = document.querySelector('.js-rating');
const rating = new Rating(elem);
// c
const elems = document.querySelectorAll('.js-rating');
const rating = new Rating(elems);
</script>
Here are the default options:
{
classList: {
containerClass: 'mr-rating',
itemClass: '',
activeClass: 'active',
selectedClass: 'selected',
},
icon: '',
items: null,
label: 'Rating',
orientation: 'horizontal',
tooltip: false,
onInit: null,
onDestroy: null,
onReset: null,
onSelect: null,
}
Type: String
Default: 'mr-rating'
The classname to use for the rating container.
Type: String
Default: ''
The classname to use for the rating item.
Type: String
Default: 'active'
The classname to use for the active state of a star.
Type: String
Default: 'selected'
The classname to use for the selected state of a star.
Type: String
Default: ''
An icon to use as ranking symbol, typically a star. If you need to display unique icons, use the option items
instead.
const star = `
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024" class="mr-icon">
<path d="M923,415,707,611,766,897,512,753,258,897,317,611,101,415,392,382,512,116,632,382Z" stroke="currentColor" stroke-width="64"></path>
</svg>
`;
const rating = new Rating('.js-rating', {
icon: star
});
Type: Function
Default: null
This option can be used to transform rating items, for example, to change their content by adding unique icons.
// The length of this array must equal the number of stars
const emojis = [
'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" class="icon-frowning-face">...</svg>',
'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" class="icon-neutral-face">...</svg>',
'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" class="icon-smiling-face">...</svg>'
];
const rating = new Rating('.js-rating', {
items: (item, i) => {
item.innerHTML = emojis[i];
}
});
Type: String
Default: 'Rating'
A value used for the aria-label attribute. Can also be set via the aria-label
/ data-label
attribute on the <select>
element.
Type: String
Default: 'horizontal'
A value used for the aria-orientation attribute. Can also be set via the data-orientation
attribute on the <select>
element.
Type: Boolean
Default: false
Whether or not to show the tooltip next to the stars. Can also be set via the data-tooltip
attribute on the <select>
element.
Type: Function
Default: null
This event is fired when a rating is rendered for the first time.
Type: Function
Default: null
This event is fired when a rating is destroyed.
Type: Function
Default: null
This event is fired when a rating is selected.
Note. You can also listen for the change
event on the <select>
element:
const select = document.querySelector('.js-rating');
select.addEventListener('change', (e) => {
// const select = e.target;
// const { options, selectedIndex, value } = select;
// const option = options[selectedIndex];
});
Type: Function
Default: null
This event is fired when a rating is reset to the initial state.
Method | Description |
---|---|
instance.destroy() |
Destroys instances and removes all event listeners. |
instance.rebuild() |
Rebuilds all rating controls. |
instance.reset() |
Returns to the initial state. |
To set a new value:
const select = document.querySelector('.js-rating');
select.value = '5';
To disable/enable interactive rating mode:
const select = document.querySelector('.js-rating');
select.disabled = true; // or `false`
To disallow a user to clear a rating by clicking on an already selected star, just add the disabled
attribute to the option with an empty value:
<select class="visually-hidden js-rating">
<option value="" disabled>Select a rating</option>
<option value="1">Bad</option>
<option value="2">Poor</option>
<option value="3">Fair</option>
<option value="4">Good</option>
<option value="5">Excellent</option>
</select>
The initial rating value is determined by which select option has the selected
attribute set:
<select class="visually-hidden js-rating">
<option value="">Select a rating</option>
<option value="1">Bad</option>
<option value="2">Poor</option>
<option value="3">Fair</option>
<option value="4" selected>Good</option>
<option value="5">Excellent</option>
</select>
# Clone the repo
git clone https://github.com/marmot-webdev/mr-rating.js.git
# Go to the directory
cd mr-rating.js
# Install dependencies
npm i
# Run the build
npm run build
The compiled files will be saved in the dist
folder.
This library uses Sass variables and custom properties for its styling. Here are the default values:
// Sass
$mr-rating: (
"enable-tooltip": false,
"enable-visually-hidden": true, // if `false`, you must provide your own class to hide a select box
"cssvar-prefix": "mr-",
"selectors": (
"container": ".mr-rating",
"icon": ".mr-icon",
),
"icon": (
"gap": .125rem,
"size": 1.5rem,
"color": #fc0,
"transition": fill .2s,
),
"tooltip": (
"padding": .5em 1em .5em 1.625em,
"border-radius": .3em,
"background-color": #000,
"color": #fff,
"font-size": .875rem,
"text-transform": uppercase,
)
);
// CSS
:root {
--mr-icon-gap: 0.125rem;
--mr-icon-size: 1.5rem;
--mr-icon-color: #fc0;
--mr-icon-transition: fill 0.2s;
--mr-tooltip-padding: 0.5em 1em 0.5em 1.625em;
--mr-tooltip-border-radius: 0.3em;
--mr-tooltip-background-color: #000;
--mr-tooltip-color: #fff;
--mr-tooltip-font-size: 0.875rem;
--mr-tooltip-text-transform: uppercase;
}
To override Sass variables, just set new values before importing the SCSS file.
$mr-rating: (
"enable-tooltip": true,
"icon": (
"size": 2rem
)
);
@import 'mr-rating.js/sass';
To override CSS variables, enter new values after the import.
// Using Sass
@import 'mr-rating.js/sass';
.rating-container {
--#{map-get($mr-rating, "cssvar-prefix")}tooltip-font-size: 1rem;
}
// Using regular CSS (either at the global or at the local level)
@import 'mr-rating.js/css';
:root {
--mr-icon-color: #f79700;
}
- Add a demo page
- Add a rating placeholder to prevent layout shift
- Add RTL support
It works in all modern browsers.
Copyright (c) 2023—present, Serhii Babakov.
The library is licensed under The MIT License.
v1.2.0 - [2023-01-26]
- Optimized project structure
- Improved style customization
- Slightly updated documentation
v1.1.0 - [2023-01-25]
- Initial release