view: devices: added action button

This commit is contained in:
Tigor Hutasuhut 2024-05-29 16:22:26 +07:00
parent 6f78182f5c
commit 8a0a139e50
2 changed files with 62 additions and 10 deletions

View file

@ -0,0 +1,44 @@
package components
import "github.com/tigorlazuardi/redmage/views/icons"
templ ActionButton(components ...templ.Component) {
<div
class="max-xs:toast max-xs:z-40"
x-data="{ show: false }"
@click="show = !show; if (!show) document.activeElement.blur()"
@click.away="show = false"
>
<div class="dropdown dropdown-hover dropdown-top xs:dropdown-bottom dropdown-end">
<div
tabindex="0"
role="button"
class="btn btn-primary max-xs:btn-circle max-lg:btn-square xs:btn-outline m-1 max-xs:border-none"
>
@icons.Kebab("h-8 w-8")
</div>
<ul
tabindex="0"
class="dropdown-content z-[1] menu p-2 shadow bg-base-100 rounded-box w-52 m-0 border-primary border-2"
>
for i, component := range components {
if i > 0 {
<div class="divider m-0 p-0"></div>
}
<li class="m-0 p-0 hover:bg-primary rounded-btn">
@component
</li>
}
if len(components) > 0 {
<div class="xs:hidden divider m-0 p-0"></div>
}
<li class="xs:hidden m-0 p-0 hover:bg-primary rounded-btn">
<button
class="btn btn-ghost btn-sm m-0"
onclick="window.scrollTo({ top: 0, behavior: 'smooth' })"
>Scroll to Top</button>
</li>
</ul>
</div>
</div>
}

View file

@ -7,13 +7,13 @@ import "github.com/tigorlazuardi/redmage/api"
import "strconv"
import "fmt"
import "github.com/tigorlazuardi/redmage/views/utils"
import "github.com/tigorlazuardi/redmage/views/icons"
type Data struct {
Error string
Devices models.DeviceSlice
Total int64
Params api.DevicesListParams
FlashMessageSuccess string
}
templ View(c *views.Context, data Data) {
@ -21,6 +21,11 @@ templ View(c *views.Context, data Data) {
@components.Head(c, components.HeadTitle("Redmage - Devices"))
@components.Body(c) {
@Content(c, data)
@components.NotificationContainer() {
if data.FlashMessageSuccess != "" {
@components.SuccessToast(data.FlashMessageSuccess)
}
}
}
}
}
@ -33,11 +38,7 @@ templ Content(c *views.Context, data Data) {
} else {
<div class="flex justify-between items-center">
<h1 class="my-auto">Devices</h1>
<div class="tooltip" data-tip="Add Device">
<a href="/devices/add" class="btn btn-primary btn-outline btn-square text-base-100">
@icons.PlusCircleFill("w-6 h-6")
</a>
</div>
@components.ActionButton(addNewDeviceButton())
</div>
<div class="divider"></div>
@filter(data)
@ -48,6 +49,13 @@ templ Content(c *views.Context, data Data) {
</main>
}
templ addNewDeviceButton() {
<a
href="/devices/add"
class="btn btn-ghost btn-sm no-underline m-0"
>Add New Device</a>
}
templ devicesList(data Data) {
<div class="grid md:grid-cols-2 gap-4">
for _, device := range data.Devices {