269 lines
9.3 KiB
Svelte
269 lines
9.3 KiB
Svelte
|
|
<script lang ='ts'>
|
|
import { enterpriseComponent, displayCompanyName, stockTicker, screenWidth, getCache, setCache} from '$lib/store';
|
|
import InfoModal from '$lib/components/InfoModal.svelte';
|
|
import { Chart } from 'svelte-echarts';
|
|
import { init, use } from 'echarts/core'
|
|
import { BarChart } from 'echarts/charts'
|
|
import { GridComponent, TooltipComponent } from 'echarts/components'
|
|
import { CanvasRenderer } from 'echarts/renderers'
|
|
|
|
export let data;
|
|
|
|
// now with tree-shaking
|
|
use([BarChart, GridComponent, TooltipComponent, CanvasRenderer])
|
|
|
|
let isLoaded = false;
|
|
|
|
let rawData = [];
|
|
let optionsData;
|
|
|
|
|
|
|
|
function getPlotOptions() {
|
|
let dates = [];
|
|
let enterpriseValue = [];
|
|
let marketCapitalization = [];
|
|
let addTotalDebt = [];
|
|
let cashEquivalent = [];
|
|
// Iterate over the data and extract required information
|
|
rawData?.forEach(item => {
|
|
// Extract year and convert it to fiscal year format
|
|
const fiscalYear = item?.date;
|
|
dates?.push(fiscalYear);
|
|
|
|
// Extract totalValue
|
|
enterpriseValue?.push(item?.enterpriseValue);
|
|
marketCapitalization?.push(item?.marketCapitalization);
|
|
addTotalDebt?.push(item?.addTotalDebt);
|
|
cashEquivalent?.push(item?.minusCashAndCashEquivalents)
|
|
|
|
});
|
|
|
|
|
|
|
|
const option = {
|
|
silent: true,
|
|
animation: false,
|
|
tooltip: {
|
|
trigger: 'axis',
|
|
hideDelay: 100, // Set the delay in milliseconds
|
|
},
|
|
grid: {
|
|
left: $screenWidth < 640 ? '0%' : '2%',
|
|
right: $screenWidth < 640 ? '2%' : '2%',
|
|
bottom: $screenWidth < 640 ? '0%' : '2%',
|
|
top: '5%',
|
|
containLabel: true
|
|
},
|
|
xAxis: {
|
|
data: dates,
|
|
type: 'category',
|
|
axisLabel: {
|
|
color: '#fff',
|
|
}
|
|
},
|
|
yAxis: {
|
|
splitLine: {
|
|
show: false, // Disable x-axis grid lines
|
|
},
|
|
axisLabel: {
|
|
show: false // Hide y-axis labels
|
|
},
|
|
},
|
|
series: [
|
|
{
|
|
name: 'Cash Equiv.',
|
|
data: cashEquivalent,
|
|
type: 'bar',
|
|
itemStyle: {
|
|
color: '#fff' // Change bar color to white
|
|
}
|
|
},
|
|
{
|
|
name: 'Debt',
|
|
data: addTotalDebt,
|
|
type: 'bar',
|
|
itemStyle: {
|
|
color: '#3B82F6' // Change bar color to white
|
|
}
|
|
},
|
|
{
|
|
name: 'Market Cap',
|
|
data: marketCapitalization,
|
|
type: 'bar',
|
|
itemStyle: {
|
|
color: '#E11D48' // Change bar color to white
|
|
}
|
|
},
|
|
{
|
|
name: 'Enterprise Value',
|
|
data: enterpriseValue,
|
|
type: 'bar',
|
|
itemStyle: {
|
|
color: '#22C55E' // Change bar color to white
|
|
}
|
|
},
|
|
]
|
|
};
|
|
|
|
|
|
return option;
|
|
}
|
|
|
|
const getEnterPriseValues = async (ticker) => {
|
|
// Get cached data for the specific tickerID
|
|
const cachedData = getCache(ticker, 'getEnterPriseValues');
|
|
if (cachedData) {
|
|
rawData = cachedData;
|
|
} else {
|
|
|
|
const postData = {'ticker': ticker, path: 'enterprise-values'};
|
|
// make the POST request to the endpoint
|
|
const response = await fetch('/api/ticker-data', {
|
|
method: 'POST',
|
|
headers: {
|
|
"Content-Type": "application/json"
|
|
},
|
|
body: JSON.stringify(postData)
|
|
});
|
|
|
|
rawData = await response.json();
|
|
|
|
// Cache the data for this specific tickerID with a specific name 'getEnterPriseValues'
|
|
setCache(ticker, rawData, 'getEnterPriseValues');
|
|
}
|
|
|
|
if(rawData?.length !== 0) {
|
|
$enterpriseComponent = true;
|
|
} else {
|
|
$enterpriseComponent = false;
|
|
}
|
|
};
|
|
|
|
|
|
$: {
|
|
if($stockTicker && typeof window !== 'undefined') {
|
|
isLoaded=false;
|
|
const asyncFunctions = [
|
|
getEnterPriseValues($stockTicker)
|
|
];
|
|
Promise.all(asyncFunctions)
|
|
.then((results) => {
|
|
optionsData = getPlotOptions()
|
|
})
|
|
.catch((error) => {
|
|
console.error('An error occurred:', error);
|
|
});
|
|
isLoaded = true;
|
|
|
|
}
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<section class="overflow-hidden text-white h-full pb-8 sm:pb-2">
|
|
<main class="overflow-hidden ">
|
|
|
|
<div class="flex flex-row items-center">
|
|
<label for="enterpriseValueInfo" class="mr-1 cursor-pointer flex flex-row items-center text-white text-xl sm:text-3xl font-bold">
|
|
Enterprise Value
|
|
</label>
|
|
<InfoModal
|
|
title={"Enterprise Value"}
|
|
content={"Enterprise value (EV) is a comprehensive measure of a company's total value in the stock market, considering market capitalization, debt, cash, and minority interests. It helps in M&A analysis, comparative analysis, valuation metrics, and capital structure assessment, aiding investors, analysts, and companies in financial decision-making."}
|
|
id={"enterpriseValueInfo"}
|
|
/>
|
|
</div>
|
|
|
|
{#if isLoaded}
|
|
{#if rawData?.length !== 0}
|
|
<div class="mt-2 pb-4">
|
|
|
|
<div class="w-full flex flex-col items-start">
|
|
<div class="text-white text-[1rem] mt-1 sm:mt-3 mb-1 w-full">
|
|
{$displayCompanyName}'s' enterprise value provides a comprehensive snapshot of its total worth, crucial for assessing its financial health and making informed investment decisions.
|
|
</div>
|
|
</div>
|
|
|
|
<a href="{'/stocks/'+$stockTicker+'/stats/income'}" class="text-blue-400 hover:text-white flex justify-end mt-3 text-sm sm:text-[1rem]">
|
|
Full report
|
|
</a>
|
|
|
|
<div class="app w-full h-[300px] mt-5">
|
|
<Chart {init} options={optionsData} class="chart" />
|
|
</div>
|
|
|
|
<div class="flex flex-row items-center justify-between mx-auto mt-5 w-full sm:w-11/12">
|
|
<div class="mt-3.5 sm:mt-0 flex flex-col sm:flex-row items-center ml-3 sm:ml-0 w-1/2 justify-center">
|
|
<div class="h-full transform -translate-x-1/2 " aria-hidden="true"></div>
|
|
<div class="w-3 h-3 bg-[#22C55E] border-4 box-content border-[#27272A] rounded-full transform sm:-translate-x-1/2" aria-hidden="true"></div>
|
|
<span class="mt-2 sm:mt-0 text-white text-center sm:text-start text-xs sm:text-md inline-block">
|
|
Enterprise Value
|
|
</span>
|
|
</div>
|
|
<div class="flex flex-col sm:flex-row items-center ml-3 sm:ml-0 w-1/2 justify-center">
|
|
<div class="h-full transform -translate-x-1/2 " aria-hidden="true"></div>
|
|
<div class="w-3 h-3 bg-[#E11D48] border-4 box-content border-[#27272A] rounded-full transform sm:-translate-x-1/2" aria-hidden="true"></div>
|
|
<span class="mt-2 sm:mt-0 text-white text-xs sm:text-md sm:font-medium inline-block">
|
|
Mkt Cap
|
|
</span>
|
|
</div>
|
|
<div class="flex flex-col sm:flex-row items-center ml-3 sm:ml-0 w-1/2 justify-center">
|
|
<div class="h-full transform -translate-x-1/2 " aria-hidden="true"></div>
|
|
<div class="w-3 h-3 bg-[#3B82F6] border-4 box-content border-[#27272A] rounded-full transform sm:-translate-x-1/2" aria-hidden="true"></div>
|
|
<span class="mt-2 sm:mt-0 text-white text-xs sm:text-md inline-block">
|
|
Debt
|
|
</span>
|
|
</div>
|
|
<div class="mt-3.5 sm:mt-0 flex flex-col sm:flex-row items-center sm:items-center ml-3 sm:ml-0 w-1/2 justify-center">
|
|
<div class="h-full transform -translate-x-1/2 " aria-hidden="true"></div>
|
|
<div class="w-3 h-3 bg-[#fff] border-4 box-content border-[#27272A] rounded-full transform sm:-translate-x-1/2" aria-hidden="true"></div>
|
|
<span class="mt-2 sm:mt-0 text-white text-center sm:text-start text-xs sm:text-md inline-block">
|
|
Cash Equivalents
|
|
</span>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
{: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>
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.app {
|
|
height: 300px;
|
|
max-width: 100%; /* Ensure chart width doesn't exceed the container */
|
|
|
|
}
|
|
|
|
@media (max-width: 640px) {
|
|
.app {
|
|
height: 230px;
|
|
}
|
|
}
|
|
|
|
.chart {
|
|
width: 100%;
|
|
}
|
|
|
|
</style> |