All checks were successful
CI / update (push) Successful in 17s
- Add heart emoji indicators to recipe cards (top-left positioning) - Show favorites across all recipe list pages (season, category, icon, tag) - Create favorites utility functions for server-side data merging - Convert client-side load files to server-side for session access - Redesign favorite button with emoji hearts (🖤/❤️) and bottom-right positioning - Fix randomizer array mutation issue causing card display glitches - Implement consistent favorite indicators with drop shadows for visibility 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
481 B
JavaScript
18 lines
481 B
JavaScript
const MS_PER_DAY = 86400000
|
|
function mulberry32(a) {
|
|
return function() {
|
|
var t = a += 0x6D2B79F5;
|
|
t = Math.imul(t ^ t >>> 15, t | 1);
|
|
t ^= t + Math.imul(t ^ t >>> 7, t | 61);
|
|
return ((t ^ t >>> 14) >>> 0) / 4294967296;
|
|
}
|
|
}
|
|
|
|
export function rand_array(array){
|
|
let time = new Date()
|
|
const seed = Math.floor(time.getTime()/MS_PER_DAY)
|
|
let rand = mulberry32(seed)
|
|
// Create a copy to avoid mutating the original array
|
|
return [...array].sort((a,b) => 0.5 - rand())
|
|
}
|