KROM // Kendama
KROM is more than KENDAMA // Not just a brand, not just a toy. KROM is an attitude.
The benefits of playing kendama
When playing kendama, you will experience a heightened sense of focus, coordination, patience, creativity and community. All of these are essential to being a successful kendama player, and they'll continue to grow as you play. Since kendama is so niche, you'll quickly form strong relationships with any other kendama player you meet.
In a world of smartphones and computers, kendama provides a mental and physical break from screen for people of all ages. This is probably the biggest benefit of all.
{
const queryString = new URLSearchParams(new FormData($refs.filter_form)).toString();
let pattern = /[?&]sort_by=/;
let collUrl = location.search;
let newUrl = queryString;
if(pattern.test(collUrl)) {
const theString = window.location.search;
const urlParams = new URLSearchParams(theString);
const sorty = urlParams.get('sort_by')
newUrl = queryString + '&sort_by=' + sorty;
console.log(sorty);
}
console.log(queryString);
console.log(newUrl);
loading = true;
fetch('/collections/krom-kendama?' + newUrl)
.then(response => response.text())
.then(data => {
let html_div = document.createElement('div');
html_div.innerHTML = data;
let html_dom = html_div.querySelector('#dataMix').innerHTML;
document.querySelector('#dataMix').innerHTML = html_dom;
// update url without refreshing the page
history.replaceState(null, null, '?' + newUrl);
})
.catch(error => console.error('Error:', error))
.finally(() => loading = false);
})"
>