blob: a1fb3b0dae36c903221cc67969b9cd0497a35962 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
$active = $active ?? false;
$tooltip = match ($action) {
'like' => 'Like',
'dislike' => 'Dislike',
'reshare' => 'Reshare'
};
$icon = match ($action) {
'like' => 'favorite',
'dislike' => 'heart_broken',
'reshare' => $active ? 'repeat_on' : 'repeat'
};
?>
<button title="<?= $tooltip ?>" class="icon material-symbols-outlined <?= $action . ($active ? ' active' : '') ?>"
hx-post="<?= "/fragment/note/$note->id/$action" ?>" hx-swap="outerHTML"><?= $icon ?></button>
|