360 lines
14 KiB
Svelte
360 lines
14 KiB
Svelte
<script lang="ts">
|
|
import { goto } from "$app/navigation";
|
|
import { numberOfUnreadNotification, screenWidth } from "$lib/store";
|
|
import { abbreviateNumber } from "$lib/utils";
|
|
import { onMount } from "svelte";
|
|
import UpgradeToPro from "$lib/components/UpgradeToPro.svelte";
|
|
import ArrowLogo from "lucide-svelte/icons/move-up-right";
|
|
import TableHeader from "$lib/components/Table/TableHeader.svelte";
|
|
import HoverStockChart from "$lib/components/HoverStockChart.svelte";
|
|
|
|
export let data;
|
|
|
|
let isLoaded = false;
|
|
let rawData = [];
|
|
let stockList = [];
|
|
|
|
async function handleScroll() {
|
|
const scrollThreshold = document.body.offsetHeight * 0.8; // 80% of the website height
|
|
const isBottom = window.innerHeight + window.scrollY >= scrollThreshold;
|
|
if (isBottom && stockList?.length !== rawData?.length) {
|
|
const nextIndex = stockList?.length;
|
|
const filteredNewResults = rawData?.slice(nextIndex, nextIndex + 25);
|
|
stockList = [...stockList, ...filteredNewResults];
|
|
}
|
|
}
|
|
|
|
onMount(() => {
|
|
rawData = data?.getSentimentTracker ?? [];
|
|
stockList = rawData?.slice(0, 50) ?? [];
|
|
|
|
isLoaded = true;
|
|
|
|
if (data?.user?.tier === "Pro") {
|
|
window.addEventListener("scroll", handleScroll);
|
|
return () => {
|
|
window.removeEventListener("scroll", handleScroll);
|
|
};
|
|
}
|
|
});
|
|
|
|
let columns = [
|
|
{ key: "rank", label: "#", align: "right" },
|
|
{ key: "symbol", label: "Symbol", align: "left" },
|
|
{ key: "name", label: "Name", align: "left" },
|
|
{ key: "marketCap", label: "Market Cap", align: "right" },
|
|
{ key: "price", label: "Price", align: "right" },
|
|
{ key: "changesPercentage", label: "% Change", align: "right" },
|
|
{ key: "sentiment", label: "Sentiment", align: "right" },
|
|
];
|
|
|
|
let sortOrders = {
|
|
rank: { order: "none", type: "number" },
|
|
symbol: { order: "none", type: "string" },
|
|
name: { order: "none", type: "string" },
|
|
marketCap: { order: "none", type: "number" },
|
|
price: { order: "none", type: "number" },
|
|
changesPercentage: { order: "none", type: "number" },
|
|
sentiment: { order: "none", type: "number" },
|
|
};
|
|
|
|
const sortData = (key) => {
|
|
// Reset all other keys to 'none' except the current key
|
|
for (const k in sortOrders) {
|
|
if (k !== key) {
|
|
sortOrders[k].order = "none";
|
|
}
|
|
}
|
|
|
|
// Cycle through 'none', 'asc', 'desc' for the clicked key
|
|
const orderCycle = ["none", "asc", "desc"];
|
|
|
|
let originalData = rawData;
|
|
|
|
const currentOrderIndex = orderCycle.indexOf(sortOrders[key].order);
|
|
sortOrders[key].order =
|
|
orderCycle[(currentOrderIndex + 1) % orderCycle.length];
|
|
const sortOrder = sortOrders[key].order;
|
|
|
|
// Reset to original data when 'none' and stop further sorting
|
|
if (sortOrder === "none") {
|
|
stockList = [...originalData]; // Reset to original data (spread to avoid mutation)
|
|
return;
|
|
}
|
|
|
|
// Define a generic comparison function
|
|
const compareValues = (a, b) => {
|
|
const { type } = sortOrders[key];
|
|
let valueA, valueB;
|
|
|
|
switch (type) {
|
|
case "date":
|
|
valueA = new Date(a[key]);
|
|
valueB = new Date(b[key]);
|
|
break;
|
|
case "string":
|
|
valueA = a[key].toUpperCase();
|
|
valueB = b[key].toUpperCase();
|
|
return sortOrder === "asc"
|
|
? valueA.localeCompare(valueB)
|
|
: valueB.localeCompare(valueA);
|
|
case "number":
|
|
default:
|
|
valueA = parseFloat(a[key]);
|
|
valueB = parseFloat(b[key]);
|
|
break;
|
|
}
|
|
|
|
if (sortOrder === "asc") {
|
|
return valueA < valueB ? -1 : valueA > valueB ? 1 : 0;
|
|
} else {
|
|
return valueA > valueB ? -1 : valueA < valueB ? 1 : 0;
|
|
}
|
|
};
|
|
|
|
// Sort using the generic comparison function
|
|
stockList = [...originalData].sort(compareValues);
|
|
};
|
|
$: charNumber = $screenWidth < 640 ? 15 : 40;
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title>
|
|
{$numberOfUnreadNotification > 0 ? `(${$numberOfUnreadNotification})` : ""} Sentiment
|
|
Tracker · stocknear
|
|
</title>
|
|
<meta
|
|
name="description"
|
|
content={`Stay ahead of the market with our real-time filtering of the most discussed and bullish stocks on social media. Discover trending stocks and make informed investment decisions today!`}
|
|
/>
|
|
|
|
<!-- Other meta tags -->
|
|
<meta property="og:title" content={`Sentiment Tracker · stocknear`} />
|
|
<meta
|
|
property="og:description"
|
|
content={`Stay ahead of the market with our real-time filtering of the most discussed and bullish stocks on social media. Discover trending stocks and make informed investment decisions today!`}
|
|
/>
|
|
<meta property="og:type" content="website" />
|
|
<!-- Add more Open Graph meta tags as needed -->
|
|
|
|
<!-- Twitter specific meta tags -->
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:title" content={`Sentiment Tracker · stocknear`} />
|
|
<meta
|
|
name="twitter:description"
|
|
content={`Stay ahead of the market with our real-time filtering of the most discussed and bullish stocks on social media. Discover trending stocks and make informed investment decisions today!`}
|
|
/>
|
|
<!-- Add more Twitter meta tags as needed -->
|
|
</svelte:head>
|
|
|
|
<section
|
|
class="w-full max-w-3xl sm:max-w-screen-2xl overflow-hidden pb-20 pt-5 px-4 lg:px-3"
|
|
>
|
|
<div class="text-sm sm:text-[1rem] breadcrumbs">
|
|
<ul>
|
|
<li><a href="/" class="text-gray-300">Home</a></li>
|
|
<li class="text-gray-300">Sentiment Tracker</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="w-full overflow-hidden m-auto mt-5">
|
|
<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-5">
|
|
<div class="mb-6 border-b-[2px]">
|
|
<h1 class="mb-1 text-white text-2xl sm:text-3xl font-bold">
|
|
Sentiment Tracker
|
|
</h1>
|
|
</div>
|
|
|
|
{#if isLoaded}
|
|
<div
|
|
class="mb-8 w-full text-center sm:text-start sm:flex sm:flex-row sm:items-center m-auto text-gray-100 border border-gray-800 sm:rounded-lg h-auto p-5"
|
|
>
|
|
<svg
|
|
class="w-5 h-5 inline-block sm:mr-2 flex-shrink-0"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
viewBox="0 0 256 256"
|
|
><path
|
|
fill="#FBCE3C"
|
|
d="M128 24a104 104 0 1 0 104 104A104.11 104.11 0 0 0 128 24m-4 48a12 12 0 1 1-12 12a12 12 0 0 1 12-12m12 112a16 16 0 0 1-16-16v-40a8 8 0 0 1 0-16a16 16 0 0 1 16 16v40a8 8 0 0 1 0 16"
|
|
/></svg
|
|
>
|
|
We update our data in realtime to provide you with the latest trends
|
|
and the most bullish stocks being discussed on Twitter and StockTwits
|
|
</div>
|
|
|
|
<div class="w-screen sm:w-full m-auto mt-20 sm:mt-10">
|
|
<div
|
|
class="w-screen sm:w-full m-auto rounded-none sm:rounded-lg mb-4 overflow-x-scroll sm:overflow-hidden"
|
|
>
|
|
<table
|
|
class="table table-sm table-compact rounded-none sm:rounded-md w-full bg-[#09090B] border-bg-[#09090B] m-auto"
|
|
>
|
|
<thead>
|
|
<TableHeader {columns} {sortOrders} {sortData} />
|
|
</thead>
|
|
<tbody>
|
|
{#each stockList as item, index}
|
|
<tr
|
|
class="sm:hover:bg-[#245073] border-b border-[#27272A] sm:hover:bg-opacity-[0.2] odd:bg-[#27272A] {index +
|
|
1 ===
|
|
stockList?.length && data?.user?.tier !== 'Pro'
|
|
? 'opacity-[0.1]'
|
|
: ''}"
|
|
>
|
|
<td
|
|
class="text-white text-sm sm:text-[1rem] font-medium text-white text-end"
|
|
>
|
|
{item?.rank}
|
|
</td>
|
|
|
|
<td class="text-sm sm:text-[1rem] text-start">
|
|
<HoverStockChart symbol={item?.symbol} />
|
|
</td>
|
|
|
|
<td
|
|
class="whitespace-nowrap text-white text-sm sm:text-[1rem] text-white text-start"
|
|
>
|
|
{item?.name?.length > charNumber
|
|
? item?.name?.slice(0, charNumber) + "..."
|
|
: item?.name}
|
|
</td>
|
|
|
|
<td
|
|
class="text-end text-sm sm:text-[1rem] font-medium text-white whitespace-nowrap"
|
|
>
|
|
{abbreviateNumber(item?.marketCap)}
|
|
</td>
|
|
|
|
<td
|
|
class="text-end text-sm sm:text-[1rem] whitespace-nowrap font-medium text-white"
|
|
>
|
|
{item?.price}
|
|
</td>
|
|
|
|
<td
|
|
class="text-sm sm:text-[1rem] whitespace-nowrap {item?.changesPercentage >=
|
|
0
|
|
? 'text-[#00FC50]'
|
|
: 'text-[#FF2F1F]'} text-end"
|
|
>
|
|
{item?.changesPercentage > 0
|
|
? "+"
|
|
: ""}{item?.changesPercentage}%
|
|
</td>
|
|
|
|
<td
|
|
class="text-end text-sm sm:text-[1rem] font-medium whitespace-nowrap {item?.sentiment >=
|
|
55
|
|
? 'text-[#00FC50]'
|
|
: item?.sentiment >= 50
|
|
? 'text-[#E57C34]'
|
|
: 'text-[#FF2F1F]'}"
|
|
>
|
|
<div class="flex flex-row items-center justify-end">
|
|
<div class="">
|
|
{item?.sentiment >= 80
|
|
? "Very Bullish"
|
|
: item?.sentiment >= 55
|
|
? "Bullish"
|
|
: item?.sentiment > 50
|
|
? "Mixed"
|
|
: "Bearish"}
|
|
</div>
|
|
<div
|
|
class="ml-2 px-1.5 py-1.5 border text-center rounded-lg text-xs font-semibold"
|
|
>
|
|
{item?.sentiment}
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{/each}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<UpgradeToPro
|
|
{data}
|
|
title="Get the latest stock trends from social media to never miss out the next hype"
|
|
/>
|
|
</div>
|
|
{:else}
|
|
<div class="flex justify-center items-center h-80">
|
|
<div class="relative">
|
|
<label
|
|
class="bg-[#09090B] rounded-xl h-14 w-14 flex justify-center items-center absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2"
|
|
>
|
|
<span class="loading loading-spinner loading-md text-gray-400"
|
|
></span>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
</main>
|
|
|
|
<aside class="hidden lg:block relative fixed w-1/4 ml-4">
|
|
{#if data?.user?.tier !== "Pro" || data?.user?.freeTrial}
|
|
<div
|
|
on:click={() => goto("/pricing")}
|
|
class="w-full text-white border border-gray-600 rounded-md h-fit pb-4 mt-4 cursor-pointer"
|
|
>
|
|
<div
|
|
class="w-auto lg:w-full p-1 flex flex-col m-auto px-2 sm:px-0"
|
|
>
|
|
<div class="w-full flex justify-between items-center p-3 mt-3">
|
|
<h2 class="text-start text-xl font-semibold text-white ml-3">
|
|
Pro Subscription
|
|
</h2>
|
|
<ArrowLogo class="w-8 h-8 mr-3 flex-shrink-0" />
|
|
</div>
|
|
<span class="text-white p-3 ml-3 mr-3">
|
|
Upgrade now for unlimited access to all data and tools.
|
|
</span>
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
|
|
<div
|
|
on:click={() => goto("/cramer-tracker")}
|
|
class="w-full text-white border border-gray-600 rounded-md h-fit pb-4 mt-4 cursor-pointer"
|
|
>
|
|
<div class="w-auto lg:w-full p-1 flex flex-col m-auto px-2 sm:px-0">
|
|
<div class="w-full flex justify-between items-center p-3 mt-3">
|
|
<h2 class="text-start text-xl font-semibold text-white ml-3">
|
|
Cramer Tracker
|
|
</h2>
|
|
<ArrowLogo class="w-8 h-8 mr-3 flex-shrink-0" />
|
|
</div>
|
|
<span class="text-white p-3 ml-3 mr-3">
|
|
Follow Jim Cramer latest stock picks
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div
|
|
on:click={() => goto("/reddit-tracker")}
|
|
class="w-full text-white border border-gray-600 rounded-md h-fit pb-4 mt-4 cursor-pointer"
|
|
>
|
|
<div class="w-auto lg:w-full p-1 flex flex-col m-auto px-2 sm:px-0">
|
|
<div class="w-full flex justify-between items-center p-3 mt-3">
|
|
<h2 class="text-start text-xl font-semibold text-white ml-3">
|
|
Reddit Tracker
|
|
</h2>
|
|
<ArrowLogo class="w-8 h-8 mr-3 flex-shrink-0" />
|
|
</div>
|
|
<span class="text-white p-3 ml-3 mr-3">
|
|
Get the latest trends of r/Wallstreetbets
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</aside>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|