add dividend kings && aristocrats
This commit is contained in:
parent
9cbcf2ad94
commit
a99f830435
@ -149,6 +149,14 @@ let navigation = [
|
||||
title: 'Magnificent Seven Stocks',
|
||||
link: '/list/magnificent-seven'
|
||||
},
|
||||
{
|
||||
title: 'Dividend Kings',
|
||||
link: '/list/dividend-kings'
|
||||
},
|
||||
{
|
||||
title: 'Dividend Aristocrats',
|
||||
link: '/list/dividend-aristocrats'
|
||||
},
|
||||
|
||||
];
|
||||
|
||||
@ -173,7 +181,6 @@ const combinedNavigation = navigation?.concat(updatedNavigation);
|
||||
<!-- Other meta tags -->
|
||||
<meta property="og:title" content="Stock Lists · stocknear"/>
|
||||
<meta property="og:description" content="Lists of stocks that share common characteristics. See companies ranked by market cap, employee count, sales or others.">
|
||||
<meta property="og:image" content="https://stocknear-pocketbase.s3.amazonaws.com/logo/meta_logo.jpg"/>
|
||||
<meta property="og:type" content="website"/>
|
||||
<!-- Add more Open Graph meta tags as needed -->
|
||||
|
||||
@ -181,7 +188,6 @@ const combinedNavigation = navigation?.concat(updatedNavigation);
|
||||
<meta name="twitter:card" content="summary_large_image"/>
|
||||
<meta name="twitter:title" content="Stock Lists · stocknear"/>
|
||||
<meta name="twitter:description" content="Lists of stocks that share common characteristics. See companies ranked by market cap, employee count, sales or others.">
|
||||
<meta name="twitter:image" content="https://stocknear-pocketbase.s3.amazonaws.com/logo/meta_logo.jpg"/>
|
||||
<!-- Add more Twitter meta tags as needed -->
|
||||
</svelte:head>
|
||||
|
||||
|
||||
@ -378,6 +378,16 @@
|
||||
Magnificent Seven
|
||||
</a>
|
||||
</li>
|
||||
<li class="mb-2 cursor-pointer">
|
||||
<a href="/list/dividend-kings" class="hover:text-white text-blue-400 text-lg">
|
||||
Dividend Kings
|
||||
</a>
|
||||
</li>
|
||||
<li class="mb-2 cursor-pointer">
|
||||
<a href="/list/dividend-aristocrats" class="hover:text-white text-blue-400 text-lg">
|
||||
Dividend Aristocrats
|
||||
</a>
|
||||
</li>
|
||||
<li class="mb-2 cursor-pointer sm:hidden">
|
||||
<a href="/list/delisted-stocks" class="hover:text-white text-blue-400 text-lg">
|
||||
Delisted Companies
|
||||
|
||||
132
src/routes/list/dividend-aristocrats/+page.svelte
Normal file
132
src/routes/list/dividend-aristocrats/+page.svelte
Normal file
@ -0,0 +1,132 @@
|
||||
<script lang='ts'>
|
||||
import { goto } from '$app/navigation';
|
||||
import { screenWidth } from '$lib/store';
|
||||
import InfiniteLoading from '$lib/components/InfiniteLoading.svelte';
|
||||
|
||||
export let data;
|
||||
let rawData = data?.getDividendAristocrats;
|
||||
let displayList = rawData?.slice(0,50);
|
||||
|
||||
|
||||
async function infiniteHandler({ detail: { loaded, complete } })
|
||||
{
|
||||
|
||||
if (displayList?.length === rawData?.length) {
|
||||
complete();
|
||||
}
|
||||
else {
|
||||
const nextIndex = displayList?.length;
|
||||
const newElements= rawData?.slice(nextIndex, nextIndex + 5);
|
||||
displayList = [...displayList, ...newElements];
|
||||
loaded();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
$: charNumber = $screenWidth < 640 ? 15 : 40;
|
||||
|
||||
</script>
|
||||
|
||||
<section class="w-full max-w-4xl overflow-hidden m-auto">
|
||||
|
||||
|
||||
<div class="w-full max-w-4xl sm:flex sm:flex-row sm:items-center m-auto text-gray-100 bg-[#27272A] sm:rounded-lg h-auto p-5 mb-4">
|
||||
<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="#a474f6" 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>
|
||||
|
||||
Dividend Aristocrats are companies in the S&P500 index that have been raising their dividends every year for 25 or more years. This is a list of all the dividend aristocrats.
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Page wrapper -->
|
||||
<div class="flex justify-center w-full max-w-5xl m-auto h-full overflow-hidden">
|
||||
|
||||
|
||||
|
||||
<!-- Content area -->
|
||||
<div class="relative flex flex-col flex-1 overflow-x-scroll">
|
||||
|
||||
|
||||
|
||||
<table class="table table-sm sm:table-md table-compact rounded-none sm:rounded-md w-full border-bg-[#09090B] m-auto mt-4 ">
|
||||
<thead>
|
||||
<tr class="border border-slate-800">
|
||||
<th class="text-slate-200 sm:font-bold text-[0.95rem]">No.</th>
|
||||
<th class="text-slate-200 hidden sm:table-cell sm:font-bold text-[0.95rem]">Symbol</th>
|
||||
<th class="text-slate-200 sm:font-bold text-[0.95rem]">Company</th>
|
||||
<th class="text-slate-200 sm:font-bold text-end text-[0.95rem]">Stock Price</th>
|
||||
<th class="text-slate-200 sm:font-bold text-center text-[0.95rem]">% Change</th>
|
||||
<th class="text-slate-200 sm:font-bold text-center text-[0.95rem]">Div. Yield</th>
|
||||
<!--<th class="text-slate-200 sm:font-bold text-center text-[0.95rem]">Sector</th>-->
|
||||
<th class="text-slate-200 sm:font-bold text-[0.95rem] text-end">Years</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{#each displayList as item,index}
|
||||
<!-- row -->
|
||||
<tr on:click={() => goto("/stocks/"+item?.symbol)} class="sm:hover:bg-[#245073] sm:hover:bg-opacity-[0.2] odd:bg-[#27272A] border-b-[#09090B] shake-ticker cursor-pointer">
|
||||
|
||||
<td class="text-white font-semibold sm:font-normal text-center text-sm sm:text-[1rem]border-b-[#09090B]">
|
||||
{index+1}
|
||||
</td>
|
||||
|
||||
<td class="hidden sm:table-cell text-blue-400 font-normal text-[1rem] border-b-[#09090B]">
|
||||
{item?.symbol}
|
||||
</td>
|
||||
|
||||
|
||||
<td class="text-gray-200 border-b-[#09090B] whitespace-nowrap">
|
||||
<span class="hidden sm:inline-block text-white font-semibold sm:font-normal text-sm sm:text-[1rem]">{item?.name?.length > charNumber ? item?.name?.slice(0,charNumber) + "..." : item?.name}</span>
|
||||
<div class="sm:hidden flex flex-row">
|
||||
<div class="flex flex-col">
|
||||
<span class="text-blue-400 font-medium">{item?.symbol}</span>
|
||||
<span class="text-gray-200 font-medium">{item?.name?.length > charNumber ? item?.name?.slice(0,charNumber) + "..." : item?.name}</span>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
|
||||
<td class="text-white font-semibold sm:font-normal text-center text-sm sm:text-[1rem] border-b-[#09090B]">
|
||||
{item?.price}
|
||||
</td>
|
||||
|
||||
<td class="text-white font-semibold sm:font-normal text-center text-sm sm:text-[1rem] border-b-[#09090B]">
|
||||
{#if item?.changesPercentage >=0}
|
||||
<span class="text-[#10DB06]">+{item.changesPercentage?.toFixed(2)}%</span>
|
||||
{:else}
|
||||
<span class="text-[#FF2F1F]">{item.changesPercentage?.toFixed(2)}% </span>
|
||||
{/if}
|
||||
</td>
|
||||
|
||||
<td class="text-white font-semibold sm:font-normal text-center text-sm sm:text-[1rem] border-b-[#09090B]">
|
||||
{item?.dividiendYield}%
|
||||
</td>
|
||||
|
||||
<!--
|
||||
<td class="text-white font-semibold sm:font-normal text-center text-sm sm:text-[1rem] border-b-[#09090B]">
|
||||
{item?.sector}
|
||||
</td>
|
||||
-->
|
||||
|
||||
<td class="text-white font-semibold sm:font-normal text-end text-sm sm:text-[1rem] border-b-[#09090B]">
|
||||
{item?.years}
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
|
||||
|
||||
{/each}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
<InfiniteLoading on:infinite={infiniteHandler} />
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
37
src/routes/list/dividend-aristocrats/+page.ts
Normal file
37
src/routes/list/dividend-aristocrats/+page.ts
Normal file
@ -0,0 +1,37 @@
|
||||
import { getCache, setCache } from '$lib/store';
|
||||
|
||||
|
||||
|
||||
export const load = async ({parent}) => {
|
||||
const getDividendAristocrats = async () => {
|
||||
|
||||
// Get cached data for the specific tickerID
|
||||
const cachedData = getCache('', 'getDividendAristocrats');
|
||||
if (cachedData) {
|
||||
return cachedData;
|
||||
} else {
|
||||
|
||||
const { apiKey, apiURL} = await parent();
|
||||
|
||||
const response = await fetch(apiURL + '/dividend-aristocrats', {
|
||||
method: 'GET',
|
||||
headers: {
|
||||
"Content-Type": "application/json", "X-API-KEY": apiKey
|
||||
},
|
||||
});
|
||||
|
||||
|
||||
const output = await response.json();
|
||||
|
||||
// Cache the data for this specific tickerID with a specific name 'getDividendAristocrats'
|
||||
setCache('', output, 'getDividendAristocrats');
|
||||
|
||||
return output;
|
||||
}
|
||||
};
|
||||
|
||||
// Make sure to return a promise
|
||||
return {
|
||||
getDividendAristocrats: await getDividendAristocrats()
|
||||
};
|
||||
};
|
||||
132
src/routes/list/dividend-kings/+page.svelte
Normal file
132
src/routes/list/dividend-kings/+page.svelte
Normal file
@ -0,0 +1,132 @@
|
||||
<script lang='ts'>
|
||||
import { goto } from '$app/navigation';
|
||||
import { screenWidth } from '$lib/store';
|
||||
import InfiniteLoading from '$lib/components/InfiniteLoading.svelte';
|
||||
|
||||
export let data;
|
||||
let rawData = data?.getDividendKings;
|
||||
let displayList = rawData?.slice(0,50);
|
||||
|
||||
|
||||
async function infiniteHandler({ detail: { loaded, complete } })
|
||||
{
|
||||
|
||||
if (displayList?.length === rawData?.length) {
|
||||
complete();
|
||||
}
|
||||
else {
|
||||
const nextIndex = displayList?.length;
|
||||
const newElements= rawData?.slice(nextIndex, nextIndex + 5);
|
||||
displayList = [...displayList, ...newElements];
|
||||
loaded();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
$: charNumber = $screenWidth < 640 ? 15 : 40;
|
||||
|
||||
</script>
|
||||
|
||||
<section class="w-full max-w-4xl overflow-hidden m-auto">
|
||||
|
||||
|
||||
<div class="w-full max-w-4xl sm:flex sm:flex-row sm:items-center m-auto text-gray-100 bg-[#27272A] sm:rounded-lg h-auto p-5 mb-4">
|
||||
<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="#a474f6" 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>
|
||||
|
||||
Dividend Kings are companies that have been raising their dividend payments every year for 50 or more years. This is a list of all the dividend kings on the US stock market.
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Page wrapper -->
|
||||
<div class="flex justify-center w-full max-w-5xl m-auto h-full overflow-hidden">
|
||||
|
||||
|
||||
|
||||
<!-- Content area -->
|
||||
<div class="relative flex flex-col flex-1 overflow-x-scroll">
|
||||
|
||||
|
||||
|
||||
<table class="table table-sm sm:table-md table-compact rounded-none sm:rounded-md w-full border-bg-[#09090B] m-auto mt-4 ">
|
||||
<thead>
|
||||
<tr class="border border-slate-800">
|
||||
<th class="text-slate-200 sm:font-bold text-[0.95rem]">No.</th>
|
||||
<th class="text-slate-200 hidden sm:table-cell sm:font-bold text-[0.95rem]">Symbol</th>
|
||||
<th class="text-slate-200 sm:font-bold text-[0.95rem]">Company</th>
|
||||
<th class="text-slate-200 sm:font-bold text-end text-[0.95rem]">Stock Price</th>
|
||||
<th class="text-slate-200 sm:font-bold text-center text-[0.95rem]">% Change</th>
|
||||
<th class="text-slate-200 sm:font-bold text-center text-[0.95rem]">Div. Yield</th>
|
||||
<!--<th class="text-slate-200 sm:font-bold text-center text-[0.95rem]">Sector</th>-->
|
||||
<th class="text-slate-200 sm:font-bold text-[0.95rem] text-end">Years</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{#each displayList as item,index}
|
||||
<!-- row -->
|
||||
<tr on:click={() => goto("/stocks/"+item?.symbol)} class="sm:hover:bg-[#245073] sm:hover:bg-opacity-[0.2] odd:bg-[#27272A] border-b-[#09090B] shake-ticker cursor-pointer">
|
||||
|
||||
<td class="text-white font-semibold sm:font-normal text-center text-sm sm:text-[1rem]border-b-[#09090B]">
|
||||
{index+1}
|
||||
</td>
|
||||
|
||||
<td class="hidden sm:table-cell text-blue-400 font-normal text-[1rem] border-b-[#09090B]">
|
||||
{item?.symbol}
|
||||
</td>
|
||||
|
||||
|
||||
<td class="text-gray-200 border-b-[#09090B] whitespace-nowrap">
|
||||
<span class="hidden sm:inline-block text-white font-semibold sm:font-normal text-sm sm:text-[1rem]">{item?.name?.length > charNumber ? item?.name?.slice(0,charNumber) + "..." : item?.name}</span>
|
||||
<div class="sm:hidden flex flex-row">
|
||||
<div class="flex flex-col">
|
||||
<span class="text-blue-400 font-medium">{item?.symbol}</span>
|
||||
<span class="text-gray-200 font-medium">{item?.name?.length > charNumber ? item?.name?.slice(0,charNumber) + "..." : item?.name}</span>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
|
||||
<td class="text-white font-semibold sm:font-normal text-center text-sm sm:text-[1rem] border-b-[#09090B]">
|
||||
{item?.price}
|
||||
</td>
|
||||
|
||||
<td class="text-white font-semibold sm:font-normal text-center text-sm sm:text-[1rem] border-b-[#09090B]">
|
||||
{#if item?.changesPercentage >=0}
|
||||
<span class="text-[#10DB06]">+{item.changesPercentage?.toFixed(2)}%</span>
|
||||
{:else}
|
||||
<span class="text-[#FF2F1F]">{item.changesPercentage?.toFixed(2)}% </span>
|
||||
{/if}
|
||||
</td>
|
||||
|
||||
<td class="text-white font-semibold sm:font-normal text-center text-sm sm:text-[1rem] border-b-[#09090B]">
|
||||
{item?.dividiendYield}%
|
||||
</td>
|
||||
|
||||
<!--
|
||||
<td class="text-white font-semibold sm:font-normal text-center text-sm sm:text-[1rem] border-b-[#09090B]">
|
||||
{item?.sector}
|
||||
</td>
|
||||
-->
|
||||
|
||||
<td class="text-white font-semibold sm:font-normal text-end text-sm sm:text-[1rem] border-b-[#09090B]">
|
||||
{item?.years}
|
||||
</td>
|
||||
|
||||
|
||||
|
||||
|
||||
</tr>
|
||||
|
||||
|
||||
{/each}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
<InfiniteLoading on:infinite={infiniteHandler} />
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
37
src/routes/list/dividend-kings/+page.ts
Normal file
37
src/routes/list/dividend-kings/+page.ts
Normal file
@ -0,0 +1,37 @@
|
||||
import { getCache, setCache } from '$lib/store';
|
||||
|
||||
|
||||
|
||||
export const load = async ({parent}) => {
|
||||
const getDividendKings = async () => {
|
||||
|
||||
// Get cached data for the specific tickerID
|
||||
const cachedData = getCache('', 'getDividendKings');
|
||||
if (cachedData) {
|
||||
return cachedData;
|
||||
} else {
|
||||
|
||||
const { apiKey, apiURL} = await parent();
|
||||
|
||||
const response = await fetch(apiURL + '/dividend-kings', {
|
||||
method: 'GET',
|
||||
headers: {
|
||||
"Content-Type": "application/json", "X-API-KEY": apiKey
|
||||
},
|
||||
});
|
||||
|
||||
|
||||
const output = await response.json();
|
||||
|
||||
// Cache the data for this specific tickerID with a specific name 'getDividendKings'
|
||||
setCache('', output, 'getDividendKings');
|
||||
|
||||
return output;
|
||||
}
|
||||
};
|
||||
|
||||
// Make sure to return a promise
|
||||
return {
|
||||
getDividendKings: await getDividendKings()
|
||||
};
|
||||
};
|
||||
Loading…
x
Reference in New Issue
Block a user