-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathGenericChart.fs
428 lines (361 loc) · 16 KB
/
GenericChart.fs
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
namespace Plotly.NET
open DynamicObj
open System
open Newtonsoft.Json
open System.Runtime.CompilerServices
open Giraffe.ViewEngine
type HTML() =
static member CreateChartScript
(
data: string,
layout: string,
config: string,
plotlyReference: PlotlyJSReference,
guid: string
) =
match plotlyReference with
| Require r ->
script
[ _type "text/javascript" ]
[
rawText (
Globals.REQUIREJS_SCRIPT_TEMPLATE
.Replace("[REQUIRE_SRC]", r)
.Replace("[SCRIPTID]", guid.Replace("-", ""))
.Replace("[ID]", guid)
.Replace("[DATA]", data)
.Replace("[LAYOUT]", layout)
.Replace("[CONFIG]", config)
)
]
| _ ->
script
[ _type "text/javascript" ]
[
rawText (
Globals.SCRIPT_TEMPLATE
.Replace("[SCRIPTID]", guid.Replace("-", ""))
.Replace("[ID]", guid)
.Replace("[DATA]", data)
.Replace("[LAYOUT]", layout)
.Replace("[CONFIG]", config)
)
]
static member Doc(chart, plotlyReference: PlotlyJSReference, ?AdditionalHeadTags, ?Description) =
let additionalHeadTags =
defaultArg AdditionalHeadTags []
let description = defaultArg Description []
let plotlyScriptRef =
match plotlyReference with
| CDN cdn -> script [ _src cdn ] []
| Full ->
script
[ _type "text/javascript" ]
[
rawText (InternalUtils.getFullPlotlyJS ())
]
| NoReference
| Require _ -> rawText ""
html
[]
[
head
[]
[
plotlyScriptRef
yield! additionalHeadTags
]
body [] [ yield! chart; yield! description ]
]
static member CreateChartHTML(data: string, layout: string, config: string, plotlyReference: PlotlyJSReference) =
let guid = Guid.NewGuid().ToString()
let chartScript =
HTML.CreateChartScript(
data = data,
layout = layout,
config = config,
plotlyReference = plotlyReference,
guid = guid
)
[
div
[ _id guid ]
[
comment "Plotly chart will be drawn inside this DIV"
]
chartScript
]
/// Module to represent a GenericChart
[<Extension>]
module GenericChart =
type Figure =
{
[<JsonProperty("data")>]
Data: Trace list
[<JsonProperty("layout")>]
Layout: Layout
[<JsonProperty("frames")>]
Frames: Frame list
}
static member create data layout =
{
Data = data
Layout = layout
Frames = []
}
//TO-DO refactor as type with static members to remove verbose top namespace from 'GenericChart.GenericChart'
type GenericChart =
| Chart of Trace * Layout * Config * DisplayOptions
| MultiChart of Trace list * Layout * Config * DisplayOptions
let toFigure (gChart: GenericChart) =
match gChart with
| Chart(trace, layout, _, _) -> Figure.create [ trace ] layout
| MultiChart(traces, layout, _, _) -> Figure.create traces layout
let fromFigure (fig: Figure) =
let traces = fig.Data
let layout = fig.Layout
if traces.Length <> 1 then
MultiChart(traces, layout, Defaults.DefaultConfig, Defaults.DefaultDisplayOptions)
else
Chart(traces.[0], layout, Defaults.DefaultConfig, Defaults.DefaultDisplayOptions)
let getTraces gChart =
match gChart with
| Chart(trace, _, _, _) -> [ trace ]
| MultiChart(traces, _, _, _) -> traces
let getLayout gChart =
match gChart with
| Chart(_, layout, _, _) -> layout
| MultiChart(_, layout, _, _) -> layout
let setLayout layout gChart =
match gChart with
| Chart(t, _, c, d) -> Chart(t, layout, c, d)
| MultiChart(t, _, c, d) -> MultiChart(t, layout, c, d)
// Adds a Layout function to the GenericChart
let addLayout layout gChart =
match gChart with
| Chart(trace, l', c, d) -> Chart(trace, (Layout.combine l' layout), c, d)
| MultiChart(traces, l', c, d) -> MultiChart(traces, (Layout.combine l' layout), c, d)
/// Returns a tuple containing the width and height of a GenericChart's layout if the property is set, otherwise returns None
let tryGetLayoutSize gChart =
let layout = getLayout gChart
layout.TryGetTypedValue<int> "width", layout.TryGetTypedValue<int> "height"
let getConfig gChart =
match gChart with
| Chart(_, _, c, _) -> c
| MultiChart(_, _, c, _) -> c
let setConfig config gChart =
match gChart with
| Chart(t, l, _, d) -> Chart(t, l, config, d)
| MultiChart(t, l, _, d) -> MultiChart(t, l, config, d)
let addConfig config gChart =
match gChart with
| Chart(trace, l, c', d) -> Chart(trace, l, (Config.combine c' config), d)
| MultiChart(traces, l, c', d) -> MultiChart(traces, l, (Config.combine c' config), d)
let getDisplayOptions gChart =
match gChart with
| Chart(_, _, _, d) -> d
| MultiChart(_, _, _, d) -> d
let setDisplayOptions displayOpts gChart =
match gChart with
| Chart(t, l, c, _) -> Chart(t, l, c, displayOpts)
| MultiChart(t, l, c, _) -> MultiChart(t, l, c, displayOpts)
let addDisplayOptions displayOpts gChart =
match gChart with
| Chart(t, l, c, d') -> Chart(t, l, c, (DisplayOptions.combine d' displayOpts))
| MultiChart(t, l, c, d') -> MultiChart(t, l, c, (DisplayOptions.combine d' displayOpts))
// // Adds multiple Layout functions to the GenericChart
// let addLayouts layouts gChart =
// match gChart with
// | Chart (trace,_) ->
// let l' = getLayouts gChart
// Chart (trace,Some (layouts@l'))
// | MultiChart (traces,_) ->
// let l' = getLayouts gChart
// MultiChart (traces, Some (layouts@l'))
open Plotly.NET.LayoutObjects
// Combines two GenericChart
let combine (gCharts: seq<GenericChart>) =
// temporary hard fix for some props, see https://github.com/CSBiology/DynamicObj/issues/11
gCharts
|> Seq.reduce (fun acc elem ->
match acc, elem with
| MultiChart(traces, l1, c1, d1), Chart(trace, l2, c2, d2) ->
MultiChart(
List.append traces [ trace ],
Layout.combine l1 l2,
Config.combine c1 c2,
DisplayOptions.combine d1 d2
)
| MultiChart(traces1, l1, c1, d1), MultiChart(traces2, l2, c2, d2) ->
MultiChart(
List.append traces1 traces2,
Layout.combine l1 l2,
Config.combine c1 c2,
DisplayOptions.combine d1 d2
)
| Chart(trace1, l1, c1, d1), Chart(trace2, l2, c2, d2) ->
MultiChart(
[ trace1; trace2 ],
Layout.combine l1 l2,
Config.combine c1 c2,
DisplayOptions.combine d1 d2
)
| Chart(trace, l1, c1, d1), MultiChart(traces, l2, c2, d2) ->
MultiChart(
List.append [ trace ] traces,
Layout.combine l1 l2,
Config.combine c1 c2,
DisplayOptions.combine d1 d2
))
let toChartHTMLNodes gChart =
let tracesJson =
let traces = getTraces gChart
JsonConvert.SerializeObject(traces, Globals.JSON_CONFIG)
let layoutJson =
let layout = getLayout gChart
JsonConvert.SerializeObject(layout, Globals.JSON_CONFIG)
let configJson =
let config = getConfig gChart
JsonConvert.SerializeObject(config, Globals.JSON_CONFIG)
let displayOpts = getDisplayOptions gChart
let description =
displayOpts |> DisplayOptions.getDescription
let plotlyReference =
displayOpts |> DisplayOptions.getPlotlyReference
div
[]
[
yield!
HTML.CreateChartHTML(
data = tracesJson,
layout = layoutJson,
config = configJson,
plotlyReference = plotlyReference
)
yield! description
]
let toChartHTML gChart =
gChart |> toChartHTMLNodes |> RenderView.AsString.htmlNode
/// Converts a GenericChart to it HTML representation and embeds it into a html page.
let toEmbeddedHTML gChart =
let tracesJson =
let traces = getTraces gChart
JsonConvert.SerializeObject(traces, Globals.JSON_CONFIG)
let layoutJson =
let layout = getLayout gChart
JsonConvert.SerializeObject(layout, Globals.JSON_CONFIG)
let configJson =
let config = getConfig gChart
JsonConvert.SerializeObject(config, Globals.JSON_CONFIG)
let displayOpts = getDisplayOptions gChart
let additionalHeadTags =
(displayOpts |> DisplayOptions.getAdditionalHeadTags)
let description =
(displayOpts |> DisplayOptions.getDescription)
let plotlyReference =
displayOpts |> DisplayOptions.getPlotlyReference
HTML.Doc(
chart =
HTML.CreateChartHTML(
data = tracesJson,
layout = layoutJson,
config = configJson,
plotlyReference = plotlyReference
),
plotlyReference = plotlyReference,
AdditionalHeadTags = additionalHeadTags,
Description = description
)
|> RenderView.AsString.htmlDocument
/// Creates a new GenericChart whose traces are the results of applying the given function to each of the trace of the GenericChart.
let mapTrace f gChart =
match gChart with
| Chart(trace, layout, config, displayOpts) -> Chart(f trace, layout, config, displayOpts)
| MultiChart(traces, layout, config, displayOpts) ->
MultiChart(traces |> List.map f, layout, config, displayOpts)
/// Creates a new GenericChart whose traces are the results of applying the given function to each of the trace of the GenericChart.
/// The integer index passed to the function indicates the index (from 0) of element being transformed.
let mapiTrace f gChart =
match gChart with
| Chart(trace, layout, config, displayOpts) -> Chart(f 0 trace, layout, config, displayOpts)
| MultiChart(traces, layout, config, displayOpts) ->
MultiChart(traces |> List.mapi f, layout, config, displayOpts)
/// Returns the number of traces within the GenericChart
let countTrace gChart =
match gChart with
| Chart(_) -> 1
| MultiChart(traces, _, _, _) -> traces |> Seq.length
/// Returns true if the given chart contains a trace for which the predicate function returns true
let existsTrace (predicate: Trace -> bool) gChart =
match gChart with
| Chart(trace, _, _, _) -> predicate trace
| MultiChart(traces, _, _, _) -> traces |> List.exists predicate
/// Converts from a trace object and a layout object into GenericChart. If useDefaults = true, also sets the default Chart properties found in `Defaults`
let ofTraceObject (useDefaults: bool) trace = //layout =
if useDefaults then
// copy default instances so we can safely manipulate the respective objects of the created chart without changing global default objects
let defaultConfig = Config()
Defaults.DefaultConfig.CopyDynamicPropertiesTo defaultConfig
let defaultDisplayOpts = DisplayOptions()
Defaults.DefaultDisplayOptions.CopyDynamicPropertiesTo defaultDisplayOpts
let defaultTemplate = Template()
Defaults.DefaultTemplate.CopyDynamicPropertiesTo defaultTemplate
GenericChart.Chart(
trace,
Layout.init (
Width = Defaults.DefaultWidth, // no need to copy these, as they are primitives
Height = Defaults.DefaultHeight, // no need to copy these, as they are primitives
Template = (defaultTemplate :> DynamicObj)
),
defaultConfig,
defaultDisplayOpts
)
else
GenericChart.Chart(trace, Layout(), Config(), DisplayOptions.initCDNOnly ())
/// Converts from a list of trace objects and a layout object into GenericChart. If useDefaults = true, also sets the default Chart properties found in `Defaults`
let ofTraceObjects (useDefaults: bool) traces = // layout =
if useDefaults then
// copy default instances so we can safely manipulate the respective objects of the created chart without changing global default objects
let defaultConfig = Config()
Defaults.DefaultConfig.CopyDynamicPropertiesTo defaultConfig
let defaultDisplayOpts = DisplayOptions()
Defaults.DefaultDisplayOptions.CopyDynamicPropertiesTo defaultDisplayOpts
let defaultTemplate = Template()
Defaults.DefaultTemplate.CopyDynamicPropertiesTo defaultTemplate
GenericChart.MultiChart(
traces,
Layout.init (
Width = Defaults.DefaultWidth,
Height = Defaults.DefaultHeight,
Template = (defaultTemplate :> DynamicObj)
),
defaultConfig,
defaultDisplayOpts
)
else
GenericChart.MultiChart(traces, Layout(), Config(), DisplayOptions.initCDNOnly ())
///
let mapLayout f gChart =
match gChart with
| Chart(trace, layout, config, displayOpts) -> Chart(trace, f layout, config, displayOpts)
| MultiChart(traces, layout, config, displayOpts) -> MultiChart(traces, f layout, config, displayOpts)
///
let mapConfig f gChart =
match gChart with
| Chart(trace, layout, config, displayOpts) -> Chart(trace, layout, f config, displayOpts)
| MultiChart(traces, layout, config, displayOpts) -> MultiChart(traces, layout, f config, displayOpts)
///
let mapDisplayOptions f gChart =
match gChart with
| Chart(trace, layout, config, displayOpts) -> Chart(trace, layout, config, f displayOpts)
| MultiChart(traces, layout, config, displayOpts) -> MultiChart(traces, layout, config, f displayOpts)
/// returns a single TraceID (when all traces of the charts are of the same type), or traceID.Multi if the chart contains traces of multiple different types
let getTraceID gChart =
match gChart with
| Chart(trace, _, _, _) -> TraceID.ofTrace trace
| MultiChart(traces, layout, config, displayOpts) -> TraceID.ofTraces traces
/// returns a list of TraceIDs representing the types of all traces contained in the chart.
let getTraceIDs gChart =
match gChart with
| Chart(trace, _, _, _) -> [ TraceID.ofTrace trace ]
| MultiChart(traces, _, _, _) -> traces |> List.map TraceID.ofTrace