-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdemo.html
99 lines (81 loc) · 2.4 KB
/
demo.html
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
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>lens-input-csv Demo</title>
<script src="../webcomponentsjs/webcomponents.js"></script>
<link rel="import" href="lens-input-csv.html">
<style>
body {
font-family: sans-serif;
font-size: 14px;
}
pre {
border: 1px solid #EEE;
font-size: 12px;
max-width: 300px;
max-height: 300px;
overflow: scroll;
}
#component {
border: 1px solid #BBB;
margin: 10px;
padding: 5px;
display: block;
width: 300px;
}
.component::before, .component::after {
content: '\2794';
position: absolute;
top: 50%;
}
.component::before {
right: -15px;
}
.component::after {
left: -15px;
}
section {
display: inline-block;
margin: 8px;
vertical-align: top;
position: relative;
}
html /deep/ input[is=core-input] {
border-bottom: 1px solid #E5E5E5 !important;
}
.count {
float: right;
font-size: 12px;
}
</style>
</head>
<body unresolved>
<template id="auto-bind-demo" is="auto-binding">
<script>
PolymerExpressions.prototype.json = function(object) {
return JSON.stringify(object, undefined, 2);
};
</script>
<p>CSV Data loader component to load and parse online CSV files. If the API returns JSON with a header followed by an array of results</p>
<p> Enter the URL to import a CSV, for example :</p>
<pre>assets/berlin.csv</pre>
<p> or </p>
<pre>assets/airports.csv</pre>
<p> or </p>
<pre>https://data.cityofnewyork.us/api/views/8hkx-uppz/rows.csv?accessType=DOWNLOAD</pre>
<section class="component">
<label>Component:</label>
<lens-input-csv id="component" output="{{myoutput}}"></lens-input-csv>
</section>
<section>
<label>CSV Output:</label><span class="count">{{myoutput.length}} records</span>
<pre>{{myoutput | json}}</pre>
</section>
<script>
var component = document.querySelector('#component');
component.url = 'https://data.cityofnewyork.us/api/views/8hkx-uppz/rows.csv?accessType=DOWNLOAD';
</script>
</template>
</body>
</html>