File size: 2,085 Bytes
480fa83
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<script lang="ts">
	//@ts-nocheck
	import { Plot as PlotIcon } from "@gradio/icons";
	import { Empty } from "@gradio/atoms";
	import type { ThemeMode } from "js/core/src/components/types";
	import type { Gradio, SelectData } from "@gradio/utils";
	import { createEventDispatcher } from "svelte";

	export let value;
	let _value;
	export let colors: string[] = [];
	export let show_label: boolean;
	export let theme_mode: ThemeMode;
	export let caption: string;
	export let bokeh_version: string | null;
	export let show_actions_button: bool;
	export let gradio: Gradio<{
		select: SelectData;
	}>;
	export let x_lim: [number, number] | null = null;
	export let _selectable: boolean;

	let PlotComponent: any = null;
	let _type = value?.type;
	let loaded_plotly_css = false;

	const dispatch = createEventDispatcher<{
		change: undefined;
	}>();

	const plotTypeMapping = {
		plotly: () => import("./plot_types/PlotlyPlot.svelte"),
		bokeh: () => import("./plot_types/BokehPlot.svelte"),
		altair: () => import("./plot_types/AltairPlot.svelte"),
		matplotlib: () => import("./plot_types/MatplotlibPlot.svelte")
	};

	let loadedPlotTypeMapping = {};

	const is_browser = typeof window !== "undefined";
	let key = 0;

	$: if (value !== _value) {
		key += 1;
		let type = value?.type;
		if (type !== _type) {
			PlotComponent = null;
		}
		if (type && type in plotTypeMapping && is_browser) {
			if (loadedPlotTypeMapping[type]) {
				PlotComponent = loadedPlotTypeMapping[type];
			} else {
				plotTypeMapping[type]().then((module) => {
					PlotComponent = module.default;
					loadedPlotTypeMapping[type] = PlotComponent;
				});
			}
		}
		_value = value;
		_type = type;
		dispatch("change");
	}
</script>

{#if value && PlotComponent}
	{#key key}
		<svelte:component
			this={PlotComponent}
			{value}
			{colors}
			{theme_mode}
			{show_label}
			{caption}
			{bokeh_version}
			{show_actions_button}
			{gradio}
			{_selectable}
			{x_lim}
			bind:loaded_plotly_css
			on:load
			on:select
		/>
	{/key}
{:else}
	<Empty unpadded_box={true} size="large"><PlotIcon /></Empty>
{/if}