add hover chart

This commit is contained in:
MuslemRahimi 2024-11-02 00:37:01 +01:00
parent dc4687555e
commit 23532be1c4
4 changed files with 290 additions and 12 deletions

View File

@ -0,0 +1,221 @@
<script lang="ts">
import * as Avatar from "$lib/components/shadcn/avatar/index.js";
import * as HoverCard from "$lib/components/shadcn/hover-card/index.js";
import { ColorType } from "lightweight-charts";
import { Chart, BaselineSeries, PriceLine } from "svelte-lightweight-charts";
import { screenWidth } from "$lib/store";
import { abbreviateNumber } from "$lib/utils";
export let stockChartData;
export let symbol;
export let priceData;
export let changesPercentage;
export let change;
const topLineColor = "#71CA96";
const topFillColor1 = "rgba( 38, 166, 154, 0.2)";
const bottomLineColor = "#FF7070";
const bottomFillColor1 = "rgba(239, 83, 80, 0.2)";
let width = $screenWidth < 640 ? 80 : 150; //= ($screenWidth <= 1200 && $screenWidth > 900) ? 360 : ($screenWidth <= 900 && $screenWidth > 700) ? 260 : ($screenWidth <= 700 && $screenWidth >=600 ) ? 200 : ($screenWidth < 600 && $screenWidth >=500 ) ? 150 : 80;
//Initial height of graph
let height = $screenWidth < 640 ? 50 : 60;
let observer;
let ref;
let chart;
ref = (element) => {
if (observer) {
observer?.disconnect();
}
if (!element) {
return;
}
observer = new ResizeObserver(([entry]) => {
width = entry.contentRect.width;
height = entry.contentRect.height;
});
observer.observe(element);
};
const THEMES = {
Dark: {
chart: {
layout: {
background: {
type: ColorType.Solid,
color: "#09090B",
},
lineColor: "#2B2B43",
textColor: "#D9D9D9",
},
crosshair: {
mode: 2,
},
grid: {
vertLines: {
visible: false,
},
horzLines: {
visible: false,
},
},
},
series: {
baseValue: { type: "price", price: priceData?.at(0)?.value },
priceLineVisible: false,
baseLineVisible: true,
baseLineColor: "#B2B5BE",
baseLineWidth: 1,
baseLineStyle: 1,
lineWidth: 1.5,
},
},
};
const AVAILABLE_THEMES = Object?.keys(THEMES);
let selected = AVAILABLE_THEMES[0];
$: theme = THEMES[selected];
const options = {
width: width,
height: height,
rightPriceScale: {
visible: false,
},
timeScale: {
borderColor: "#FFFFFF",
textColor: "#FFFFFF",
visible: false,
fixLeftEdge: true,
fixRightEdge: true,
},
handleScale: {
mouseWheel: false,
},
handleScroll: {
mouseWheel: false,
horzTouchDrag: false,
vertTouchDrag: false,
pressedMouseMove: false,
},
};
if ($screenWidth && chart && typeof window !== "undefined") {
console.log("yes");
chart?.timeScale()?.fitContent();
}
</script>
<div on:mouseover>
<HoverCard.Root>
<div on:mouseover>
<HoverCard.Trigger
class="rounded-sm underline-offset-4 hover:underline focus-visible:outline-2 focus-visible:outline-offset-8 focus-visible:outline-black"
>
<a
href={symbol?.length !== 0 && !["BTC", "USD"]?.includes(symbol)
? `/stocks/${symbol}`
: symbol === "BTC"
? "/crypto/BTCUSD"
: ""}
class="sm:hover:text-white text-blue-400"
>{symbol?.length !== 0 ? symbol : "-"}</a
>
</HoverCard.Trigger>
</div>
<HoverCard.Content class="w-80 bg-[#09090B] border border-gray-600">
<div class="flex justify-between space-x-4 w-full text-white">
<div class="space-y-1 w-full">
<!--Hover Stock Chart-->
<label
class=" text-sm flex flex-row items-center justify-start bg-[#09090B]"
>
<div class="flex flex-col items-start w-full">
<div class="-ml-2 flex flex-row items-center pb-1">
<Avatar.Root>
<Avatar.Image
class="w-5 h-5 rounded-full avatar text-center m-auto flex-shrink-0"
src={`https://financialmodelingprep.com/image-stock/${symbol}.png`}
/>
<Avatar.Fallback>SK</Avatar.Fallback>
</Avatar.Root>
<h4 class="text-[1rem] font-semibold inline-block">{symbol}</h4>
</div>
<p>
Current Price: {stockChartData?.price?.toFixed(2)} (<span
class="text-xs {change >= 0
? "before:content-['+'] text-[#00FC50]"
: 'text-[#FF2F1F]'}">{change?.toFixed(2)}</span
>)
</p>
<p>
<svg
class="inline-block w-4 h-4 {changesPercentage >= 0
? ''
: 'rotate-180'}"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
>
<path
fill={changesPercentage >= 0 ? "#00FC50" : "#FF2F1F"}
d="M12.884 5.116a1.253 1.253 0 0 0-1.768 0l-5 5a1.25 1.25 0 0 0 1.768 1.768l2.866-2.866V18a1.25 1.25 0 1 0 2.5 0V9.018l2.866 2.866a1.25 1.25 0 1 0 1.768-1.768z"
/>
</svg>
{#if changesPercentage != null}
<span
class="-ml-1"
style="color: {changesPercentage >= 0
? '#00FC50'
: '#FF2F1F'}"
>
{changesPercentage >= 1000 || changesPercentage <= -1000
? abbreviateNumber(changesPercentage)
: changesPercentage?.toFixed(2)}%
</span>
{:else}
-
{/if}
today
</p>
</div>
{#if priceData?.length > 0}
<div class="w-[50%]">
<Chart
{...options}
{...theme.chart}
autoSize={true}
ref={(ref) => (chart = ref)}
>
<BaselineSeries
data={priceData}
{...theme.series}
{topLineColor}
{topFillColor1}
{bottomLineColor}
{bottomFillColor1}
>
<PriceLine
price={priceData?.at(0)?.value}
lineWidth={1}
color="#fff"
/>
</BaselineSeries>
</Chart>
</div>
{/if}
</label>
<!--Hover Stock Chart-->
</div>
</div>
</HoverCard.Content>
</HoverCard.Root>
</div>

View File

@ -0,0 +1,20 @@
import type { RequestHandler } from "./$types";
export const POST: RequestHandler = async ({ request, locals }) => {
const data = await request.json();
const { apiURL, apiKey } = locals;
const postData = { ticker: data?.ticker };
const response = await fetch(apiURL + "/hover-stock-chart", {
method: "POST",
headers: {
"Content-Type": "application/json",
"X-API-KEY": apiKey,
},
body: JSON.stringify(postData),
});
const output = await response.json();
return new Response(JSON.stringify(output));
};

View File

@ -1,6 +1,6 @@
export const load = async ({ locals, params }) => {
const getETFHoldings = async () => {
const { apiKey, apiURL } = locals;
const getETFHoldings = async () => {
const postData = {
ticker: params.tickerID,
};

View File

@ -5,15 +5,20 @@
displayCompanyName,
} from "$lib/store";
import { Button } from "$lib/components/shadcn/button/index.js";
import { screenWidth } from "$lib/store";
import { screenWidth, getCache, setCache } from "$lib/store";
import { abbreviateNumber, formatString } from "$lib/utils";
import { onMount } from "svelte";
import { goto } from "$app/navigation";
import TableHeader from "$lib/components/Table/TableHeader.svelte";
import HoverStockChart from "$lib/components/HoverStockChart.svelte";
export let data;
let rawData = data?.getETFHoldings;
let holdings = rawData?.slice(0, 50);
let stockChartData = {};
let change = 0;
let changesPercentage = 0;
let priceData = [];
async function handleScroll() {
const scrollThreshold = document.body.offsetHeight * 0.8; // 80% of the website height
@ -25,6 +30,40 @@
}
}
async function getStockData(ticker: string) {
const cachedData = getCache(ticker, "hoverStockChart");
if (cachedData) {
stockChartData = cachedData;
} else {
const postData = { ticker: ticker };
const response = await fetch("/api/hover-stock-chart", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(postData),
});
stockChartData = (await response.json()) ?? {};
setCache(ticker, stockChartData, "hoverStockChart");
}
changesPercentage = stockChartData?.changesPercentage;
change = stockChartData?.change;
priceData = stockChartData?.history;
priceData = priceData
?.map((item) => ({
time: Date.parse(item.time), // Assuming 'time' is the correct property to parse
value: item?.close ?? null,
}))
.filter(
(item) => item?.value !== 0 && item?.value != null, // Simplified condition
);
}
onMount(() => {
window.addEventListener("scroll", handleScroll);
return () => {
@ -254,16 +293,14 @@
<td
class="text-sm sm:text-[1rem] whitespace-nowrap border-b border-[#09090B]"
>
<a
href={item?.asset?.length !== 0 &&
!["BTC", "USD"].includes(item?.asset)
? `/stocks/${item?.asset}`
: item?.asset === "BTC"
? "/crypto/BTCUSD"
: ""}
class="sm:hover:text-white text-blue-400"
>{item?.asset?.length !== 0 ? item?.asset : "-"}</a
>
<HoverStockChart
on:mouseover={() => getStockData(item?.asset)}
{stockChartData}
symbol={item?.asset}
{change}
{changesPercentage}
{priceData}
/>
</td>
<td