* Made method to getting singular media details; Renamed other related method * Takes a fun and flirty digression to remove abstractions around yt-dlp since I'm 100% committed to using it exclusively * Removed commented test code * Lays the groundwork for fast indexing * Added module for working with youtube RSS feed * Added methods to kick off indexing workers from RSS response * Improve short detection (#59) * Made media attribute-related yt-dlp calls return a struct * Added shorts attribute to media items * Added ability to discern a short from yt-dlp response * Updated search to use new shorts attribute * Fast index UI (#63) * Added fast_index field and adds it to source form * Added fast indexing to source changeset operations * Added fast indexing worker and updated other modules to start using it * Handled fast index worker on source update * Add support modals (#65) * Added fast indexing upgrade modal * Improved modal on smaller screens * Updated links to work again * Added donation modal * Reverted source fast index to 15 minutes * Removed unneeded HTML attributes from old alpine approach
58 lines
2.3 KiB
Text
58 lines
2.3 KiB
Text
<aside
|
|
x-bind:class="sidebarVisible ? 'translate-x-0' : '-translate-x-full'"
|
|
class={[
|
|
"-translate-x-full absolute left-0 top-0 z-9999 flex h-screen w-60 flex-col overflow-y-hidden justify-between",
|
|
"bg-black duration-300 ease-linear shadow-lg sm:shadow-none dark:bg-boxdark lg:static lg:translate-x-0"
|
|
]}
|
|
@click.outside="sidebarVisible = false"
|
|
>
|
|
<section>
|
|
<div class="flex items-center justify-between gap-2 px-6 py-5.5 lg:py-6.5">
|
|
<a href="/" class="flex items-center">
|
|
<img src={~p"/images/logo.png?cachebust=2024-02-29"} alt="Pinchflat" class="w-9 h-9" />
|
|
<h2 class="text-xl font-bold text-white pl-2">Pinchflat</h2>
|
|
</a>
|
|
|
|
<button class="block lg:hidden" @click.stop="sidebarVisible = !sidebarVisible">
|
|
<.icon name="hero-arrow-left" class="fill-current" />
|
|
</button>
|
|
</div>
|
|
<div class="no-scrollbar flex flex-col overflow-y-auto duration-300 ease-linear">
|
|
<nav class="mt-5 px-4 py-4 lg:mt-9 lg:px-6">
|
|
<h3 class="mb-4 ml-4 text-sm font-medium text-bodydark2">MENU</h3>
|
|
<div class="flex flex-col justify-between">
|
|
<ul class="mb-6 flex flex-col gap-1.5">
|
|
<.sidebar_item icon="hero-home" text="Home" href={~p"/"} />
|
|
<.sidebar_item icon="hero-tv" text="Sources" href={~p"/sources"} />
|
|
<.sidebar_item icon="hero-adjustments-vertical" text="Media Profiles" href={~p"/media_profiles"} />
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
</section>
|
|
<section>
|
|
<nav class="mt-5 px-4 py-4 lg:mt-9 lg:px-6">
|
|
<ul class="mb-6 flex flex-col gap-1.5">
|
|
<.sidebar_item
|
|
icon="hero-code-bracket"
|
|
text="Github"
|
|
target="_blank"
|
|
href="https://github.com/kieraneglin/pinchflat"
|
|
/>
|
|
<li>
|
|
<span
|
|
class={[
|
|
"font-medium text-bodydark1",
|
|
"group relative flex items-center gap-2.5 rounded-sm px-4 py-2 duration-300 ease-in-out",
|
|
"duration-300 ease-in-out cursor-pointer",
|
|
"hover:bg-graydark dark:hover:bg-meta-4"
|
|
]}
|
|
phx-click={show_modal("donate-modal")}
|
|
>
|
|
<.icon name="hero-currency-dollar" /> Donate
|
|
</span>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</section>
|
|
</aside>
|