93 lines
3.2 KiB
Svelte
93 lines
3.2 KiB
Svelte
<script lang="ts">
|
|
import { indexTicker } from "$lib/store";
|
|
import { page } from "$app/stores";
|
|
|
|
export let data;
|
|
|
|
let displaySubSection = "overview";
|
|
|
|
function changeSubSection(state) {
|
|
const subSectionMap = {
|
|
dex: "/options/dex",
|
|
strike: "/options/dex/strike",
|
|
expiry: "/options/dex/expiry",
|
|
};
|
|
|
|
if (state !== "overview" && subSectionMap[state]) {
|
|
displaySubSection = state;
|
|
} else {
|
|
displaySubSection = state;
|
|
}
|
|
}
|
|
|
|
$: {
|
|
if ($page?.url?.pathname) {
|
|
const parts = $page?.url?.pathname.split("/");
|
|
const sectionMap = {
|
|
overview: "overview",
|
|
strike: "strike",
|
|
expiry: "expiry",
|
|
};
|
|
|
|
const foundSection = parts?.find((part) =>
|
|
Object?.values(sectionMap)?.includes(part),
|
|
);
|
|
|
|
displaySubSection =
|
|
Object?.keys(sectionMap)?.find(
|
|
(key) => sectionMap[key] === foundSection,
|
|
) || "overview";
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<section class="w-full overflow-hidden min-h-screen">
|
|
<div class="w-full overflow-hidden m-auto">
|
|
<div class="sm:p-0 flex justify-center w-full m-auto overflow-hidden">
|
|
<div
|
|
class="relative flex justify-center items-start overflow-hidden w-full"
|
|
>
|
|
<main class="w-full">
|
|
<nav
|
|
class="sm:ml-4 overflow-x-auto pt-1 text-sm sm:text-[1rem] whitespace-nowrap"
|
|
>
|
|
<ul class="flex flex-row items-center w-full">
|
|
<a
|
|
href={`/index/${$indexTicker}/options/dex`}
|
|
on:click={() => changeSubSection("overview")}
|
|
class="p-2 px-5 cursor-pointer {displaySubSection === 'overview'
|
|
? 'text-muted dark:text-white bg-[#EEEEEE] dark:bg-primary/90 font-semibold'
|
|
: 'text-blue-600 dark:text-gray-400 sm:hover:text-muted dark:sm:hover:text-white sm:hover:bg-[#EEEEEE] dark:sm:hover:bg-primary/90'}"
|
|
>
|
|
Overview
|
|
</a>
|
|
|
|
<a
|
|
href={`/index/${$indexTicker}/options/dex/strike`}
|
|
on:click={() => changeSubSection("strike")}
|
|
class="p-2 px-5 cursor-pointer {displaySubSection === 'strike'
|
|
? 'text-muted dark:text-white bg-[#EEEEEE] dark:bg-primary/90 font-semibold'
|
|
: 'text-blue-600 dark:text-gray-400 sm:hover:text-muted dark:sm:hover:text-white sm:hover:bg-[#EEEEEE] dark:sm:hover:bg-primary/90'}"
|
|
>
|
|
By Strike
|
|
</a>
|
|
<a
|
|
href={`/index/${$indexTicker}/options/dex/expiry`}
|
|
on:click={() => changeSubSection("expiry")}
|
|
class="p-2 px-5 cursor-pointer {displaySubSection === 'expiry'
|
|
? 'text-muted dark:text-white bg-[#EEEEEE] dark:bg-primary/90 font-semibold'
|
|
: 'text-blue-600 dark:text-gray-400 sm:hover:text-muted dark:sm:hover:text-white sm:hover:bg-[#EEEEEE] dark:sm:hover:bg-primary/90'}"
|
|
>
|
|
By Expiry
|
|
</a>
|
|
</ul>
|
|
</nav>
|
|
<div class="mt-2 sm:mt-0">
|
|
<slot />
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|