Created
March 16, 2014 16:31
-
-
Save dvcrn/9585903 to your computer and use it in GitHub Desktop.
prerender script used for generating static pages for proxmate.me.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fs = require 'fs' | |
webpage = require 'webpage' | |
page = webpage.create() | |
renderedUrls = 0 | |
totalUrls = 0 | |
# Taken from https://github.com/ariya/phantomjs/blob/master/examples/waitfor.js | |
# Converted into coffee | |
waitFor = (testFx, onReady, timeOutMillis) -> | |
maxtimeOutMillis = (if timeOutMillis then timeOutMillis else 5000) #< Default Max Timout is 3s | |
start = new Date().getTime() | |
condition = false | |
interval = setInterval(-> | |
if (new Date().getTime() - start < maxtimeOutMillis) and not condition | |
# If not time-out yet and condition not yet fulfilled | |
condition = ((if typeof (testFx) is "string" then eval_(testFx) else testFx())) #< defensive code | |
else | |
unless condition | |
# If condition still not fulfilled (timeout but condition is 'false') | |
console.log "'waitFor()' timeout" | |
phantom.exit 1 | |
else | |
# Condition fulfilled (timeout and/or condition is 'true') | |
# console.log "'waitFor()' finished in " + (new Date().getTime() - start) + "ms." | |
(if typeof (onReady) is "string" then eval_(onReady) else onReady()) #< Do what it's supposed to do once the condition is fulfilled | |
clearInterval interval #< Stop this interval | |
return | |
, 250) #< repeat check every 250ms | |
return | |
prerenderUrls = (urls) -> | |
for url in urls | |
((url) -> | |
subPage = webpage.create() | |
subPage.open url, -> | |
# Wait until our container has been made visible from angularjs | |
# This only happens once all ajax requests are finished | |
# Returning false here will indicate that the page is not ready yet | |
waitFor(-> | |
return subPage.evaluate -> | |
if document.getElementsByClassName('container').length == 0 | |
return false | |
return document.getElementsByClassName('container')[0].offsetParent? | |
, -> | |
# Strip all javascript tags out of the page. We don't want them here. | |
content = subPage.content.replace(/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi, '') | |
# To quickly get the path of the url, we generate a tag and go over the href api | |
el = document.createElement('a') | |
el.href = url | |
path = "./dist#{el.pathname}.prerender.html" | |
# In case the website is a root page (a.k.a http://google.com/ and not google.com/index.html) | |
if el.pathname == '/' | |
path = "./dist/prerender.html" | |
fs.write(path, content, 'w+') | |
renderedUrls++ | |
console.info "Prerendered '#{url}' to '#{path}'" | |
subPage.close() | |
) | |
)(url) | |
page.open 'http://api.proxmate.me/url/list.json', -> | |
jsonSource = page.plainText | |
resultObject = JSON.parse(jsonSource) | |
totalUrls = resultObject.length | |
# Watcher to auto close phantom after all urls have been rendered | |
setInterval(-> | |
if totalUrls == renderedUrls | |
console.info "Prerendered #{renderedUrls} urls." | |
phantom.exit(0) | |
, 100) | |
prerenderUrls(resultObject) | |
page.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment