frontend/src/routes/stocks/[tickerID]/profile/employees/+layout.svelte
MuslemRahimi f458c051b1 bugfixing
2025-02-20 20:47:28 +01:00

154 lines
5.9 KiB
Svelte

<script lang="ts">
import { stockTicker } from "$lib/store";
export let data;
let similarStocks;
let newsList = data?.getNews ?? [];
const formatDate = (dateString) => {
// Create a date object for the input dateString
const inputDate = new Date(dateString);
// Create a date object for the current time in New York City
const nycTime = new Date().toLocaleString("en-US", {
timeZone: "America/New_York",
});
const currentNYCDate = new Date(nycTime);
// Calculate the difference in milliseconds
const difference = inputDate.getTime() - currentNYCDate.getTime();
// Convert the difference to minutes
const minutes = Math.abs(Math.round(difference / (1000 * 60)));
if (minutes < 60) {
return `${minutes} minutes`;
} else if (minutes < 1440) {
const hours = Math.round(minutes / 60);
return `${hours} hour${hours !== 1 ? "s" : ""}`;
} else {
const days = Math.round(minutes / 1440);
return `${days} day${days !== 1 ? "s" : ""}`;
}
};
$: {
if ($stockTicker) {
similarStocks = data?.getSimilarStocks?.sort(
(a, b) => b?.employees - a?.employees,
);
}
}
</script>
<section class="w-full overflow-hidden">
<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 lg:w-3/4 lg:pr-10">
<slot />
</main>
<aside class="hidden lg:block relative fixed w-1/4 mt-3">
{#if similarStocks?.length > 0}
<div
class="w-full p-2 bg-inherit text-white border border-gray-600 rounded-md h-fit pb-4 mt-4 cursor-pointer"
>
<h3 class="p-2 pt-4 text-2xl font-semibold">Related Stocks</h3>
<table class="table table-sm table-compact w-full text-white">
<thead class="text-white"
><tr
><th
class="whitespace-nowrap border-b border-gray-600 font-semibold text-[1rem] text-left px-2"
>Company</th
>
<th
class="whitespace-nowrap border-b border-gray-600 font-semibold text-[1rem] text-right px-2"
>Employees</th
></tr
></thead
>
<tbody>
{#each similarStocks?.slice(0, 8) as item, index}
{#if item?.name}
<tr
class="border-gray-800 {index !==
similarStocks?.slice(0, 8).length - 1
? 'border-b'
: ''}"
><td class="text-left px-2"
><a
href={`/stocks/${item?.symbol}/profile/employees`}
class="text-[1rem] sm:hover:text-white text-blue-400"
>{item?.name?.length > 30
? item?.name?.slice(0, 30) + "..."
: item?.name}</a
></td
>
<td class="text-right text-[1rem] cursor-normal px-2"
>{item?.employees !== null &&
item?.employees !== undefined
? parseFloat(item?.employees).toLocaleString(
"en-US",
{
maximumFractionDigits: 2,
minimumFractionDigits: 0,
},
)
: "n/a"}</td
>
</tr>
{/if}
{/each}
</tbody>
</table>
<div class="px-2">
<a
href={`/list/most-employees`}
class="flex justify-center items-center rounded cursor-pointer w-full py-2 mt-3 text-[1rem] text-center font-semibold text-black m-auto sm:hover:bg-gray-300 bg-[#fff] transition duration-100"
>
Employee Rankings
</a>
</div>
</div>
{/if}
{#if newsList?.length !== 0}
<div
class="w-full sm:hover:text-white text-white border border-gray-600 rounded-md h-fit pb-4 mt-4 cursor-pointer bg-inherit"
>
<div class="p-4 text-sm">
<h3 class="text-lg text-white font-semibold mb-3">
{$stockTicker} News
</h3>
<ul class="text-white mb-3">
{#each newsList?.slice(0, 10) as item}
<li class="mb-3 last:mb-1">
{formatDate(item?.publishedDate)} ago -
<a
class="sm:hover:text-white text-blue-400"
href={item?.url}
target="_blank"
rel="noopener noreferrer nofollow">{item?.title}</a
>
- {item?.site}
</li>
{/each}
</ul>
<a
href={`/stocks/${$stockTicker}`}
class="flex justify-center items-center rounded cursor-pointer w-full py-2 -mb-3 mt-6 text-[1rem] text-center font-semibold text-black m-auto sm:hover:bg-gray-300 bg-[#fff] transition duration-100"
>
More News
</a>
</div>
</div>
{/if}
</aside>
</div>
</div>
</div>
</section>