blob: 9115435237ac512165dbdcf644f2db050f0aee6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
$active = $active ?? false;
$tooltip = match ($action) {
'like' => __('note.action.like'),
'dislike' => __('note.action.dislike'),
'reshare' => __('note.action.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>
|