-
Notifications
You must be signed in to change notification settings - Fork 29
/
index.js
122 lines (106 loc) · 3.51 KB
/
index.js
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
'use strict';
const $ = document.querySelector.bind(document);
const replaceSocialIcons = container => {
[...container.children].forEach(child => {
fetch('images/icons/' + child.className + '.svg')
.then(response => response.text())
.then(svg => {
child.innerHTML = svg;
});
});
};
const fetchEvents = () =>
new Promise((resolve, reject) => {
const callbackId = `__callback__${Date.now()}`;
const script = document.createElement('script');
window[callbackId] = resolve;
script.src = `//api.meetup.com/LimaJS/events?callback=${callbackId}`;
script.onerror = reject;
document.body.appendChild(script);
});
const buildRegistrationButton = (link = '#', container) => {
container.setAttribute('href', link);
};
const buildScheduleTitle = ({ time, venue: { lat, lon, name } }) => {
const container = $('[data-js="section-title"]');
const venue = container.querySelector('.venue');
const month = container.querySelector('.month');
const monthFromDate = new Date(time).toLocaleDateString('es', { month: 'long' });
const gMapsFromLatLong = `//maps.google.com/?q=${lat},${lon}`;
venue.innerText = name;
venue.setAttribute('href', gMapsFromLatLong);
month.innerText = monthFromDate;
};
const buildSchedule = container =>
fetchEvents()
.then(({ data: content }) => {
container.innerHTML += snarkdown(content[0].description);
return content[0];
})
.catch(console.error.bind(console));
const buildSponsors = container => {
fetch('./SPONSORS.md')
.then(response => response.text())
.then(markdown => {
const sponsorsList = snarkdown(markdown).split('</a>');
sponsorsList.map(sponsor => {
if(sponsor.length > 0) {
const item = `
<div class="item">
<div class="image">
${sponsor}
<div/>
<div/>`;
container.innerHTML += item;
}
})
});
};
const formatDateTimeToGCalendar = dateTime => {
return dateTime
.toISOString()
.split('-')
.join('')
.split(':')
.join('')
.split('.000')
.join('');
};
const addToCalendarLink = ({ container, content: { time, duration } }) => {
const baseURL = 'https://calendar.google.com/calendar/r/eventedit';
const eventName = 'Lima JS';
const startDateTime = formatDateTimeToGCalendar(new Date(time));
const endDateTime = formatDateTimeToGCalendar(new Date(time + duration));
const link = `${baseURL}?text=${eventName}&dates=${startDateTime}/${endDateTime}`;
container.setAttribute('href', link);
};
const main = () => {
replaceSocialIcons($('div.social'));
replaceSocialIcons($('div.social-footer'));
buildSchedule($('div.LimaJS-schedule'))
.then(content => {
addToCalendarLink({ container: $('a.add-to-calendar'), content });
return content;
})
.then( content =>
buildRegistrationButton(content.link, $('[data-js="registration-button"]')) || content,
)
.then(content => buildScheduleTitle(content));
buildSponsors($('div.sponsors'));
};
window.addEventListener('load', main);
(function(l, i, m, a, _, j, s) {
l['GoogleAnalyticsObject'] = _;
(l[_] =
l[_] ||
function() {
(l[_].q = l[_].q || []).push(arguments);
}),
(l[_].l = 1 * new Date());
(j = i.createElement(m)), (s = i.getElementsByTagName(m)[0]);
j.async = 1;
j.src = a;
s.parentNode.insertBefore(j, s);
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-37026516-1', 'auto');
ga('send', 'pageview');