ui fix
This commit is contained in:
parent
b39e3f327c
commit
c9df82745f
@ -17,7 +17,7 @@
|
|||||||
// White House coordinates
|
// White House coordinates
|
||||||
const LON = -77.0365427;
|
const LON = -77.0365427;
|
||||||
const LAT = 38.8950368;
|
const LAT = 38.8950368;
|
||||||
const ZOOM = 5;
|
const ZOOM = 4.5;
|
||||||
|
|
||||||
let mapElement;
|
let mapElement;
|
||||||
let map;
|
let map;
|
||||||
|
|||||||
@ -19,7 +19,7 @@ type FlyAndScaleParams = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export function removeCompanyStrings(name) {
|
export function removeCompanyStrings(name) {
|
||||||
const wordsToRemove = ["Technologies", "Inc."];
|
const wordsToRemove = ["Technologies", "Inc.","Corp.","Corporation","Holding","Limited","Group"];
|
||||||
if (!name) return "";
|
if (!name) return "";
|
||||||
return wordsToRemove?.reduce((acc, word) => acc.replace(word, "").trim(), name);
|
return wordsToRemove?.reduce((acc, word) => acc.replace(word, "").trim(), name);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,9 +6,6 @@
|
|||||||
import { screenWidth } from "$lib/store";
|
import { screenWidth } from "$lib/store";
|
||||||
import ArrowLogo from "lucide-svelte/icons/move-up-right";
|
import ArrowLogo from "lucide-svelte/icons/move-up-right";
|
||||||
|
|
||||||
import { Chart } from "svelte-echarts";
|
|
||||||
import ScrollToTop from "$lib/components/ScrollToTop.svelte";
|
|
||||||
|
|
||||||
import { init, use } from "echarts/core";
|
import { init, use } from "echarts/core";
|
||||||
import { LineChart, BarChart } from "echarts/charts";
|
import { LineChart, BarChart } from "echarts/charts";
|
||||||
import {
|
import {
|
||||||
@ -84,128 +81,6 @@
|
|||||||
return text.slice(0, maxLength) + "...";
|
return text.slice(0, maxLength) + "...";
|
||||||
}
|
}
|
||||||
|
|
||||||
function plotData() {
|
|
||||||
const history = data?.getEggPrice?.history || [];
|
|
||||||
const dateList = history.map((item) => item?.date ?? null);
|
|
||||||
const priceList = history.map((item) => item?.price ?? null);
|
|
||||||
const yoyChangeList = history.map((item) => item?.yoyChange ?? null);
|
|
||||||
|
|
||||||
const options = {
|
|
||||||
animation: false,
|
|
||||||
tooltip: {
|
|
||||||
trigger: "axis",
|
|
||||||
hideDelay: 100,
|
|
||||||
borderColor: "#969696", // Black border color
|
|
||||||
borderWidth: 1, // Border width of 1px
|
|
||||||
backgroundColor: "#313131", // Optional: Set background color for contrast
|
|
||||||
textStyle: {
|
|
||||||
color: "#fff", // Optional: Text color for better visibility
|
|
||||||
},
|
|
||||||
formatter: function (params) {
|
|
||||||
const timestamp = params[0].axisValue;
|
|
||||||
let result = timestamp + "<br/>";
|
|
||||||
|
|
||||||
params?.forEach((param) => {
|
|
||||||
const marker =
|
|
||||||
'<span style="display:inline-block;margin-right:4px;' +
|
|
||||||
"border-radius:10px;width:10px;height:10px;background-color:" +
|
|
||||||
param.color +
|
|
||||||
'"></span>';
|
|
||||||
|
|
||||||
// Check if it's "YoY Change" and append "%"
|
|
||||||
const value =
|
|
||||||
param.seriesName === "YoY Change"
|
|
||||||
? param.value + "%"
|
|
||||||
: param.value;
|
|
||||||
|
|
||||||
result += marker + param.seriesName + ": " + value + "<br/>";
|
|
||||||
});
|
|
||||||
|
|
||||||
return result;
|
|
||||||
},
|
|
||||||
axisPointer: {
|
|
||||||
lineStyle: {
|
|
||||||
color: "#fff",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
silent: true,
|
|
||||||
grid: {
|
|
||||||
left: $screenWidth < 640 ? "5%" : "4%",
|
|
||||||
right: $screenWidth < 640 ? "5%" : "0%",
|
|
||||||
bottom: "4%",
|
|
||||||
containLabel: true,
|
|
||||||
},
|
|
||||||
xAxis: [
|
|
||||||
{
|
|
||||||
type: "category",
|
|
||||||
data: dateList,
|
|
||||||
axisLabel: {
|
|
||||||
color: "#fff",
|
|
||||||
|
|
||||||
formatter: function (value) {
|
|
||||||
// Assuming dates are in the format 'yyyy-mm-dd'
|
|
||||||
const dateParts = value.split("-");
|
|
||||||
const monthIndex = parseInt(dateParts[1]) - 1; // Months are zero-indexed in JavaScript Date objects
|
|
||||||
const year = parseInt(dateParts[0]);
|
|
||||||
const day = parseInt(dateParts[2]);
|
|
||||||
return `${day} ${monthNames[monthIndex]} ${year}`;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
yAxis: [
|
|
||||||
{
|
|
||||||
type: "value",
|
|
||||||
splitLine: {
|
|
||||||
show: false, // Disable x-axis grid lines
|
|
||||||
},
|
|
||||||
axisLabel: {
|
|
||||||
show: false, // Hide y-axis labels
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "value",
|
|
||||||
splitLine: {
|
|
||||||
show: false, // Disable x-axis grid lines
|
|
||||||
},
|
|
||||||
position: "right",
|
|
||||||
axisLabel: {
|
|
||||||
show: false, // Hide y-axis labels
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
series: [
|
|
||||||
{
|
|
||||||
name: "Price per Dozens",
|
|
||||||
type: "line",
|
|
||||||
data: priceList,
|
|
||||||
yAxisIndex: 1,
|
|
||||||
lineStyle: { width: 2 },
|
|
||||||
itemStyle: {
|
|
||||||
color: "#fff",
|
|
||||||
},
|
|
||||||
smooth: true,
|
|
||||||
showSymbol: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "YoY Change",
|
|
||||||
type: "bar",
|
|
||||||
lineStyle: { width: 2 },
|
|
||||||
data: yoyChangeList,
|
|
||||||
itemStyle: {
|
|
||||||
color: "#2b7fff",
|
|
||||||
},
|
|
||||||
smooth: true,
|
|
||||||
showSymbol: false,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
return options;
|
|
||||||
}
|
|
||||||
|
|
||||||
let options = plotData();
|
|
||||||
|
|
||||||
function latestInfoDate(inputDate) {
|
function latestInfoDate(inputDate) {
|
||||||
// Create a Date object for the input date and convert it to New York time zone
|
// Create a Date object for the input date and convert it to New York time zone
|
||||||
const inputDateLocal = new Date(inputDate).toLocaleString("en-US", {
|
const inputDateLocal = new Date(inputDate).toLocaleString("en-US", {
|
||||||
@ -256,89 +131,39 @@
|
|||||||
>
|
>
|
||||||
<div class="w-full mt-5">
|
<div class="w-full mt-5">
|
||||||
<div class="lg:float-left lg:w-[calc(100%-336px-20px)]">
|
<div class="lg:float-left lg:w-[calc(100%-336px-20px)]">
|
||||||
<h1 class="text-xl sm:text-2xl font-bold mb-4 w-full">
|
<div class=" border-b-[2px]">
|
||||||
POTUS Tracker
|
<h1 class="mb-1 text-white text-2xl sm:text-3xl font-bold">
|
||||||
</h1>
|
POTUS Tracker
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class=" lg:float-left lg:w-[calc(100%-336px-40px)]">
|
<div class=" lg:float-left lg:w-[calc(100%-336px-40px)]">
|
||||||
<nav class=" border-b-[2px] overflow-x-scroll whitespace-nowrap">
|
<div class="mt-5 mb-5">
|
||||||
<ul
|
<Infobox
|
||||||
class="flex flex-row items-center w-full text-[1rem] text-white"
|
text={`Since the inauguration of Donald J. Trump on January 20, 2025, the
|
||||||
>
|
|
||||||
{#each tabs as item, i}
|
|
||||||
<button
|
|
||||||
on:click={() => (activeIdx = i)}
|
|
||||||
class="p-2 px-5 cursor-pointer {activeIdx === i
|
|
||||||
? 'text-white bg-primary sm:hover:bg-opacity-[0.95] font-semibold'
|
|
||||||
: 'text-gray-400 sm:hover:text-white sm:hover:bg-primary sm:hover:bg-opacity-[0.95]'}"
|
|
||||||
>
|
|
||||||
{item.title}
|
|
||||||
</button>
|
|
||||||
{/each}
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
{#if activeIdx === 0}
|
|
||||||
<div class="mt-5 mb-5">
|
|
||||||
<Infobox
|
|
||||||
text={`Since the inauguration of Donald J. Trump on January 20, 2025, the
|
|
||||||
S&P500 has ${data?.getData?.returnSince >= 0 ? "grown" : "declined"} by <span class="${data?.getData?.returnSince >= 0 ? "text-[#00FC50] before:content-['+']" : "text-[#FF2F1F]"}">
|
S&P500 has ${data?.getData?.returnSince >= 0 ? "grown" : "declined"} by <span class="${data?.getData?.returnSince >= 0 ? "text-[#00FC50] before:content-['+']" : "text-[#FF2F1F]"}">
|
||||||
${data?.getData?.returnSince ?? "n/a"}%</span>.`}
|
${data?.getData?.returnSince ?? "n/a"}%</span>.`}
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2
|
|
||||||
class="text-white text-[1rem] sm:text-lg font-semibold mb-2 mt-4"
|
|
||||||
>
|
|
||||||
The US President is currently located in {data?.getData?.city ??
|
|
||||||
"n/a"}
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
<div class="w-full m-auto border border-gray-800 rounded-[10px]">
|
|
||||||
<Map LAT={data?.getData?.lat} LON={data?.getData?.lon} />
|
|
||||||
</div>
|
|
||||||
<span class="text-gray-300 text-xs">
|
|
||||||
Map data © OpenStreetMap
|
|
||||||
</span>
|
|
||||||
{:else}
|
|
||||||
<h2 class="text-white text-lg font-semibold mt-4">
|
|
||||||
Quick Stats:
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
<div
|
|
||||||
class="grid grid-cols-2 sm:grid-cols-4 md:grid-cols-6 gap-x-0 text-white mt-2 text-sm sm:text-[1rem] w-full"
|
|
||||||
>
|
|
||||||
<div class="whitespace-nowrap">
|
|
||||||
Current Price: {data?.getEggPrice?.currentPrice}
|
|
||||||
</div>
|
|
||||||
<div class="whitespace-nowrap">
|
|
||||||
<span class=" font-normal">Avg. Price:</span>
|
|
||||||
{data?.getEggPrice?.avgPrice}
|
|
||||||
</div>
|
|
||||||
<div class="whitespace-nowrap">
|
|
||||||
<span class=" font-normal">Min. Price:</span>
|
|
||||||
{data?.getEggPrice?.minPrice}
|
|
||||||
</div>
|
|
||||||
<div class="whitespace-nowrap">
|
|
||||||
<span class=" font-normal">Max. Price:</span>
|
|
||||||
{data?.getEggPrice?.maxPrice}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div
|
|
||||||
class="app w-full relative border border-gray-800 rounded mt-5 mb-5 p-3"
|
|
||||||
>
|
|
||||||
<Chart {init} {options} class="chart" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<Infobox
|
|
||||||
text="The historical egg prices are sourced from Federal Reserve Economic Data (FRED), which collects egg prices nationwide once a month and calculates the average."
|
|
||||||
/>
|
/>
|
||||||
{/if}
|
</div>
|
||||||
|
|
||||||
|
<h2
|
||||||
|
class="text-white text-[1rem] sm:text-xl font-semibold mb-2 mt-4"
|
||||||
|
>
|
||||||
|
The President is in {(data?.getData?.city === "Washington"
|
||||||
|
? "the White House"
|
||||||
|
: data?.getData?.city) ?? "n/a"}
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<div class="w-full m-auto border border-gray-800 rounded-[10px]">
|
||||||
|
<Map LAT={data?.getData?.lat} LON={data?.getData?.lon} />
|
||||||
|
</div>
|
||||||
|
<span class="text-gray-300 text-xs">
|
||||||
|
Map data © OpenStreetMap
|
||||||
|
</span>
|
||||||
|
|
||||||
<nav
|
<nav
|
||||||
class=" border-b-[2px] overflow-x-scroll whitespace-nowrap mt-10 sm:mt-6"
|
class=" border-b-[2px] whitespace-nowrap mt-10 sm:mt-6 overflow-hidden"
|
||||||
>
|
>
|
||||||
<ul
|
<ul
|
||||||
class="flex flex-row items-center w-full text-[1rem] text-white"
|
class="flex flex-row items-center w-full text-[1rem] text-white"
|
||||||
@ -357,283 +182,299 @@
|
|||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
{#if subActiveIdx === 0}
|
{#if subActiveIdx === 0}
|
||||||
<h3 class="text-white text-lg font-semibold mb-2 mt-6">
|
<h3
|
||||||
|
class="text-white text-lg sm:text-xl font-semibold mb-2 mt-6 border-y border-gray-800 pt-2 pb-2"
|
||||||
|
>
|
||||||
Official Presidential Schedule
|
Official Presidential Schedule
|
||||||
</h3>
|
</h3>
|
||||||
|
<div
|
||||||
<div class="space-y-4">
|
class="max-h-[600px] bg-[#1F1F1F] overflow-y-auto border border-gray-800 rounded-md p-4 no-scrollbar"
|
||||||
{#each Object.entries(groupedByDate) as [date, items], indexA}
|
>
|
||||||
<div class="my-4">
|
<div class="space-y-4">
|
||||||
<div
|
{#each Object.entries(groupedByDate) as [date, items], indexA}
|
||||||
class="border-b border-gray-800 pb-2 w-full flex flex-row items-center justify-between"
|
<div class="my-4">
|
||||||
>
|
<div
|
||||||
<span
|
class="border-b border-gray-200 pb-2 w-full flex flex-row items-center justify-between"
|
||||||
class="text-[1rem] sm:text-lg font-semibold text-white"
|
|
||||||
>
|
>
|
||||||
{date}</span
|
<span
|
||||||
>
|
class="text-[1rem] sm:text-lg font-semibold text-white"
|
||||||
{#if items?.at(0)?.changesPercentage}
|
>
|
||||||
<div class="ml-auto text-sm">
|
{date}</span
|
||||||
<span class="inline-block">S&P500</span>
|
>
|
||||||
<span
|
{#if items?.at(0)?.changesPercentage}
|
||||||
class="{items?.at(0)?.changesPercentage > 0
|
<div class="ml-auto text-sm">
|
||||||
? "text-[#00FC50] before:content-['+']"
|
<span class="inline-block">S&P500</span>
|
||||||
: 'text-[#FF2F1F]'} "
|
<span
|
||||||
>{items.length > 0
|
class="{items?.at(0)?.changesPercentage > 0
|
||||||
? items?.at(0)?.changesPercentage
|
? "text-[#00FC50] before:content-['+']"
|
||||||
: "n/a"}%</span
|
: 'text-[#FF2F1F]'} "
|
||||||
>
|
>{items.length > 0
|
||||||
</div>
|
? items?.at(0)?.changesPercentage
|
||||||
{/if}
|
: "n/a"}%</span
|
||||||
</div>
|
|
||||||
<!-- Display date -->
|
|
||||||
<br />
|
|
||||||
{#each items as item, indexB}
|
|
||||||
<div class="flex flex-col items-start space-y-1 mb-6">
|
|
||||||
<div class="flex flex-row items-center space-x-2">
|
|
||||||
<div class="relative">
|
|
||||||
<svg
|
|
||||||
fill={indexA === 0 && indexB === 0
|
|
||||||
? "#2E86DE"
|
|
||||||
: "#808080"}
|
|
||||||
class="w-5 h-5 relative z-10"
|
|
||||||
viewBox="-51.2 -51.2 614.40 614.40"
|
|
||||||
id="_78_Circle-Full"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
stroke={indexA === 0 && indexB === 0
|
|
||||||
? "#2E86DE"
|
|
||||||
: "#808080"}
|
|
||||||
stroke-width="0.00512"
|
|
||||||
>
|
>
|
||||||
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
|
</div>
|
||||||
<g
|
{/if}
|
||||||
id="SVGRepo_tracerCarrier"
|
</div>
|
||||||
stroke-linecap="round"
|
<!-- Display date -->
|
||||||
stroke-linejoin="round"
|
<br />
|
||||||
stroke="#CCCCCC"
|
{#each items as item, indexB}
|
||||||
stroke-width="24.576"
|
<div class="flex flex-col items-start space-y-1 mb-6">
|
||||||
></g>
|
<div class="flex flex-row items-center space-x-2">
|
||||||
<g id="SVGRepo_iconCarrier">
|
<div class="relative">
|
||||||
<path
|
<svg
|
||||||
id="Path_111"
|
fill={indexA === 0 && indexB === 0
|
||||||
data-name="Path 111"
|
? "#2E86DE"
|
||||||
d="M256,512C114.625,512,0,397.375,0,256S114.625,0,256,0,512,114.625,512,256,397.375,512,256,512Zm0-448C149.969,64,64,149.969,64,256s85.969,192,192,192,192-85.969,192-192S362.031,64,256,64Zm0,320A128,128,0,1,1,384,256,128.006,128.006,0,0,1,256,384Z"
|
: "#808080"}
|
||||||
fill-rule="evenodd"
|
class="w-5 h-5 relative z-10"
|
||||||
></path>
|
viewBox="-51.2 -51.2 614.40 614.40"
|
||||||
</g>
|
id="_78_Circle-Full"
|
||||||
</svg>
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
stroke={indexA === 0 && indexB === 0
|
||||||
|
? "#2E86DE"
|
||||||
|
: "#808080"}
|
||||||
|
stroke-width="0.00512"
|
||||||
|
>
|
||||||
|
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
|
||||||
|
<g
|
||||||
|
id="SVGRepo_tracerCarrier"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke="#CCCCCC"
|
||||||
|
stroke-width="24.576"
|
||||||
|
></g>
|
||||||
|
<g id="SVGRepo_iconCarrier">
|
||||||
|
<path
|
||||||
|
id="Path_111"
|
||||||
|
data-name="Path 111"
|
||||||
|
d="M256,512C114.625,512,0,397.375,0,256S114.625,0,256,0,512,114.625,512,256,397.375,512,256,512Zm0-448C149.969,64,64,149.969,64,256s85.969,192,192,192,192-85.969,192-192S362.031,64,256,64Zm0,320A128,128,0,1,1,384,256,128.006,128.006,0,0,1,256,384Z"
|
||||||
|
fill-rule="evenodd"
|
||||||
|
></path>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
|
||||||
{#if indexA === 0 && indexB === 0}
|
{#if indexA === 0 && indexB === 0}
|
||||||
<span
|
<span
|
||||||
class="absolute -inset-1 rounded-full animate-ping w-3 h-3 m-auto bg-blue-400/75"
|
class="absolute -inset-1 rounded-full animate-ping w-3 h-3 m-auto bg-blue-400/75"
|
||||||
></span>
|
></span>
|
||||||
{/if}
|
{/if}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<span class="text-sm sm:text-[1rem] text-gray-400">
|
||||||
|
{item.time_formatted}
|
||||||
|
{item.location !== null
|
||||||
|
? `- ${item?.location}`
|
||||||
|
: ""}
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<span class="text-sm sm:text-[1rem] text-gray-400">
|
<span class="text-sm sm:text-[1rem] ml-7">
|
||||||
{item.time_formatted}
|
{item.details}
|
||||||
{item.location !== null
|
|
||||||
? `- ${item?.location}`
|
|
||||||
: ""}
|
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
{/each}
|
||||||
<span class="text-sm sm:text-[1rem] ml-7">
|
</div>
|
||||||
{item.details}
|
{/each}
|
||||||
</span>
|
</div>
|
||||||
</div>
|
|
||||||
{/each}
|
|
||||||
</div>
|
|
||||||
{/each}
|
|
||||||
</div>
|
</div>
|
||||||
{:else}
|
{:else}
|
||||||
<h3 class="text-white text-lg font-semibold mb-2 mt-6">
|
<h3
|
||||||
AI Analysis of Recent Executive Orders
|
class="text-white text-lg sm:text-xl font-semibold mb-2 mt-6 border-y border-gray-800 pt-2 pb-2"
|
||||||
|
>
|
||||||
|
AI Executive Orders Analysis
|
||||||
</h3>
|
</h3>
|
||||||
<div class="space-y-4">
|
<div
|
||||||
{#each Object.entries(groupedOrders) as [date, items], indexA}
|
class="max-h-[600px] bg-[#1F1F1F] overflow-y-auto border border-gray-800 rounded-md p-4 no-scrollbar"
|
||||||
<div class="my-4">
|
>
|
||||||
<div
|
<div class="space-y-4">
|
||||||
class="border-b border-gray-800 pb-2 flex flex-row items-center"
|
{#each Object.entries(groupedOrders) as [date, items], indexA}
|
||||||
>
|
<div class="my-4">
|
||||||
<span class="text-lg font-semibold text-white"
|
|
||||||
>{date}</span
|
|
||||||
>
|
|
||||||
{#if latestInfoDate(date)}
|
|
||||||
<label
|
|
||||||
class="bg-[#fff] rounded text-black font-semibold text-xs px-2 py-0.5 ml-3 inline-block"
|
|
||||||
>New</label
|
|
||||||
>
|
|
||||||
{/if}
|
|
||||||
</div>
|
|
||||||
<br />
|
|
||||||
|
|
||||||
{#each items as item, indexB}
|
|
||||||
<div
|
<div
|
||||||
class="flex flex-col items-start space-y-1 mb-6 border-b border-gray-800 pb-4"
|
class="border-b border-gray-300 pb-2 flex flex-row items-center"
|
||||||
>
|
>
|
||||||
<div class="flex flex-row items-center space-x-2">
|
<span class="text-lg font-semibold text-white"
|
||||||
<div class="relative">
|
>{date}</span
|
||||||
<svg
|
>
|
||||||
fill={indexA === 0 && indexB === 0
|
{#if latestInfoDate(date)}
|
||||||
? "#2E86DE"
|
<label
|
||||||
: "#808080"}
|
class="bg-[#fff] rounded text-black font-semibold text-xs px-2 py-0.5 ml-3 inline-block"
|
||||||
class="w-5 h-5 relative z-10"
|
>New</label
|
||||||
viewBox="-51.2 -51.2 614.40 614.40"
|
>
|
||||||
id="_78_Circle-Full"
|
{/if}
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
</div>
|
||||||
stroke={indexA === 0 && indexB === 0
|
<br />
|
||||||
? "#2E86DE"
|
|
||||||
: "#808080"}
|
|
||||||
stroke-width="0.00512"
|
|
||||||
>
|
|
||||||
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
|
|
||||||
<g
|
|
||||||
id="SVGRepo_tracerCarrier"
|
|
||||||
stroke-linecap="round"
|
|
||||||
stroke-linejoin="round"
|
|
||||||
stroke="#CCCCCC"
|
|
||||||
stroke-width="24.576"
|
|
||||||
></g>
|
|
||||||
<g id="SVGRepo_iconCarrier">
|
|
||||||
<path
|
|
||||||
id="Path_111"
|
|
||||||
data-name="Path 111"
|
|
||||||
d="M256,512C114.625,512,0,397.375,0,256S114.625,0,256,0,512,114.625,512,256,397.375,512,256,512Zm0-448C149.969,64,64,149.969,64,256s85.969,192,192,192,192-85.969,192-192S362.031,64,256,64Zm0,320A128,128,0,1,1,384,256,128.006,128.006,0,0,1,256,384Z"
|
|
||||||
fill-rule="evenodd"
|
|
||||||
></path>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
|
||||||
{#if indexA === 0 && indexB === 0}
|
{#each items as item, indexB}
|
||||||
|
<div
|
||||||
|
class="flex flex-col items-start space-y-1 mb-6 border-b border-gray-800 pb-4"
|
||||||
|
>
|
||||||
|
<div class="flex flex-row items-center space-x-2">
|
||||||
|
<div class="relative">
|
||||||
|
<svg
|
||||||
|
fill={indexA === 0 && indexB === 0
|
||||||
|
? "#2E86DE"
|
||||||
|
: "#808080"}
|
||||||
|
class="w-5 h-5 relative z-10"
|
||||||
|
viewBox="-51.2 -51.2 614.40 614.40"
|
||||||
|
id="_78_Circle-Full"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
stroke={indexA === 0 && indexB === 0
|
||||||
|
? "#2E86DE"
|
||||||
|
: "#808080"}
|
||||||
|
stroke-width="0.00512"
|
||||||
|
>
|
||||||
|
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
|
||||||
|
<g
|
||||||
|
id="SVGRepo_tracerCarrier"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke="#CCCCCC"
|
||||||
|
stroke-width="24.576"
|
||||||
|
></g>
|
||||||
|
<g id="SVGRepo_iconCarrier">
|
||||||
|
<path
|
||||||
|
id="Path_111"
|
||||||
|
data-name="Path 111"
|
||||||
|
d="M256,512C114.625,512,0,397.375,0,256S114.625,0,256,0,512,114.625,512,256,397.375,512,256,512Zm0-448C149.969,64,64,149.969,64,256s85.969,192,192,192,192-85.969,192-192S362.031,64,256,64Zm0,320A128,128,0,1,1,384,256,128.006,128.006,0,0,1,256,384Z"
|
||||||
|
fill-rule="evenodd"
|
||||||
|
></path>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
|
||||||
|
{#if indexA === 0 && indexB === 0}
|
||||||
|
<span
|
||||||
|
class="absolute -inset-1 rounded-full animate-ping w-3 h-3 m-auto bg-blue-400/75"
|
||||||
|
></span>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div
|
||||||
|
class="text-sm flex flex-col items-start w-full mb-1"
|
||||||
|
>
|
||||||
<span
|
<span
|
||||||
class="absolute -inset-1 rounded-full animate-ping w-3 h-3 m-auto bg-blue-400/75"
|
class="text-white text-lg font-semibold inline-block"
|
||||||
></span>
|
>{item.title}</span
|
||||||
{/if}
|
>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="text-sm flex flex-col items-start w-full mb-1"
|
class="ml-7 {item?.sentiment === 'Bullish'
|
||||||
|
? 'bg-emerald-500 text-white'
|
||||||
|
: item?.sentiment === 'Bearish'
|
||||||
|
? 'bg-red-600 text-white'
|
||||||
|
: 'bg-white text-black'} py-1 rounded text-xs sm:text-sm w-fit px-2 font-medium"
|
||||||
>
|
>
|
||||||
<span
|
{item?.sentiment}
|
||||||
class="text-white text-lg font-semibold inline-block"
|
|
||||||
>{item.title}</span
|
|
||||||
>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div
|
<span class="text-[1rem] ml-7 pt-2">
|
||||||
class="ml-7 {item?.sentiment === 'Bullish'
|
{#if item.description.length > 150}
|
||||||
? 'bg-emerald-500 text-white'
|
|
||||||
: item?.sentiment === 'Bearish'
|
|
||||||
? 'bg-red-600 text-white'
|
|
||||||
: 'bg-white text-black'} py-1 rounded text-xs sm:text-sm w-fit px-2 font-medium"
|
|
||||||
>
|
|
||||||
{item?.sentiment}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<span class="text-[1rem] ml-7 pt-2">
|
|
||||||
{#if item.description.length > 150}
|
|
||||||
{expandedDescriptions[item.title]
|
|
||||||
? item.description
|
|
||||||
: truncateText(item.description)}
|
|
||||||
<button
|
|
||||||
on:click={() =>
|
|
||||||
(expandedDescriptions[item.title] =
|
|
||||||
!expandedDescriptions[item.title])}
|
|
||||||
class="text-blue-400 hover:text-blue-300 ml-1 font-medium"
|
|
||||||
>
|
|
||||||
{expandedDescriptions[item.title]
|
{expandedDescriptions[item.title]
|
||||||
? "Read less"
|
? item.description
|
||||||
: "Read more"}
|
: truncateText(item.description)}
|
||||||
</button>
|
<button
|
||||||
{:else}
|
on:click={() =>
|
||||||
{item.description}
|
(expandedDescriptions[item.title] =
|
||||||
{/if}
|
!expandedDescriptions[item.title])}
|
||||||
</span>
|
class="text-blue-400 hover:text-blue-300 ml-1 font-medium"
|
||||||
|
>
|
||||||
|
{expandedDescriptions[item.title]
|
||||||
|
? "Read less"
|
||||||
|
: "Read more"}
|
||||||
|
</button>
|
||||||
|
{:else}
|
||||||
|
{item.description}
|
||||||
|
{/if}
|
||||||
|
</span>
|
||||||
|
|
||||||
<a
|
<a
|
||||||
href={item?.link}
|
href={item?.link}
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
class="ml-7 inline-block text-sm sm:text-[1rem] text-white hover:underline"
|
class="ml-7 inline-block text-sm sm:text-[1rem] text-white hover:underline"
|
||||||
>
|
|
||||||
Source
|
|
||||||
<svg
|
|
||||||
class="w-4 h-4 sm:w-5 sm:h-5 -mt-0.5 inline-block"
|
|
||||||
fill="#fff"
|
|
||||||
viewBox="0 0 64 64"
|
|
||||||
version="1.1"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
||||||
xml:space="preserve"
|
|
||||||
xmlns:serif="http://www.serif.com/"
|
|
||||||
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"
|
|
||||||
><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g
|
|
||||||
id="SVGRepo_tracerCarrier"
|
|
||||||
stroke-linecap="round"
|
|
||||||
stroke-linejoin="round"
|
|
||||||
></g><g id="SVGRepo_iconCarrier">
|
|
||||||
<rect
|
|
||||||
id="Icons"
|
|
||||||
x="-896"
|
|
||||||
y="0"
|
|
||||||
width="1280"
|
|
||||||
height="800"
|
|
||||||
style="fill:none;"
|
|
||||||
></rect>
|
|
||||||
<g id="Icons1" serif:id="Icons">
|
|
||||||
<g id="Strike"> </g> <g id="H1"> </g>
|
|
||||||
<g id="H2"> </g> <g id="H3"> </g>
|
|
||||||
<g id="list-ul"> </g> <g id="hamburger-1"> </g>
|
|
||||||
<g id="hamburger-2"> </g> <g id="list-ol"> </g>
|
|
||||||
<g id="list-task"> </g> <g id="trash"> </g>
|
|
||||||
<g id="vertical-menu"> </g>
|
|
||||||
<g id="horizontal-menu"> </g>
|
|
||||||
<g id="sidebar-2"> </g> <g id="Pen"> </g>
|
|
||||||
<g id="Pen1" serif:id="Pen"> </g>
|
|
||||||
<g id="clock"> </g>
|
|
||||||
<g id="external-link">
|
|
||||||
<path
|
|
||||||
d="M36.026,20.058l-21.092,0c-1.65,0 -2.989,1.339 -2.989,2.989l0,25.964c0,1.65 1.339,2.989 2.989,2.989l26.024,0c1.65,0 2.989,-1.339 2.989,-2.989l0,-20.953l3.999,0l0,21.948c0,3.308 -2.686,5.994 -5.995,5.995l-28.01,0c-3.309,0 -5.995,-2.687 -5.995,-5.995l0,-27.954c0,-3.309 2.686,-5.995 5.995,-5.995l22.085,0l0,4.001Z"
|
|
||||||
></path>
|
|
||||||
<path
|
|
||||||
d="M55.925,25.32l-4.005,0l0,-10.481l-27.894,27.893l-2.832,-2.832l27.895,-27.895l-10.484,0l0,-4.005l17.318,0l0.002,0.001l0,17.319Z"
|
|
||||||
></path>
|
|
||||||
</g> <g id="hr"> </g> <g id="info"> </g>
|
|
||||||
<g id="warning"> </g> <g id="plus-circle"> </g>
|
|
||||||
<g id="minus-circle"> </g> <g id="vue"> </g>
|
|
||||||
<g id="cog"> </g> <g id="logo"> </g>
|
|
||||||
<g id="radio-check"> </g>
|
|
||||||
<g id="eye-slash"> </g> <g id="eye"> </g>
|
|
||||||
<g id="toggle-off"> </g> <g id="shredder"> </g>
|
|
||||||
<g
|
|
||||||
id="spinner--loading--dots-"
|
|
||||||
serif:id="spinner [loading, dots]"
|
|
||||||
>
|
|
||||||
</g> <g id="react"> </g>
|
|
||||||
<g id="check-selected"> </g>
|
|
||||||
<g id="turn-off"> </g> <g id="code-block"> </g>
|
|
||||||
<g id="user"> </g> <g id="coffee-bean"> </g>
|
|
||||||
<g id="coffee-beans">
|
|
||||||
<g id="coffee-bean1" serif:id="coffee-bean">
|
|
||||||
</g>
|
|
||||||
</g> <g id="coffee-bean-filled"> </g>
|
|
||||||
<g id="coffee-beans-filled">
|
|
||||||
<g id="coffee-bean2" serif:id="coffee-bean">
|
|
||||||
</g>
|
|
||||||
</g> <g id="clipboard"> </g>
|
|
||||||
<g id="clipboard-paste"> </g>
|
|
||||||
<g id="clipboard-copy"> </g>
|
|
||||||
<g id="Layer1"> </g>
|
|
||||||
</g>
|
|
||||||
</g></svg
|
|
||||||
>
|
>
|
||||||
</a>
|
Source
|
||||||
</div>
|
<svg
|
||||||
{/each}
|
class="w-4 h-4 sm:w-5 sm:h-5 -mt-0.5 inline-block"
|
||||||
</div>
|
fill="#fff"
|
||||||
{/each}
|
viewBox="0 0 64 64"
|
||||||
|
version="1.1"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xml:space="preserve"
|
||||||
|
xmlns:serif="http://www.serif.com/"
|
||||||
|
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"
|
||||||
|
><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g
|
||||||
|
id="SVGRepo_tracerCarrier"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
></g><g id="SVGRepo_iconCarrier">
|
||||||
|
<rect
|
||||||
|
id="Icons"
|
||||||
|
x="-896"
|
||||||
|
y="0"
|
||||||
|
width="1280"
|
||||||
|
height="800"
|
||||||
|
style="fill:none;"
|
||||||
|
></rect>
|
||||||
|
<g id="Icons1" serif:id="Icons">
|
||||||
|
<g id="Strike"> </g> <g id="H1"> </g>
|
||||||
|
<g id="H2"> </g> <g id="H3"> </g>
|
||||||
|
<g id="list-ul"> </g>
|
||||||
|
<g id="hamburger-1"> </g>
|
||||||
|
<g id="hamburger-2"> </g>
|
||||||
|
<g id="list-ol"> </g>
|
||||||
|
<g id="list-task"> </g> <g id="trash"> </g>
|
||||||
|
<g id="vertical-menu"> </g>
|
||||||
|
<g id="horizontal-menu"> </g>
|
||||||
|
<g id="sidebar-2"> </g> <g id="Pen"> </g>
|
||||||
|
<g id="Pen1" serif:id="Pen"> </g>
|
||||||
|
<g id="clock"> </g>
|
||||||
|
<g id="external-link">
|
||||||
|
<path
|
||||||
|
d="M36.026,20.058l-21.092,0c-1.65,0 -2.989,1.339 -2.989,2.989l0,25.964c0,1.65 1.339,2.989 2.989,2.989l26.024,0c1.65,0 2.989,-1.339 2.989,-2.989l0,-20.953l3.999,0l0,21.948c0,3.308 -2.686,5.994 -5.995,5.995l-28.01,0c-3.309,0 -5.995,-2.687 -5.995,-5.995l0,-27.954c0,-3.309 2.686,-5.995 5.995,-5.995l22.085,0l0,4.001Z"
|
||||||
|
></path>
|
||||||
|
<path
|
||||||
|
d="M55.925,25.32l-4.005,0l0,-10.481l-27.894,27.893l-2.832,-2.832l27.895,-27.895l-10.484,0l0,-4.005l17.318,0l0.002,0.001l0,17.319Z"
|
||||||
|
></path>
|
||||||
|
</g> <g id="hr"> </g> <g id="info"> </g>
|
||||||
|
<g id="warning"> </g>
|
||||||
|
<g id="plus-circle"> </g>
|
||||||
|
<g id="minus-circle"> </g> <g id="vue"> </g>
|
||||||
|
<g id="cog"> </g> <g id="logo"> </g>
|
||||||
|
<g id="radio-check"> </g>
|
||||||
|
<g id="eye-slash"> </g> <g id="eye"> </g>
|
||||||
|
<g id="toggle-off"> </g>
|
||||||
|
<g id="shredder"> </g>
|
||||||
|
<g
|
||||||
|
id="spinner--loading--dots-"
|
||||||
|
serif:id="spinner [loading, dots]"
|
||||||
|
>
|
||||||
|
</g> <g id="react"> </g>
|
||||||
|
<g id="check-selected"> </g>
|
||||||
|
<g id="turn-off"> </g>
|
||||||
|
<g id="code-block"> </g>
|
||||||
|
<g id="user"> </g> <g id="coffee-bean"> </g>
|
||||||
|
<g id="coffee-beans">
|
||||||
|
<g id="coffee-bean1" serif:id="coffee-bean">
|
||||||
|
</g>
|
||||||
|
</g> <g id="coffee-bean-filled"> </g>
|
||||||
|
<g id="coffee-beans-filled">
|
||||||
|
<g id="coffee-bean2" serif:id="coffee-bean">
|
||||||
|
</g>
|
||||||
|
</g> <g id="clipboard"> </g>
|
||||||
|
<g id="clipboard-paste"> </g>
|
||||||
|
<g id="clipboard-copy"> </g>
|
||||||
|
<g id="Layer1"> </g>
|
||||||
|
</g>
|
||||||
|
</g></svg
|
||||||
|
>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
{/each}
|
||||||
|
</div>
|
||||||
|
{/each}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
@ -702,8 +543,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<ScrollToTop />
|
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.app {
|
.app {
|
||||||
height: 500px;
|
height: 500px;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user