-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[docs-infra] Transpile .ts demo files (#15345)
- Loading branch information
1 parent
94208b5
commit ee27144
Showing
19 changed files
with
1,486 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
// Data from https://finance.yahoo.com/quote/NFLX/financials/ | ||
|
||
const translations = { | ||
totAss: 'Total Assets', | ||
currAss: 'Current Assets', | ||
nCurrAss: 'non-Current Assets', | ||
totLia: 'Total Liabilities', | ||
curLia: 'Current Liabilities', | ||
nCurLia: 'non-Current Liabilities', | ||
totEq: 'Total Equity', | ||
capStock: 'Capital Stock', | ||
retEarn: 'Retained Earning', | ||
treas: 'Treasury', | ||
nonAffect: 'non Affected', | ||
}; | ||
|
||
export function addLabels(series) { | ||
return series.map((item) => ({ | ||
...item, | ||
label: translations[item.dataKey], | ||
valueFormatter: (v) => (v ? `$ ${v.toLocaleString()}k` : '-'), | ||
})); | ||
} | ||
|
||
export const balanceSheet = [ | ||
{ | ||
year: '2020', | ||
totAss: 39280359, | ||
currAss: 9761580, | ||
nCurrAss: 29518779, | ||
totLia: 28215119, | ||
curLia: 7805785, | ||
nCurLia: 20409334, | ||
totEq: 11065240, | ||
capStock: 3447698, | ||
retEarn: 7573144, | ||
treas: null, | ||
nonAffect: 44398, | ||
}, | ||
{ | ||
year: '2021', | ||
totAss: 44584663, | ||
currAss: 8069825, | ||
nCurrAss: 36514838, | ||
totLia: 28735415, | ||
curLia: 8488966, | ||
nCurLia: 20246449, | ||
totEq: 15849248, | ||
capStock: 4024561, | ||
retEarn: 12689372, | ||
treas: 824190, | ||
nonAffect: -40495, | ||
}, | ||
{ | ||
year: '2022', | ||
totAss: 48594768, | ||
currAss: 9266473, | ||
nCurrAss: 39328295, | ||
totLia: 27817367, | ||
curLia: 7930974, | ||
nCurLia: 19886393, | ||
totEq: 20777401, | ||
capStock: 4637601, | ||
retEarn: 17181296, | ||
treas: 824190, | ||
nonAffect: -217306, | ||
}, | ||
{ | ||
year: '2023', | ||
totAss: 48731992, | ||
currAss: 9918133, | ||
nCurrAss: 38813859, | ||
totLia: 28143679, | ||
curLia: 8860655, | ||
nCurLia: 19283024, | ||
totEq: 20588313, | ||
capStock: 5145172, | ||
retEarn: 22589286, | ||
treas: 6922200, | ||
nonAffect: -223945, | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
export const dataset = [ | ||
{ | ||
london: 59, | ||
paris: 57, | ||
newYork: 86, | ||
seoul: 21, | ||
month: 'Jan', | ||
}, | ||
{ | ||
london: 50, | ||
paris: 52, | ||
newYork: 78, | ||
seoul: 28, | ||
month: 'Feb', | ||
}, | ||
{ | ||
london: 47, | ||
paris: 53, | ||
newYork: 106, | ||
seoul: 41, | ||
month: 'Mar', | ||
}, | ||
{ | ||
london: 54, | ||
paris: 56, | ||
newYork: 92, | ||
seoul: 73, | ||
month: 'Apr', | ||
}, | ||
{ | ||
london: 57, | ||
paris: 69, | ||
newYork: 92, | ||
seoul: 99, | ||
month: 'May', | ||
}, | ||
{ | ||
london: 60, | ||
paris: 63, | ||
newYork: 103, | ||
seoul: 144, | ||
month: 'June', | ||
}, | ||
{ | ||
london: 59, | ||
paris: 60, | ||
newYork: 105, | ||
seoul: 319, | ||
month: 'July', | ||
}, | ||
{ | ||
london: 65, | ||
paris: 60, | ||
newYork: 106, | ||
seoul: 249, | ||
month: 'Aug', | ||
}, | ||
{ | ||
london: 51, | ||
paris: 51, | ||
newYork: 95, | ||
seoul: 131, | ||
month: 'Sept', | ||
}, | ||
{ | ||
london: 60, | ||
paris: 65, | ||
newYork: 97, | ||
seoul: 55, | ||
month: 'Oct', | ||
}, | ||
{ | ||
london: 67, | ||
paris: 64, | ||
newYork: 76, | ||
seoul: 48, | ||
month: 'Nov', | ||
}, | ||
{ | ||
london: 61, | ||
paris: 70, | ||
newYork: 103, | ||
seoul: 25, | ||
month: 'Dec', | ||
}, | ||
]; | ||
|
||
export function valueFormatter(value) { | ||
return `${value}mm`; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
export const data = [ | ||
[0, 0, 10], | ||
[0, 1, 20], | ||
[0, 2, 40], | ||
[0, 3, 90], | ||
[0, 4, 70], | ||
[1, 0, 30], | ||
[1, 1, 50], | ||
[1, 2, 10], | ||
[1, 3, 70], | ||
[1, 4, 40], | ||
[2, 0, 50], | ||
[2, 1, 20], | ||
[2, 2, 90], | ||
[2, 3, 20], | ||
[2, 4, 70], | ||
[3, 0, 40], | ||
[3, 1, 50], | ||
[3, 2, 20], | ||
[3, 3, 70], | ||
[3, 4, 90], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,177 @@ | ||
export const dataset = [ | ||
{ year: new Date(1850, 0, 1), anomaly: -0.4177114 }, | ||
{ year: new Date(1851, 0, 1), anomaly: -0.2333498 }, | ||
{ year: new Date(1852, 0, 1), anomaly: -0.22939907 }, | ||
{ year: new Date(1853, 0, 1), anomaly: -0.27035445 }, | ||
{ year: new Date(1854, 0, 1), anomaly: -0.29152083 }, | ||
{ year: new Date(1855, 0, 1), anomaly: -0.29691675 }, | ||
{ year: new Date(1856, 0, 1), anomaly: -0.32035372 }, | ||
{ year: new Date(1857, 0, 1), anomaly: -0.46723005 }, | ||
{ year: new Date(1858, 0, 1), anomaly: -0.3887657 }, | ||
{ year: new Date(1859, 0, 1), anomaly: -0.28126517 }, | ||
{ year: new Date(1860, 0, 1), anomaly: -0.39016518 }, | ||
{ year: new Date(1861, 0, 1), anomaly: -0.42911294 }, | ||
{ year: new Date(1862, 0, 1), anomaly: -0.5363694 }, | ||
{ year: new Date(1863, 0, 1), anomaly: -0.34424406 }, | ||
{ year: new Date(1864, 0, 1), anomaly: -0.46546507 }, | ||
{ year: new Date(1865, 0, 1), anomaly: -0.33248132 }, | ||
{ year: new Date(1866, 0, 1), anomaly: -0.3412875 }, | ||
{ year: new Date(1867, 0, 1), anomaly: -0.35699412 }, | ||
{ year: new Date(1868, 0, 1), anomaly: -0.35182714 }, | ||
{ year: new Date(1869, 0, 1), anomaly: -0.31659195 }, | ||
{ year: new Date(1870, 0, 1), anomaly: -0.32792753 }, | ||
{ year: new Date(1871, 0, 1), anomaly: -0.36856276 }, | ||
{ year: new Date(1872, 0, 1), anomaly: -0.32811058 }, | ||
{ year: new Date(1873, 0, 1), anomaly: -0.3412969 }, | ||
{ year: new Date(1874, 0, 1), anomaly: -0.3732512 }, | ||
{ year: new Date(1875, 0, 1), anomaly: -0.37562594 }, | ||
{ year: new Date(1876, 0, 1), anomaly: -0.4241099 }, | ||
{ year: new Date(1877, 0, 1), anomaly: -0.10110884 }, | ||
{ year: new Date(1878, 0, 1), anomaly: -0.011315192 }, | ||
{ year: new Date(1879, 0, 1), anomaly: -0.30363432 }, | ||
{ year: new Date(1880, 0, 1), anomaly: -0.31583205 }, | ||
{ year: new Date(1881, 0, 1), anomaly: -0.23224552 }, | ||
{ year: new Date(1882, 0, 1), anomaly: -0.29553008 }, | ||
{ year: new Date(1883, 0, 1), anomaly: -0.3464744 }, | ||
{ year: new Date(1884, 0, 1), anomaly: -0.49232006 }, | ||
{ year: new Date(1885, 0, 1), anomaly: -0.47112358 }, | ||
{ year: new Date(1886, 0, 1), anomaly: -0.42090362 }, | ||
{ year: new Date(1887, 0, 1), anomaly: -0.49878576 }, | ||
{ year: new Date(1888, 0, 1), anomaly: -0.37937889 }, | ||
{ year: new Date(1889, 0, 1), anomaly: -0.24989556 }, | ||
{ year: new Date(1890, 0, 1), anomaly: -0.50685817 }, | ||
{ year: new Date(1891, 0, 1), anomaly: -0.40131494 }, | ||
{ year: new Date(1892, 0, 1), anomaly: -0.5075585 }, | ||
{ year: new Date(1893, 0, 1), anomaly: -0.49461922 }, | ||
{ year: new Date(1894, 0, 1), anomaly: -0.48376393 }, | ||
{ year: new Date(1895, 0, 1), anomaly: -0.4487516 }, | ||
{ year: new Date(1896, 0, 1), anomaly: -0.28400728 }, | ||
{ year: new Date(1897, 0, 1), anomaly: -0.25980017 }, | ||
{ year: new Date(1898, 0, 1), anomaly: -0.48579213 }, | ||
{ year: new Date(1899, 0, 1), anomaly: -0.35543364 }, | ||
{ year: new Date(1900, 0, 1), anomaly: -0.2344939 }, | ||
{ year: new Date(1901, 0, 1), anomaly: -0.29341024 }, | ||
{ year: new Date(1902, 0, 1), anomaly: -0.43895653 }, | ||
{ year: new Date(1903, 0, 1), anomaly: -0.5332871 }, | ||
{ year: new Date(1904, 0, 1), anomaly: -0.59751105 }, | ||
{ year: new Date(1905, 0, 1), anomaly: -0.40779322 }, | ||
{ year: new Date(1906, 0, 1), anomaly: -0.31910878 }, | ||
{ year: new Date(1907, 0, 1), anomaly: -0.5040763 }, | ||
{ year: new Date(1908, 0, 1), anomaly: -0.5138197 }, | ||
{ year: new Date(1909, 0, 1), anomaly: -0.53568715 }, | ||
{ year: new Date(1910, 0, 1), anomaly: -0.5309095 }, | ||
{ year: new Date(1911, 0, 1), anomaly: -0.539079 }, | ||
{ year: new Date(1912, 0, 1), anomaly: -0.47553864 }, | ||
{ year: new Date(1913, 0, 1), anomaly: -0.4670111 }, | ||
{ year: new Date(1914, 0, 1), anomaly: -0.26243657 }, | ||
{ year: new Date(1915, 0, 1), anomaly: -0.19167219 }, | ||
{ year: new Date(1916, 0, 1), anomaly: -0.42002314 }, | ||
{ year: new Date(1917, 0, 1), anomaly: -0.5428197 }, | ||
{ year: new Date(1918, 0, 1), anomaly: -0.4243641 }, | ||
{ year: new Date(1919, 0, 1), anomaly: -0.32528907 }, | ||
{ year: new Date(1920, 0, 1), anomaly: -0.29835507 }, | ||
{ year: new Date(1921, 0, 1), anomaly: -0.24044435 }, | ||
{ year: new Date(1922, 0, 1), anomaly: -0.3390137 }, | ||
{ year: new Date(1923, 0, 1), anomaly: -0.31768188 }, | ||
{ year: new Date(1924, 0, 1), anomaly: -0.3118017 }, | ||
{ year: new Date(1925, 0, 1), anomaly: -0.28214198 }, | ||
{ year: new Date(1926, 0, 1), anomaly: -0.122555 }, | ||
{ year: new Date(1927, 0, 1), anomaly: -0.2291136 }, | ||
{ year: new Date(1928, 0, 1), anomaly: -0.20646581 }, | ||
{ year: new Date(1929, 0, 1), anomaly: -0.39244303 }, | ||
{ year: new Date(1930, 0, 1), anomaly: -0.17680542 }, | ||
{ year: new Date(1931, 0, 1), anomaly: -0.103397675 }, | ||
{ year: new Date(1932, 0, 1), anomaly: -0.14546171 }, | ||
{ year: new Date(1933, 0, 1), anomaly: -0.32234442 }, | ||
{ year: new Date(1934, 0, 1), anomaly: -0.17433685 }, | ||
{ year: new Date(1935, 0, 1), anomaly: -0.20605923 }, | ||
{ year: new Date(1936, 0, 1), anomaly: -0.16952094 }, | ||
{ year: new Date(1937, 0, 1), anomaly: -0.019198947 }, | ||
{ year: new Date(1938, 0, 1), anomaly: -0.012200737 }, | ||
{ year: new Date(1939, 0, 1), anomaly: -0.040797204 }, | ||
{ year: new Date(1940, 0, 1), anomaly: 0.07593582 }, | ||
{ year: new Date(1941, 0, 1), anomaly: 0.0381293 }, | ||
{ year: new Date(1942, 0, 1), anomaly: 0.0014060677 }, | ||
{ year: new Date(1943, 0, 1), anomaly: 0.0064215823 }, | ||
{ year: new Date(1944, 0, 1), anomaly: 0.14410514 }, | ||
{ year: new Date(1945, 0, 1), anomaly: 0.043088354 }, | ||
{ year: new Date(1946, 0, 1), anomaly: -0.11881461 }, | ||
{ year: new Date(1947, 0, 1), anomaly: -0.09120561 }, | ||
{ year: new Date(1948, 0, 1), anomaly: -0.12466127 }, | ||
{ year: new Date(1949, 0, 1), anomaly: -0.14380223 }, | ||
{ year: new Date(1950, 0, 1), anomaly: -0.2266218 }, | ||
{ year: new Date(1951, 0, 1), anomaly: -0.06115396 }, | ||
{ year: new Date(1952, 0, 1), anomaly: 0.015354548 }, | ||
{ year: new Date(1953, 0, 1), anomaly: 0.07763075 }, | ||
{ year: new Date(1954, 0, 1), anomaly: -0.11675023 }, | ||
{ year: new Date(1955, 0, 1), anomaly: -0.19730994 }, | ||
{ year: new Date(1956, 0, 1), anomaly: -0.26316562 }, | ||
{ year: new Date(1957, 0, 1), anomaly: -0.035334915 }, | ||
{ year: new Date(1958, 0, 1), anomaly: -0.017632563 }, | ||
{ year: new Date(1959, 0, 1), anomaly: -0.048004813 }, | ||
{ year: new Date(1960, 0, 1), anomaly: -0.11545958 }, | ||
{ year: new Date(1961, 0, 1), anomaly: -0.019999769 }, | ||
{ year: new Date(1962, 0, 1), anomaly: -0.06404272 }, | ||
{ year: new Date(1963, 0, 1), anomaly: -0.036810614 }, | ||
{ year: new Date(1964, 0, 1), anomaly: -0.30586153 }, | ||
{ year: new Date(1965, 0, 1), anomaly: -0.20442048 }, | ||
{ year: new Date(1966, 0, 1), anomaly: -0.1488976 }, | ||
{ year: new Date(1967, 0, 1), anomaly: -0.117539294 }, | ||
{ year: new Date(1968, 0, 1), anomaly: -0.16864756 }, | ||
{ year: new Date(1969, 0, 1), anomaly: -0.03138624 }, | ||
{ year: new Date(1970, 0, 1), anomaly: -0.08506408 }, | ||
{ year: new Date(1971, 0, 1), anomaly: -0.20588905 }, | ||
{ year: new Date(1972, 0, 1), anomaly: -0.09379131 }, | ||
{ year: new Date(1973, 0, 1), anomaly: 0.04995016 }, | ||
{ year: new Date(1974, 0, 1), anomaly: -0.17252657 }, | ||
{ year: new Date(1975, 0, 1), anomaly: -0.110754214 }, | ||
{ year: new Date(1976, 0, 1), anomaly: -0.2158369 }, | ||
{ year: new Date(1977, 0, 1), anomaly: 0.1030885 }, | ||
{ year: new Date(1978, 0, 1), anomaly: 0.0052559716 }, | ||
{ year: new Date(1979, 0, 1), anomaly: 0.09085814 }, | ||
{ year: new Date(1980, 0, 1), anomaly: 0.19607204 }, | ||
{ year: new Date(1981, 0, 1), anomaly: 0.25001204 }, | ||
{ year: new Date(1982, 0, 1), anomaly: 0.034268282 }, | ||
{ year: new Date(1983, 0, 1), anomaly: 0.22380984 }, | ||
{ year: new Date(1984, 0, 1), anomaly: 0.04799352 }, | ||
{ year: new Date(1985, 0, 1), anomaly: 0.049729742 }, | ||
{ year: new Date(1986, 0, 1), anomaly: 0.09568698 }, | ||
{ year: new Date(1987, 0, 1), anomaly: 0.2430264 }, | ||
{ year: new Date(1988, 0, 1), anomaly: 0.2821517 }, | ||
{ year: new Date(1989, 0, 1), anomaly: 0.1792503 }, | ||
{ year: new Date(1990, 0, 1), anomaly: 0.36058238 }, | ||
{ year: new Date(1991, 0, 1), anomaly: 0.33889654 }, | ||
{ year: new Date(1992, 0, 1), anomaly: 0.12489683 }, | ||
{ year: new Date(1993, 0, 1), anomaly: 0.16570719 }, | ||
{ year: new Date(1994, 0, 1), anomaly: 0.23354979 }, | ||
{ year: new Date(1995, 0, 1), anomaly: 0.37686613 }, | ||
{ year: new Date(1996, 0, 1), anomaly: 0.27668938 }, | ||
{ year: new Date(1997, 0, 1), anomaly: 0.4223085 }, | ||
{ year: new Date(1998, 0, 1), anomaly: 0.5773417 }, | ||
{ year: new Date(1999, 0, 1), anomaly: 0.32448497 }, | ||
{ year: new Date(2000, 0, 1), anomaly: 0.33108476 }, | ||
{ year: new Date(2001, 0, 1), anomaly: 0.48928034 }, | ||
{ year: new Date(2002, 0, 1), anomaly: 0.5434665 }, | ||
{ year: new Date(2003, 0, 1), anomaly: 0.54417014 }, | ||
{ year: new Date(2004, 0, 1), anomaly: 0.46737072 }, | ||
{ year: new Date(2005, 0, 1), anomaly: 0.6068625 }, | ||
{ year: new Date(2006, 0, 1), anomaly: 0.5725527 }, | ||
{ year: new Date(2007, 0, 1), anomaly: 0.5917013 }, | ||
{ year: new Date(2008, 0, 1), anomaly: 0.46564984 }, | ||
{ year: new Date(2009, 0, 1), anomaly: 0.5967816 }, | ||
{ year: new Date(2010, 0, 1), anomaly: 0.6803714 }, | ||
{ year: new Date(2011, 0, 1), anomaly: 0.53769773 }, | ||
{ year: new Date(2012, 0, 1), anomaly: 0.57760704 }, | ||
{ year: new Date(2013, 0, 1), anomaly: 0.6235753 }, | ||
{ year: new Date(2014, 0, 1), anomaly: 0.67287165 }, | ||
{ year: new Date(2015, 0, 1), anomaly: 0.8251144 }, | ||
{ year: new Date(2016, 0, 1), anomaly: 0.9329271 }, | ||
{ year: new Date(2017, 0, 1), anomaly: 0.84517425 }, | ||
{ year: new Date(2018, 0, 1), anomaly: 0.76265407 }, | ||
{ year: new Date(2019, 0, 1), anomaly: 0.8910726 }, | ||
{ year: new Date(2020, 0, 1), anomaly: 0.9229205 }, | ||
{ year: new Date(2021, 0, 1), anomaly: 0.76190555 }, | ||
{ year: new Date(2022, 0, 1), anomaly: 0.8013053 }, | ||
{ year: new Date(2023, 0, 1), anomaly: 1.1003127 }, | ||
{ year: new Date(2024, 0, 1), anomaly: 1.2314565 }, | ||
]; |
Oops, something went wrong.