blob: 40fe392ec992059a686156aaf68a964dac4e65d5 (
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" hx-disabled-elt="this"><?= $icon ?></button>
|