ui fixes
This commit is contained in:
parent
702535524a
commit
06ba70a82b
@ -102,14 +102,14 @@
|
|||||||
{#if data?.user}
|
{#if data?.user}
|
||||||
<Feedback {data} />
|
<Feedback {data} />
|
||||||
{/if}
|
{/if}
|
||||||
<!--
|
|
||||||
<div
|
<div
|
||||||
class="text-center mb-10 relative w-fit flex justify-center m-auto text-white"
|
class="text-center mb-10 relative w-fit flex justify-center m-auto text-white"
|
||||||
>
|
>
|
||||||
<div class="mb-4 flex justify-center -mt-3 lg:mb-8">
|
<div class="mb-4 flex justify-center -mt-3 lg:mb-8">
|
||||||
<a href="/stocks/NVDA/forecast/ai"
|
<a href="/stocks/AAPL/forecast/ai"
|
||||||
><div
|
><div
|
||||||
class="flex items-center justify-center sm:hover:text-white text-blue-400"
|
class="flex items-center justify-center sm:hover:text-muted dark:sm:hover:text-white text-blue-600 dark:text-blue-400"
|
||||||
>
|
>
|
||||||
<div class="text-lg sm:text-xl font-semibold">
|
<div class="text-lg sm:text-xl font-semibold">
|
||||||
Improved AI Score
|
Improved AI Score
|
||||||
@ -123,7 +123,6 @@
|
|||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
-->
|
|
||||||
|
|
||||||
<h1
|
<h1
|
||||||
class="hidden sm:block text-3xl lg:text-4xl text-muted dark:text-white font-bold text-center mb-10 relative w-fit flex justify-center m-auto"
|
class="hidden sm:block text-3xl lg:text-4xl text-muted dark:text-white font-bold text-center mb-10 relative w-fit flex justify-center m-auto"
|
||||||
|
|||||||
@ -9,6 +9,8 @@
|
|||||||
|
|
||||||
export let data;
|
export let data;
|
||||||
|
|
||||||
|
const isPro = ["Pro", "Plus"].includes(data?.user?.tier);
|
||||||
|
|
||||||
const formatDateToQuarter = (timestamp) => {
|
const formatDateToQuarter = (timestamp) => {
|
||||||
const date = new Date(timestamp);
|
const date = new Date(timestamp);
|
||||||
const year = date.getFullYear().toString().slice(-2); // Get last two digits of the year
|
const year = date.getFullYear().toString().slice(-2); // Get last two digits of the year
|
||||||
@ -518,12 +520,29 @@
|
|||||||
<span>Latest Forecast</span>
|
<span>Latest Forecast</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex items-baseline">
|
<div class="flex items-baseline">
|
||||||
<span class="text-xl font-bold"
|
<span class="text-xl font-bold">
|
||||||
>{[10, 9, 8, 7]?.includes(data?.getAIScore?.score)
|
{#if isPro}
|
||||||
|
{[10, 9, 8, 7]?.includes(data?.getAIScore?.score)
|
||||||
? "Bullish"
|
? "Bullish"
|
||||||
: [6, 5, 4]?.includes(data?.getAIScore?.score)
|
: [6, 5, 4]?.includes(data?.getAIScore?.score)
|
||||||
? "Hold"
|
? "Hold"
|
||||||
: "Bearish"}
|
: "Bearish"}
|
||||||
|
{:else}
|
||||||
|
<a
|
||||||
|
href="/pricing"
|
||||||
|
class="sm:hover:text-blue-500 dark:sm:hover:text-blue-400"
|
||||||
|
>Pro <svg
|
||||||
|
class="w-5 h-5 mb-1 inline-block"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
fill="currentColor"
|
||||||
|
d="M17 9V7c0-2.8-2.2-5-5-5S7 4.2 7 7v2c-1.7 0-3 1.3-3 3v7c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3v-7c0-1.7-1.3-3-3-3M9 7c0-1.7 1.3-3 3-3s3 1.3 3 3v2H9z"
|
||||||
|
/>
|
||||||
|
</svg></a
|
||||||
|
>
|
||||||
|
{/if}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -535,22 +554,67 @@
|
|||||||
<span>Avg Return</span>
|
<span>Avg Return</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex items-baseline">
|
<div class="flex items-baseline">
|
||||||
|
{#if isPro}
|
||||||
<span
|
<span
|
||||||
class="text-xl font-bold {avgReturn >= 0
|
class="text-xl font-bold {avgReturn >= 0
|
||||||
? "before:content-['+'] text-green-600 dark:text-[#00FC50]"
|
? "before:content-['+'] text-green-600 dark:text-[#00FC50]"
|
||||||
: 'text-red-600 dark:text-[#FF2F1F]'}"
|
: 'text-red-600 dark:text-[#FF2F1F]'}"
|
||||||
>{avgReturn?.toFixed(2)}%</span
|
>{avgReturn?.toFixed(2)}%</span
|
||||||
>
|
>
|
||||||
|
{:else}
|
||||||
|
<a
|
||||||
|
href="/pricing"
|
||||||
|
class="sm:hover:text-blue-500 dark:sm:hover:text-blue-400 text-xl font-bold"
|
||||||
|
>
|
||||||
|
Pro <svg
|
||||||
|
class="w-5 h-5 mb-1 inline-block"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
fill="currentColor"
|
||||||
|
d="M17 9V7c0-2.8-2.2-5-5-5S7 4.2 7 7v2c-1.7 0-3 1.3-3 3v7c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3v-7c0-1.7-1.3-3-3-3M9 7c0-1.7 1.3-3 3-3s3 1.3 3 3v2H9z"
|
||||||
|
/>
|
||||||
|
</svg></a
|
||||||
|
>
|
||||||
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<div class="grow">
|
<div class="grow">
|
||||||
|
<div class="relative">
|
||||||
|
<!-- Apply the blur class to the chart -->
|
||||||
<div
|
<div
|
||||||
class="chart mt-5 shadow-sm sm:mt-0 sm:border sm:border-gray-300 dark:border-gray-800 rounded"
|
class="{!isPro
|
||||||
|
? 'blur-[3px]'
|
||||||
|
: ''} mt-5 shadow-sm sm:mt-0 sm:border sm:border-gray-300 dark:border-gray-800 rounded"
|
||||||
use:highcharts={configScore}
|
use:highcharts={configScore}
|
||||||
></div>
|
></div>
|
||||||
|
<!-- Overlay with "Upgrade to Pro" -->
|
||||||
|
{#if !["Pro", "Plus"]?.includes(data?.user?.tier)}
|
||||||
|
<div
|
||||||
|
class="font-bold text-lg sm:text-xl absolute top-0 bottom-0 left-0 right-0 flex items-center justify-center text-muted dark:text-white"
|
||||||
|
>
|
||||||
|
<a
|
||||||
|
href="/pricing"
|
||||||
|
class="sm:hover:text-blue-600 dark:sm:hover:text-white dark:text-white flex flex-row items-center"
|
||||||
|
>
|
||||||
|
<span>Upgrade to Pro</span>
|
||||||
|
<svg
|
||||||
|
class="ml-1 w-5 h-5 sm:w-6 sm:h-6 inline-block"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
><path
|
||||||
|
fill="currentColor"
|
||||||
|
d="M17 9V7c0-2.8-2.2-5-5-5S7 4.2 7 7v2c-1.7 0-3 1.3-3 3v7c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3v-7c0-1.7-1.3-3-3-3M9 7c0-1.7 1.3-3 3-3s3 1.3 3 3v2H9z"
|
||||||
|
/></svg
|
||||||
|
>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="no-scrollbar mb-1 mt-2 overflow-x-auto px-1.5 text-center md:mb-0 md:px-0 lg:mt-5"
|
class="no-scrollbar mb-1 mt-2 overflow-x-auto px-1.5 text-center md:mb-0 md:px-0 lg:mt-5"
|
||||||
@ -558,56 +622,104 @@
|
|||||||
<table
|
<table
|
||||||
class="table table-sm table-compact w-full text-right text-tiny xs:text-sm"
|
class="table table-sm table-compact w-full text-right text-tiny xs:text-sm"
|
||||||
>
|
>
|
||||||
<thead
|
<thead>
|
||||||
><tr
|
<tr
|
||||||
class="border-b border-gray-300 dark:border-gray-600 font-normal text-sm sm:text-[1rem] whitespace-nowrap"
|
class="border-b border-gray-300 dark:border-gray-600 font-normal text-sm sm:text-[1rem] whitespace-nowrap"
|
||||||
><th
|
|
||||||
class="py-[3px] text-left font-semibold lg:py-0.5 text-muted dark:text-white"
|
|
||||||
>Date</th
|
|
||||||
>
|
>
|
||||||
|
<th
|
||||||
|
class="py-[3px] text-left font-semibold lg:py-0.5 text-muted dark:text-white"
|
||||||
|
>
|
||||||
|
Date
|
||||||
|
</th>
|
||||||
{#each tableDates as item}
|
{#each tableDates as item}
|
||||||
<th
|
<th
|
||||||
class="py-[3px] text-left font-semibold lg:py-0.5 text-muted dark:text-white"
|
class="py-[3px] text-left font-semibold lg:py-0.5 text-muted dark:text-white"
|
||||||
>{item}</th
|
|
||||||
>
|
>
|
||||||
|
{item}
|
||||||
|
</th>
|
||||||
{/each}
|
{/each}
|
||||||
</tr></thead
|
</tr>
|
||||||
>
|
</thead>
|
||||||
<tbody
|
<tbody>
|
||||||
><tr
|
<!-- Score Row -->
|
||||||
|
<tr
|
||||||
class="border-b border-gray-300 dark:border-gray-600 font-normal text-sm sm:text-[1rem] whitespace-nowrap"
|
class="border-b border-gray-300 dark:border-gray-600 font-normal text-sm sm:text-[1rem] whitespace-nowrap"
|
||||||
>
|
>
|
||||||
<td class="py-[3px] text-left lg:py-0.5 text-[1rem]"
|
<td class="py-[3px] text-left lg:py-0.5 text-[1rem]"
|
||||||
>Score</td
|
>Score</td
|
||||||
>
|
>
|
||||||
{#each tableScore as val}
|
{#each tableScore as val, index}
|
||||||
<td
|
<td
|
||||||
class="text-right whitespace-nowrap text-[1rem]"
|
class="text-right whitespace-nowrap text-[1rem]"
|
||||||
>
|
>
|
||||||
|
{#if index < 5 || isPro}
|
||||||
{val}
|
{val}
|
||||||
{[10, 9, 8, 7]?.includes(Number(val))
|
{[10, 9, 8, 7].includes(Number(val))
|
||||||
? "(Bullish)"
|
? "(Bullish)"
|
||||||
: [6, 5, 4]?.includes(Number(val))
|
: [6, 5, 4].includes(Number(val))
|
||||||
? "(Hold)"
|
? "(Hold)"
|
||||||
: "(Sell)"}
|
: "(Sell)"}
|
||||||
|
{:else}
|
||||||
|
<a
|
||||||
|
href="/pricing"
|
||||||
|
class="sm:hover:text-blue-500 dark:sm:hover:text-blue-400"
|
||||||
|
>
|
||||||
|
Pro
|
||||||
|
<svg
|
||||||
|
class="w-4 h-4 mb-1 inline-block"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
fill="currentColor"
|
||||||
|
d="M17 9V7c0-2.8-2.2-5-5-5S7 4.2 7 7v2c-1.7 0-3 1.3-3 3v7c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3v-7c0-1.7-1.3-3-3-3M9 7c0-1.7 1.3-3 3-3s3 1.3 3 3v2H9z"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
{/if}
|
||||||
</td>
|
</td>
|
||||||
{/each}
|
{/each}
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
<!-- QoQ Change Row -->
|
||||||
<tr
|
<tr
|
||||||
class="font-normal text-sm sm:text-[1rem] whitespace-nowrap"
|
class="font-normal text-sm sm:text-[1rem] whitespace-nowrap"
|
||||||
><td class="py-[3px] text-left lg:py-0.5 text-[1rem]"
|
>
|
||||||
|
<td class="py-[3px] text-left lg:py-0.5 text-[1rem]"
|
||||||
>QoQ Change</td
|
>QoQ Change</td
|
||||||
>
|
>
|
||||||
{#each tableQuarterChange as item}
|
{#each tableQuarterChange as item, index}
|
||||||
<td
|
<td class="text-[1rem]">
|
||||||
class="text-[1rem] {item?.change > 0
|
{#if index < 5 || isPro}
|
||||||
|
<span
|
||||||
|
class={item?.change > 0
|
||||||
? "before:content-['+'] text-green-600 dark:text-[#00FC50]"
|
? "before:content-['+'] text-green-600 dark:text-[#00FC50]"
|
||||||
: 'text-red-600 dark:text-[#FF2F1F]'}"
|
: "text-red-600 dark:text-[#FF2F1F]"}
|
||||||
>{item?.change}%</td
|
|
||||||
>
|
>
|
||||||
|
{item?.change}%
|
||||||
|
</span>
|
||||||
|
{:else}
|
||||||
|
<a
|
||||||
|
href="/pricing"
|
||||||
|
class="sm:hover:text-blue-500 dark:sm:hover:text-blue-400"
|
||||||
|
>
|
||||||
|
Pro
|
||||||
|
<svg
|
||||||
|
class="w-4 h-4 mb-1 inline-block"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
fill="currentColor"
|
||||||
|
d="M17 9V7c0-2.8-2.2-5-5-5S7 4.2 7 7v2c-1.7 0-3 1.3-3 3v7c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3v-7c0-1.7-1.3-3-3-3M9 7c0-1.7 1.3-3 3-3s3 1.3 3 3v2H9z"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
{/if}
|
||||||
|
</td>
|
||||||
{/each}
|
{/each}
|
||||||
</tr></tbody
|
</tr>
|
||||||
>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -634,16 +746,62 @@
|
|||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
<div class="w-full mb-6 mt-3">
|
<div class="w-full mb-6 mt-3">
|
||||||
|
{#if !["Pro", "Plus"]?.includes(data?.user?.tier)}
|
||||||
|
<Infobox
|
||||||
|
text={`Using our AI model trained on historical seasonal data, we generated a 12-month forecast for ${removeCompanyStrings($displayCompanyName)}. The model predicts a ... Unlock content with
|
||||||
|
<a
|
||||||
|
class="inline-block ml-0.5 text-blue-500 sm:hover:text-muted dark:text-blue-400 dark:sm:hover:text-white"
|
||||||
|
href="/pricing"
|
||||||
|
>Pro Subscription <svg
|
||||||
|
class="w-4 h-4 mb-1 inline-block"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
><path
|
||||||
|
fill="currentColor"
|
||||||
|
d="M17 9V7c0-2.8-2.2-5-5-5S7 4.2 7 7v2c-1.7 0-3 1.3-3 3v7c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3v-7c0-1.7-1.3-3-3-3M9 7c0-1.7 1.3-3 3-3s3 1.3 3 3v2H9z"
|
||||||
|
/></svg
|
||||||
|
></a
|
||||||
|
>`}
|
||||||
|
/>
|
||||||
|
{:else}
|
||||||
<Infobox
|
<Infobox
|
||||||
text={`Using our AI model trained on historical seasonal data, we generated a 12-month forecast for ${removeCompanyStrings($displayCompanyName)}. The model predicts a median target price of ${medianPriceTarget}, ranging from ${lowPriceTarget} to ${highPriceTarget}, indicating a ${medianChange > 0 ? "potential increase" : "potential decrease"} of ${medianChange}% from the current price of ${price}.`}
|
text={`Using our AI model trained on historical seasonal data, we generated a 12-month forecast for ${removeCompanyStrings($displayCompanyName)}. The model predicts a median target price of ${medianPriceTarget}, ranging from ${lowPriceTarget} to ${highPriceTarget}, indicating a ${medianChange > 0 ? "potential increase" : "potential decrease"} of ${medianChange}% from the current price of ${price}.`}
|
||||||
/>
|
/>
|
||||||
|
{/if}
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<div class="grow pt-5">
|
<div class="grow pt-5">
|
||||||
|
<div class="relative">
|
||||||
|
<!-- Apply the blur class to the chart -->
|
||||||
<div
|
<div
|
||||||
class="chart mt-5 sm:mt-0 shadow-sm sm:border sm:border-gray-300 dark:border-gray-800 rounded"
|
class="{!isPro
|
||||||
|
? 'blur-[3px]'
|
||||||
|
: ''} mt-5 shadow-sm sm:mt-0 sm:border sm:border-gray-300 dark:border-gray-800 rounded"
|
||||||
use:highcharts={config}
|
use:highcharts={config}
|
||||||
></div>
|
></div>
|
||||||
|
<!-- Overlay with "Upgrade to Pro" -->
|
||||||
|
{#if !["Pro", "Plus"]?.includes(data?.user?.tier)}
|
||||||
|
<div
|
||||||
|
class="font-bold text-lg sm:text-xl absolute top-0 bottom-0 left-0 right-0 flex items-center justify-center text-muted dark:text-white"
|
||||||
|
>
|
||||||
|
<a
|
||||||
|
href="/pricing"
|
||||||
|
class="sm:hover:text-blue-600 dark:sm:hover:text-white dark:text-white flex flex-row items-center"
|
||||||
|
>
|
||||||
|
<span>Upgrade to Pro</span>
|
||||||
|
<svg
|
||||||
|
class="ml-1 w-5 h-5 sm:w-6 sm:h-6 inline-block"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
><path
|
||||||
|
fill="currentColor"
|
||||||
|
d="M17 9V7c0-2.8-2.2-5-5-5S7 4.2 7 7v2c-1.7 0-3 1.3-3 3v7c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3v-7c0-1.7-1.3-3-3-3M9 7c0-1.7 1.3-3 3-3s3 1.3 3 3v2H9z"
|
||||||
|
/></svg
|
||||||
|
>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="hide-scroll mb-1 mt-2 overflow-x-auto px-1.5 text-center md:mb-0 md:px-0 lg:mt-5"
|
class="hide-scroll mb-1 mt-2 overflow-x-auto px-1.5 text-center md:mb-0 md:px-0 lg:mt-5"
|
||||||
@ -664,14 +822,151 @@
|
|||||||
<tbody
|
<tbody
|
||||||
><tr
|
><tr
|
||||||
class="border-b border-gray-300 dark:border-gray-600 font-normal text-sm sm:text-[1rem]"
|
class="border-b border-gray-300 dark:border-gray-600 font-normal text-sm sm:text-[1rem]"
|
||||||
><td class="py-[3px] text-left lg:py-0.5">Price</td>
|
>
|
||||||
|
<td class="py-[3px] text-left lg:py-0.5">Price</td>
|
||||||
|
{#if !["Pro", "Plus"]?.includes(data?.user?.tier)}
|
||||||
|
<td class="whitespace-nowrap">
|
||||||
|
<a
|
||||||
|
href="/pricing"
|
||||||
|
class="sm:hover:text-blue-500 dark:sm:hover:text-blue-400"
|
||||||
|
>Pro <svg
|
||||||
|
class="w-4 h-4 mb-1 inline-block"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
fill="currentColor"
|
||||||
|
d="M17 9V7c0-2.8-2.2-5-5-5S7 4.2 7 7v2c-1.7 0-3 1.3-3 3v7c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3v-7c0-1.7-1.3-3-3-3M9 7c0-1.7 1.3-3 3-3s3 1.3 3 3v2H9z"
|
||||||
|
/>
|
||||||
|
</svg></a
|
||||||
|
>
|
||||||
|
</td>
|
||||||
|
<td class="whitespace-nowrap">
|
||||||
|
<a
|
||||||
|
href="/pricing"
|
||||||
|
class="sm:hover:text-blue-500 dark:sm:hover:text-blue-400"
|
||||||
|
>Pro <svg
|
||||||
|
class="w-4 h-4 mb-1 inline-block"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
fill="currentColor"
|
||||||
|
d="M17 9V7c0-2.8-2.2-5-5-5S7 4.2 7 7v2c-1.7 0-3 1.3-3 3v7c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3v-7c0-1.7-1.3-3-3-3M9 7c0-1.7 1.3-3 3-3s3 1.3 3 3v2H9z"
|
||||||
|
/>
|
||||||
|
</svg></a
|
||||||
|
>
|
||||||
|
</td>
|
||||||
|
<td class="whitespace-nowrap">
|
||||||
|
<a
|
||||||
|
href="/pricing"
|
||||||
|
class="sm:hover:text-blue-500 dark:sm:hover:text-blue-400"
|
||||||
|
>Pro <svg
|
||||||
|
class="w-4 h-4 mb-1 inline-block"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
fill="currentColor"
|
||||||
|
d="M17 9V7c0-2.8-2.2-5-5-5S7 4.2 7 7v2c-1.7 0-3 1.3-3 3v7c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3v-7c0-1.7-1.3-3-3-3M9 7c0-1.7 1.3-3 3-3s3 1.3 3 3v2H9z"
|
||||||
|
/>
|
||||||
|
</svg></a
|
||||||
|
>
|
||||||
|
</td>
|
||||||
|
<td class="whitespace-nowrap">
|
||||||
|
<a
|
||||||
|
href="/pricing"
|
||||||
|
class="sm:hover:text-blue-500 dark:sm:hover:text-blue-400"
|
||||||
|
>Pro <svg
|
||||||
|
class="w-4 h-4 mb-1 inline-block"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
fill="currentColor"
|
||||||
|
d="M17 9V7c0-2.8-2.2-5-5-5S7 4.2 7 7v2c-1.7 0-3 1.3-3 3v7c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3v-7c0-1.7-1.3-3-3-3M9 7c0-1.7 1.3-3 3-3s3 1.3 3 3v2H9z"
|
||||||
|
/>
|
||||||
|
</svg></a
|
||||||
|
>
|
||||||
|
</td>
|
||||||
|
{:else}
|
||||||
<td>${lowPriceTarget}</td>
|
<td>${lowPriceTarget}</td>
|
||||||
<td>${avgPriceTarget}</td>
|
<td>${avgPriceTarget}</td>
|
||||||
<td>${medianPriceTarget}</td>
|
<td>${medianPriceTarget}</td>
|
||||||
<td>${highPriceTarget}</td></tr
|
<td>${highPriceTarget}</td>
|
||||||
|
{/if}
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr class="text-sm sm:text-[1rem]">
|
||||||
|
<td class="py-[3px] text-left lg:py-0.5">Change</td>
|
||||||
|
{#if !["Pro", "Plus"]?.includes(data?.user?.tier)}
|
||||||
|
<td class="whitespace-nowrap">
|
||||||
|
<a
|
||||||
|
href="/pricing"
|
||||||
|
class="sm:hover:text-blue-500 dark:sm:hover:text-blue-400"
|
||||||
>
|
>
|
||||||
<tr class="text-sm sm:text-[1rem]"
|
Pro
|
||||||
><td class="py-[3px] text-left lg:py-0.5">Change</td>
|
<svg
|
||||||
|
class="w-4 h-4 mb-1 inline-block"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
fill="currentColor"
|
||||||
|
d="M17 9V7c0-2.8-2.2-5-5-5S7 4.2 7 7v2c-1.7 0-3 1.3-3 3v7c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3v-7c0-1.7-1.3-3-3-3M9 7c0-1.7 1.3-3 3-3s3 1.3 3 3v2H9z"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
<td class="whitespace-nowrap"
|
||||||
|
><a
|
||||||
|
href="/pricing"
|
||||||
|
class="sm:hover:text-blue-500 dark:sm:hover:text-blue-400"
|
||||||
|
>Pro <svg
|
||||||
|
class="w-4 h-4 mb-1 inline-block"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
fill="currentColor"
|
||||||
|
d="M17 9V7c0-2.8-2.2-5-5-5S7 4.2 7 7v2c-1.7 0-3 1.3-3 3v7c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3v-7c0-1.7-1.3-3-3-3M9 7c0-1.7 1.3-3 3-3s3 1.3 3 3v2H9z"
|
||||||
|
/>
|
||||||
|
</svg></a
|
||||||
|
></td
|
||||||
|
>
|
||||||
|
<td class="whitespace-nowrap"
|
||||||
|
><a
|
||||||
|
href="/pricing"
|
||||||
|
class="sm:hover:text-blue-500 dark:sm:hover:text-blue-400"
|
||||||
|
>Pro <svg
|
||||||
|
class="w-4 h-4 mb-1 inline-block"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
fill="currentColor"
|
||||||
|
d="M17 9V7c0-2.8-2.2-5-5-5S7 4.2 7 7v2c-1.7 0-3 1.3-3 3v7c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3v-7c0-1.7-1.3-3-3-3M9 7c0-1.7 1.3-3 3-3s3 1.3 3 3v2H9z"
|
||||||
|
/>
|
||||||
|
</svg></a
|
||||||
|
></td
|
||||||
|
>
|
||||||
|
<td class="whitespace-nowrap"
|
||||||
|
><a
|
||||||
|
href="/pricing"
|
||||||
|
class="sm:hover:text-blue-500 dark:sm:hover:text-blue-400"
|
||||||
|
>Pro <svg
|
||||||
|
class="w-4 h-4 mb-1 inline-block"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
fill="currentColor"
|
||||||
|
d="M17 9V7c0-2.8-2.2-5-5-5S7 4.2 7 7v2c-1.7 0-3 1.3-3 3v7c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3v-7c0-1.7-1.3-3-3-3M9 7c0-1.7 1.3-3 3-3s3 1.3 3 3v2H9z"
|
||||||
|
/>
|
||||||
|
</svg></a
|
||||||
|
></td
|
||||||
|
>
|
||||||
|
{:else}
|
||||||
<td
|
<td
|
||||||
class={lowChange > 0
|
class={lowChange > 0
|
||||||
? "before:content-['+'] text-green-600 dark:text-[#00FC50]"
|
? "before:content-['+'] text-green-600 dark:text-[#00FC50]"
|
||||||
@ -695,9 +990,10 @@
|
|||||||
? "before:content-['+'] text-green-600 dark:text-[#00FC50]"
|
? "before:content-['+'] text-green-600 dark:text-[#00FC50]"
|
||||||
: "text-red-600 dark:text-[#FF2F1F]"}
|
: "text-red-600 dark:text-[#FF2F1F]"}
|
||||||
>{highChange}%</td
|
>{highChange}%</td
|
||||||
></tr
|
|
||||||
></tbody
|
|
||||||
>
|
>
|
||||||
|
{/if}
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user