This repository has been archived by the owner on Oct 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
index.js
165 lines (144 loc) · 5.03 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
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
/**
* Thimble Remix and Analytics injection, automatically
* added to published projects.
*/
(function(document, head) {
var gaTrackingId = "UA-68630113-1";
function injectAnalytics() {
var analytics = document.createElement("script");
analytics.textContent =
"(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){\n" +
"(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\n" +
"m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\n" +
"})(window,document,'script','//www.google-analytics.com/analytics.js','ga');\n" +
"ga('create', '" +
gaTrackingId +
"', 'auto');\n" +
"ga('send', 'pageview');\n";
head.appendChild(analytics);
}
function setupBar(err) {
if (err) {
console.log(
"[Thimble Error] Unable to inject Remix UI. Error was: ",
err
);
return;
}
var detailsBar = document.querySelector(".details-bar");
if (!detailsBar) {
return;
}
detailsBar.setAttribute("style", "");
detailsBar.classList.add("mouse-mode");
detailsBar
.querySelector(".details-bar-remix-button")
.addEventListener("click", function() {
var projectMetaEl = document.head.querySelector(
"[name=data-remix-projectId]"
);
if (projectMetaEl) {
var projectID = projectMetaEl.getAttribute("content") || false;
if (projectID && typeof window.ga === "function") {
window.ga("send", {
hitType: "event",
eventCategory: "Remix Bar",
eventAction: "Project Remixed",
eventLabel: parseInt(projectID)
});
}
}
});
detailsBar.addEventListener("click", function(event) {
if (event.target.classList.contains("thimble-button")) {
detailsBar.classList.remove("collapsed");
event.stopPropagation();
}
});
detailsBar.addEventListener("click", function(event) {
if (event.target.classList.contains("close-details-bar")) {
detailsBar.classList.add("collapsed");
event.stopPropagation();
}
});
document
.querySelector(".mouse-mode")
.addEventListener("mouseenter", function() {
detailsBar.classList.remove("collapsed");
});
document
.querySelector(".mouse-mode")
.addEventListener("mouseleave", function() {
detailsBar.classList.add("collapsed");
});
}
function injectDetailsBar(metadata, callback) {
var request = new XMLHttpRequest();
var url = metadata.host + "/projects/remix-bar";
var data = {
host: metadata.host,
id: metadata.projectId,
title: metadata.projectTitle,
author: metadata.projectAuthor,
updated: metadata.dateUpdated
};
request.onreadystatechange = function() {
if (request.readyState === XMLHttpRequest.DONE) {
var response = request.response;
if (request.status !== 200) {
return callback({ status: request.status, response: response });
}
document
.querySelector("body")
.insertAdjacentHTML("afterbegin", response);
callback(null);
}
};
var querystring = Object.keys(data)
.map(function(key) {
return encodeURIComponent(key) + "=" + encodeURIComponent(data[key]);
})
.join("&");
url = url + "?" + querystring;
request.open("GET", url);
request.send();
}
function injectStyleSheets(metadata) {
var stylesheet = document.createElement("link");
stylesheet.rel = "stylesheet";
stylesheet.href = metadata.host + "/resources/remix/clean-slate.min.css";
document.head.appendChild(stylesheet);
stylesheet = document.createElement("link");
stylesheet.rel = "stylesheet";
stylesheet.href = metadata.host + "/resources/stylesheets/remix.css";
document.head.appendChild(stylesheet);
}
function hasDataRemixAttribute(element) {
var name = element.getAttribute("name");
return /^data-remix-.+/.test(name);
}
function getMetadata() {
var metadata = {};
var metaElements = document.getElementsByTagName("meta");
var remixElements = Array.prototype.filter.call(
metaElements,
hasDataRemixAttribute
);
remixElements.forEach(function(metaElement) {
var key = metaElement.getAttribute("name").replace("data-remix-", "");
// We see if a value for the current attribute already exists.
// If it does, that means that we already encountered a meta tag
// with that name which will refer to a more recent value than the
// current one (we add the most recent values above all other values in
// the <head> tag's contents).
metadata[key] = metadata[key] || metaElement.getAttribute("content");
});
return metadata;
}
document.addEventListener("DOMContentLoaded", function() {
var metadata = getMetadata();
injectAnalytics();
injectStyleSheets(metadata);
injectDetailsBar(metadata, setupBar);
});
})(document, document.head);