1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204 |
- import { ReplaceMode } from '@meta2d/chart-diagram';
- //注册所有主题
- export function registerTheme() {
- fetch('theme/dark.json')
- .then((r) => r.json())
- .then((theme) => {
- echarts.registerTheme('le-dark', theme);
- });
- }
- export function changeTheme(theme: string) {
- charts.forEach((item) => {
- item.list.forEach((chart) => {
- if (chart.data.name === 'echarts') {
- chart.data.echarts.theme = theme;
- }
- });
- });
- }
- export const charts = [
- {
- name: 'Echarts - 基础图表',
- show: true,
- list: [
- {
- name: '折线图',
- icon: 'l-line-chart',
- data: {
- name: 'echarts',
- width: 400,
- height: 300,
- externElement: true,
- disableAnchor: true,
- echarts: {
- option: {
- tooltip: {
- trigger: 'axis',
- },
- grid: {
- top: 10,
- bottom: 20,
- left: 40,
- right: 5,
- },
- xAxis: {
- type: 'category',
- data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
- axisLabel: {
- fontSize: 12,
- // color: '#ffffff',
- },
- },
- yAxis: {
- type: 'value',
- axisLabel: {
- fontSize: 12,
- // color: '#ffffff',
- },
- },
- series: [
- {
- type: 'line',
- data: [820, 932, 901, 934, 1290, 1330, 1320],
- },
- ],
- },
- max: 100,
- },
- realTimes: [
- {
- key: 'echarts.option.series.0.data',
- label: '数据',
- type: 'object',
- },
- {
- key: 'echarts.option',
- label: 'echarts',
- type: 'object',
- },
- {
- key: 'echarts.max',
- label: '最大数量',
- type: 'number',
- },
- ],
- },
- },
- {
- name: '柱状图',
- icon: 'l-bar-chart',
- data: {
- width: 300,
- height: 200,
- disableAnchor: true,
- externElement: true,
- name: 'echarts',
- echarts: {
- option: {
- tooltip: {
- trigger: 'axis',
- },
- grid: {
- top: 10,
- bottom: 20,
- left: 40,
- right: 5,
- },
- xAxis: {
- type: 'category',
- data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
- axisTick: {
- alignWithLabel: true,
- },
- axisLabel: {
- fontSize: 12,
- color: '#ffffff',
- },
- },
- yAxis: {
- type: 'value',
- axisLabel: {
- fontSize: 12,
- color: '#ffffff',
- },
- },
- series: [
- {
- name: '直接访问',
- type: 'bar',
- barWidth: '60%',
- label: {
- color: '#ffffff',
- },
- data: [10, 52, 200, 334, 390, 330, 220],
- },
- ],
- },
- max: 100,
- },
- realTimes: [
- {
- key: 'echarts.option.series.0.data',
- label: '数据',
- type: 'object',
- },
- {
- key: 'echarts.option',
- label: 'echarts',
- type: 'object',
- },
- {
- key: 'echarts.max',
- label: '最大数量',
- type: 'number',
- },
- ],
- },
- },
- {
- name: '饼图',
- icon: 'l-pie-chart',
- data: {
- width: 300,
- height: 200,
- disableAnchor: true,
- externElement: true,
- name: 'echarts',
- echarts: {
- option: {
- tooltip: {
- trigger: 'item',
- },
- series: [
- {
- type: 'pie',
- radius: ['50%', '70%'],
- label: {
- color: '#ffffff',
- },
- data: [
- { value: 335, name: '2D' },
- { value: 310, name: '3D' },
- { value: 234, name: '大屏' },
- { value: 135, name: '物联网平台' },
- { value: 1548, name: '图形库' },
- ],
- },
- ],
- },
- replaceMode: ReplaceMode.Replace,
- },
- realTimes: [
- {
- key: 'echarts.option.series.0.data',
- label: '数据',
- type: 'object',
- },
- {
- key: 'echarts.option',
- label: 'echarts',
- type: 'object',
- },
- ],
- },
- },
- {
- name: '散点图',
- icon: 'l-sandiantu',
- data: {
- width: 300,
- height: 200,
- disableAnchor: true,
- externElement: true,
- name: 'echarts',
- echarts: {
- option: {
- grid: {
- top: 10,
- bottom: 20,
- left: 40,
- right: 10,
- },
- xAxis: {
- axisLabel: {
- fontSize: 12,
- color: '#ffffff',
- },
- },
- yAxis: {
- axisLabel: {
- fontSize: 12,
- color: '#ffffff',
- },
- },
- series: [
- {
- symbolSize: 10,
- data: [
- [10.0, 8.04],
- [8.07, 6.95],
- [13.0, 7.58],
- [9.05, 8.81],
- [11.0, 8.33],
- [14.0, 7.66],
- [13.4, 6.81],
- [10.0, 6.33],
- [14.0, 8.96],
- [12.5, 6.82],
- [9.15, 7.2],
- [11.5, 7.2],
- [3.03, 4.23],
- [12.2, 7.83],
- [2.02, 4.47],
- [1.05, 3.33],
- [4.05, 4.96],
- [6.03, 7.24],
- [12.0, 6.26],
- [12.0, 8.84],
- [7.08, 5.82],
- [5.02, 5.68],
- ],
- type: 'scatter',
- },
- ],
- },
- replaceMode: ReplaceMode.Replace,
- },
- realTimes: [
- {
- key: 'echarts.option.series.0.data',
- label: '数据',
- type: 'object',
- },
- {
- key: 'echarts.option',
- label: 'echarts',
- type: 'object',
- },
- ],
- },
- },
- {
- name: 'K线图',
- icon: 'l-kxiantu',
- data: {
- width: 300,
- height: 200,
- disableAnchor: true,
- externElement: true,
- name: 'echarts',
- echarts: {
- option: {
- grid: {
- top: 20,
- bottom: 30,
- left: 40,
- right: 10,
- },
- xAxis: {
- axisLabel: {
- fontSize: 12,
- color: '#ffffff',
- },
- data: ['2017-10-24', '2017-10-25', '2017-10-26', '2017-10-27'],
- },
- yAxis: {
- axisLabel: {
- fontSize: 12,
- color: '#ffffff',
- },
- },
- series: [
- {
- type: 'candlestick',
- data: [
- [20, 34, 10, 38],
- [40, 35, 30, 50],
- [31, 38, 33, 44],
- [38, 15, 5, 42],
- ],
- },
- ],
- },
- replaceMode: ReplaceMode.Replace,
- },
- realTimes: [
- {
- key: 'echarts.option.series.0.data',
- label: '数据',
- type: 'object',
- },
- {
- key: 'echarts.option',
- label: 'echarts',
- type: 'object',
- },
- ],
- },
- },
- {
- name: '雷达图',
- icon: 'l-leidatu',
- data: {
- width: 300,
- height: 200,
- disableAnchor: true,
- externElement: true,
- name: 'echarts',
- echarts: {
- option: {
- grid: {
- top: 20,
- bottom: 30,
- left: 40,
- right: 10,
- },
- radar: {
- // shape: 'circle',
- indicator: [
- { name: 'Sales', max: 6500 },
- { name: 'Administration', max: 16000 },
- { name: 'Information Technology', max: 30000 },
- { name: 'Customer Support', max: 38000 },
- { name: 'Development', max: 52000 },
- { name: 'Marketing', max: 25000 },
- ],
- },
- series: [
- {
- name: 'Budget vs spending',
- type: 'radar',
- data: [
- {
- value: [4200, 3000, 20000, 35000, 50000, 18000],
- name: 'Allocated Budget',
- },
- {
- value: [5000, 14000, 28000, 26000, 42000, 21000],
- name: 'Actual Spending',
- },
- ],
- },
- ],
- },
- replaceMode: ReplaceMode.Replace,
- },
- realTimes: [
- {
- key: 'echarts.option.series.0.data',
- label: '数据',
- type: 'object',
- },
- {
- key: 'echarts.option',
- label: 'echarts',
- type: 'object',
- },
- ],
- },
- },
- {
- name: '旭日图',
- icon: 'l-xuritu',
- data: {
- width: 200,
- height: 200,
- disableAnchor: true,
- externElement: true,
- name: 'echarts',
- echarts: {
- option: {
- series: [
- {
- radius: ['15%', '80%'],
- type: 'sunburst',
- data: [
- {
- children: [
- {
- value: 5,
- children: [
- {
- value: 1,
- itemStyle: {
- color: '#F54F4A',
- },
- },
- {
- value: 2,
- children: [
- {
- value: 1,
- itemStyle: {
- color: '#FF8C75',
- },
- },
- ],
- },
- {
- children: [
- {
- value: 1,
- },
- ],
- },
- ],
- itemStyle: {
- color: '#F54F4A',
- },
- },
- {
- value: 10,
- children: [
- {
- value: 6,
- children: [
- {
- value: 1,
- itemStyle: {
- color: '#F54F4A',
- },
- },
- {
- value: 1,
- },
- {
- value: 1,
- itemStyle: {
- color: '#FF8C75',
- },
- },
- {
- value: 1,
- },
- ],
- itemStyle: {
- color: '#FFB499',
- },
- },
- {
- value: 2,
- children: [
- {
- value: 1,
- },
- ],
- itemStyle: {
- color: '#FFB499',
- },
- },
- {
- children: [
- {
- value: 1,
- itemStyle: {
- color: '#FF8C75',
- },
- },
- ],
- },
- ],
- itemStyle: {
- color: '#F54F4A',
- },
- },
- ],
- itemStyle: {
- color: '#F54F4A',
- },
- },
- {
- value: 9,
- children: [
- {
- value: 4,
- children: [
- {
- value: 2,
- itemStyle: {
- color: '#FF8C75',
- },
- },
- {
- children: [
- {
- value: 1,
- itemStyle: {
- color: '#F54F4A',
- },
- },
- ],
- },
- ],
- itemStyle: {
- color: '#F54F4A',
- },
- },
- {
- children: [
- {
- value: 3,
- children: [
- {
- value: 1,
- },
- {
- value: 1,
- itemStyle: {
- color: '#FF8C75',
- },
- },
- ],
- },
- ],
- itemStyle: {
- color: '#FFB499',
- },
- },
- ],
- itemStyle: {
- color: '#FF8C75',
- },
- },
- {
- value: 7,
- children: [
- {
- children: [
- {
- value: 1,
- itemStyle: {
- color: '#FFB499',
- },
- },
- {
- value: 3,
- children: [
- {
- value: 1,
- itemStyle: {
- color: '#FF8C75',
- },
- },
- {
- value: 1,
- },
- ],
- itemStyle: {
- color: '#FF8C75',
- },
- },
- {
- value: 2,
- children: [
- {
- value: 1,
- },
- {
- value: 1,
- itemStyle: {
- color: '#F54F4A',
- },
- },
- ],
- itemStyle: {
- color: '#F54F4A',
- },
- },
- ],
- itemStyle: {
- color: '#FFB499',
- },
- },
- ],
- itemStyle: {
- color: '#F54F4A',
- },
- },
- {
- children: [
- {
- value: 6,
- children: [
- {
- value: 1,
- itemStyle: {
- color: '#FF8C75',
- },
- },
- {
- value: 2,
- children: [
- {
- value: 2,
- itemStyle: {
- color: '#FF8C75',
- },
- },
- ],
- itemStyle: {
- color: '#F54F4A',
- },
- },
- {
- value: 1,
- itemStyle: {
- color: '#FFB499',
- },
- },
- ],
- itemStyle: {
- color: '#FFB499',
- },
- },
- {
- value: 3,
- children: [
- {
- value: 1,
- },
- {
- children: [
- {
- value: 1,
- itemStyle: {
- color: '#FF8C75',
- },
- },
- ],
- },
- {
- value: 1,
- },
- ],
- itemStyle: {
- color: '#FFB499',
- },
- },
- ],
- itemStyle: {
- color: '#F54F4A',
- },
- },
- ],
- label: {
- rotate: 'radial',
- color: '#ffffff',
- },
- },
- ],
- },
- replaceMode: ReplaceMode.Replace,
- },
- realTimes: [
- {
- key: 'echarts.option.series.0.data',
- label: '数据',
- type: 'object',
- },
- {
- key: 'echarts.option',
- label: 'echarts',
- type: 'object',
- },
- ],
- },
- },
- {
- name: '桑基图',
- icon: 'l-sangshentu',
- data: {
- width: 300,
- height: 200,
- disableAnchor: true,
- externElement: true,
- name: 'echarts',
- echarts: {
- option: {
- series: {
- type: 'sankey',
- layout: 'none',
- emphasis: {
- focus: 'adjacency',
- },
- data: [
- {
- name: 'a',
- },
- {
- name: 'b',
- },
- {
- name: 'a1',
- },
- {
- name: 'a2',
- },
- {
- name: 'b1',
- },
- {
- name: 'c',
- },
- ],
- links: [
- {
- source: 'a',
- target: 'a1',
- value: 5,
- },
- {
- source: 'a',
- target: 'a2',
- value: 3,
- },
- {
- source: 'b',
- target: 'b1',
- value: 8,
- },
- {
- source: 'a',
- target: 'b1',
- value: 3,
- },
- {
- source: 'b1',
- target: 'a1',
- value: 1,
- },
- {
- source: 'b1',
- target: 'c',
- value: 2,
- },
- ],
- lineStyle: {
- color: 'source',
- curveness: 0.5,
- },
- label: {
- color: '#ffffff',
- fontSize: 10,
- },
- },
- },
- replaceMode: ReplaceMode.Replace,
- },
- realTimes: [
- {
- key: 'echarts.option.series.0.data',
- label: '数据',
- type: 'object',
- },
- {
- key: 'echarts.option',
- label: 'echarts',
- type: 'object',
- },
- ],
- },
- },
- {
- name: '漏斗图',
- icon: 'l-loudoutu',
- data: {
- width: 200,
- height: 200,
- disableAnchor: true,
- externElement: true,
- name: 'echarts',
- echarts: {
- option: {
- tooltip: {
- trigger: 'item',
- formatter: '{a} <br/>{b} : {c}%',
- },
- series: [
- {
- name: 'Expected',
- type: 'funnel',
- left: '2%',
- width: '80%',
- label: {
- color: '#ffffff',
- formatter: '{b}Expected',
- },
- labelLine: {
- show: false,
- },
- itemStyle: {
- opacity: 0.7,
- },
- emphasis: {
- label: {
- position: 'inside',
- formatter: '{b}Expected: {c}%',
- },
- },
- data: [
- { value: 60, name: 'Visit' },
- { value: 40, name: 'Inquiry' },
- { value: 20, name: 'Order' },
- { value: 80, name: 'Click' },
- { value: 100, name: 'Show' },
- ],
- },
- {
- name: 'Actual',
- type: 'funnel',
- left: '2%',
- width: '80%',
- maxSize: '80%',
- label: {
- position: 'inside',
- formatter: '{c}%',
- color: '#fff',
- },
- itemStyle: {
- opacity: 0.5,
- borderColor: '#fff',
- borderWidth: 2,
- },
- emphasis: {
- label: {
- position: 'inside',
- formatter: '{b}Actual: {c}%',
- },
- },
- data: [
- { value: 30, name: 'Visit' },
- { value: 10, name: 'Inquiry' },
- { value: 5, name: 'Order' },
- { value: 50, name: 'Click' },
- { value: 80, name: 'Show' },
- ],
- z: 100,
- },
- ],
- },
- replaceMode: ReplaceMode.Replace,
- },
- realTimes: [
- {
- key: 'echarts.option.series.0.data',
- label: '数据',
- type: 'object',
- },
- {
- key: 'echarts.option',
- label: 'echarts',
- type: 'object',
- },
- ],
- },
- },
- {
- name: '仪表盘',
- icon: 'l-dashboard-chart',
- data: {
- width: 200,
- height: 200,
- disableAnchor: true,
- externElement: true,
- name: 'echarts',
- echarts: {
- option: {
- tooltip: {
- formatter: '{a} <br/>{b} : {c}%',
- },
- series: [
- {
- type: 'gauge',
- axisLine: {
- roundCap: true,
- },
- progress: {
- show: true,
- roundCap: true,
- },
- data: [{ value: 70 }],
- },
- ],
- },
- replaceMode: ReplaceMode.Replace,
- },
- realTimes: [
- {
- key: 'echarts.option.series.0.data',
- label: '数据',
- type: 'object',
- },
- {
- key: 'echarts.option',
- label: 'echarts',
- type: 'object',
- },
- ],
- },
- },
- ],
- },
- {
- name: '乐吾乐Charts',
- show: true,
- list: [
- {
- name: '折线图',
- icon: 'l-line-chart',
- data: {
- name: 'lineChart',
- width: 400,
- disableAnchor: true,
- height: 200,
- chartsColor: [
- '#1890ff',
- '#2FC25B',
- '#FACC14',
- '#c23531',
- '#2f4554',
- '#61a0a8',
- '#d48265',
- ],
- xAxisData: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
- smooth: true,
- data: [
- [1820, 1932, 1901, 1934, 1990, 1830, 1920],
- [1710, 1932, 1901, 1834, 1700, 1830, 1720],
- ],
- },
- },
- {
- name: '柱状图',
- icon: 'l-bar-chart',
- data: {
- name: 'histogram',
- x: 600,
- y: 100,
- width: 400,
- height: 200,
- disableAnchor: true,
- chartsColor: [
- '#1890ff',
- '#2FC25B',
- '#FACC14',
- '#c23531',
- '#2f4554',
- '#61a0a8',
- '#d48265',
- ],
- xAxisData: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
- data: [
- [120, 200, 150, 80, 70, 110, 130],
- [140, 250, 150, 80, 60, 10, 30],
- [40, 50, 180, 210, 60, 70, 30],
- ],
- },
- },
- {
- name: '饼图',
- icon: 'l-pie-chart',
- data: {
- name: 'pieChart',
- x: 100,
- y: 300,
- width: 400,
- height: 200,
- disableAnchor: true,
- chartsColor: [
- '#1890ff',
- '#36CBCB',
- '#2FC25B',
- '#FACC14',
- '#F2637B',
- '#fc8452',
- '#9a60b4',
- '#ea7ccc',
- ],
- data: [
- [
- { value: 1048, name: 'Search Engine' },
- { value: 735, name: 'Direct' },
- { value: 580, name: 'Email' },
- { value: 484, name: 'Union Ads' },
- { value: 300, name: 'Video Ads' },
- ],
- [
- { value: 1548, name: 'Search' },
- { value: 775, name: 'Direct' },
- { value: 679, name: 'Market' },
- ],
- ],
- chartsRadius: [
- ['60%', '70%'],
- ['0%', '50%'],
- ],
- },
- },
- {
- name: '仪表盘',
- icon: 'l-dashboard-chart',
- data: {
- name: 'gauge',
- x: 600,
- y: 300,
- width: 400,
- height: 400,
- disableAnchor: true,
- value: 90,
- unit: 'm/s',
- axisLine: [
- [0.3, '#67e0e3'],
- [0.7, '#37a2da'],
- [1, '#fd666d'],
- ],
- animateCycle: 1,
- keepAnimateState: 0,
- },
- },
- {
- name: '时钟',
- icon: 'l-07',
- data: {
- name: 'gauge',
- x: 600,
- y: 300,
- width: 400,
- height: 400,
- disableAnchor: true,
- isClock: true,
- startAngle: 90,
- endAngle: -270,
- min: 0,
- max: 12,
- splitNumber: 12,
- background: '#3A3A3A',
- color: '#C0911F',
- },
- },
- ],
- },
- {
- name: '折线图',
- show: true,
- list: [
- {
- name: '基础折线图',
- icon: 'l-line-chart',
- data: {
- name: 'echarts',
- width: 366,
- height: 206,
- externElement: true,
- disableAnchor: true,
- echarts: {
- option: {
- grid: {
- top: 20,
- bottom: 40,
- left: 40,
- right: 20,
- },
- xAxis: {
- type: 'category',
- data: ['1月', '2月', '3月', '4月', '5月', '6月'],
- },
- yAxis: {
- type: 'value',
- max: 100,
- min: 0,
- interval: 50,
- },
- series: [
- {
- type: 'line',
- data: [40, 20, 90, 60, 70, 80],
- },
- ],
- },
- max: 100,
- },
- realTimes: [
- {
- key: 'echarts.option.series.0.data',
- label: '数据',
- type: 'object',
- },
- {
- key: 'echarts.option',
- label: 'echarts',
- type: 'object',
- },
- {
- key: 'echarts.max',
- label: '最大数量',
- type: 'number',
- },
- ],
- },
- },
- {
- name: '双折线图',
- icon: 'l-line-chart',
- data: {
- name: 'echarts',
- width: 366,
- height: 206,
- externElement: true,
- disableAnchor: true,
- echarts: {
- option: {
- grid: {
- top: 20,
- bottom: 40,
- left: 40,
- right: 20,
- },
- xAxis: {
- type: 'category',
- data: ['1月', '2月', '3月', '4月', '5月', '6月'],
- },
- yAxis: {
- type: 'value',
- max: 100,
- min: 0,
- interval: 50,
- },
- series: [
- {
- type: 'line',
- data: [40, 35, 80, 40, 45, 25],
- },
- {
- type: 'line',
- data: [25, 40, 20, 30, 25, 40],
- },
- ],
- },
- max: 100,
- },
- realTimes: [
- {
- key: 'echarts.option.series.0.data',
- label: '数据',
- type: 'object',
- },
- {
- key: 'echarts.option',
- label: 'echarts',
- type: 'object',
- },
- {
- key: 'echarts.max',
- label: '最大数量',
- type: 'number',
- },
- ],
- },
- },
- ],
- },
- ];
|