forked from toruta39/threejs-dash-gen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.coffee
247 lines (201 loc) · 7.06 KB
/
app.coffee
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
Q = require 'q'
fs = require 'fs'
vm = require 'vm'
util = require 'util'
ncp = require('ncp').ncp
es = require 'event-stream'
connect = require 'connect'
phantom = require 'phantom'
sqlite3 = require('sqlite3').verbose()
dbFile = 'threejs.docset/Contents/Resources/docSet.dsidx'
server = null
localServerPort = 9999
startLocalServer = ->
server = connect()
.use(connect.static 'threejs.docset/Contents/Resources/Documents')
.listen localServerPort
console.log "Local server started at http://localhost:#{localServerPort}"
prepareDocuments = ->
Q.Promise (resolve, reject)->
_rmrf = (path)->
_fileList = fs.readdirSync path
_fileList.forEach (file, index)->
filePath = "#{path}/#{file}"
if fs.statSync(filePath).isFile()
fs.unlinkSync filePath
else if fs.statSync(filePath).isDirectory()
_rmrf filePath
fs.rmdirSync path
# Clean the previous build
_rmrf 'threejs.docset/Contents/Resources/Documents'
# Copy docs folder
ncp 'three.js/docs', 'threejs.docset/Contents/Resources/docs',
{
transform: (read, write)->
if /\.html$/ig.test read.path
read = read
.pipe es.replace(
'<script src="../../page.js"></script>',
'<script src="../../page.js"></script>' +
'<script src="../../offline.js"></script>')
.pipe es.replace(
'<script src="../../../page.js"></script>',
'<script src="../../../page.js"></script>' +
'<script src="../../../offline.js"></script>')
.pipe es.replace(
'<script src="../../../../page.js"></script>',
'<script src="../../../../page.js"></script>' +
'<script src="../../../../offline.js"></script>')
.pipe es.replace(
'<script src="../../build/three.min.js"></script>',
'<script src="../three.min.js"></script>')
.pipe es.replace(
'<script src=\'../../examples/js/libs/dat.gui.min.js\'></script>',
'<script src=\'../dat.gui.min.js\'></script>')
read.pipe write
},
(err)->
if err then reject err
fs.renameSync 'threejs.docset/Contents/Resources/docs',
'threejs.docset/Contents/Resources/Documents'
console.log 'Preparation on Documents is done!'
resolve()
injectFiles = ->
Q.Promise (resolve)->
ncp 'files', 'threejs.docset/Contents/Resources/Documents', resolve
.then Q.Promise (resolve)->
ncp 'three.js/build/three.min.js', 'threejs.docset/Contents/Resources/Documents/three.min.js', resolve
.then Q.Promise (resolve)->
ncp 'three.js/examples/js/libs/dat.gui.min.js', 'threejs.docset/Contents/Resources/Documents/dat.gui.min.js', resolve
getPageListFromFiles = ->
docRoot = 'threejs.docset/Contents/Resources/Documents/api'
urlList = []
collectHTMLFiles = (path)->
_dirContent = fs.readdirSync path
for item in _dirContent
if /^\./.test item
else if /\.html|\.htm$/i.test item
urlList.push "#{path}/#{item}".replace(
/^threejs\.docset\/Contents\/Resources\/Documents\//gi, '')
else
collectHTMLFiles "#{path}/#{item}"
collectHTMLFiles docRoot
urlList
getPageListFromJSON = ->
Q.Promise (resolve)->
_data = {}
urlList = []
listJsContent = fs.readFileSync 'threejs.docset/Contents/Resources/' +
'Documents/list.js'
vm.runInNewContext listJsContent, _data
grabURLFromJSON = (obj)->
for i of obj
if typeof obj[i] is 'object'
grabURLFromJSON obj[i]
else
urlList.push obj[i] + '.html'
grabURLFromJSON _data.pages
resolve urlList
getData = (urlList)->
Q.Promise (resolve)->
_i = 0
data = []
phantom.create (ph)->
ph.createPage (page)->
_readPage = ->
page.open "http://localhost:#{localServerPort}/#{urlList[_i]}",
(status)->
page.evaluate ->
members = [].map.call document.querySelectorAll('.dashAnchor[id]'),
(el)->
type = el
while type.parentNode
break if type.parentNode.tagName is 'BODY'
type = type.parentNode
while type
break if type.tagName is 'H2'
type = type.previousElementSibling
if type
type = switch
when /properties/i.test type.innerText then 'Property'
when /methods/i.test type.innerText then 'Method'
else ''
if type
{
name: el.innerText
type: type
hash: el.id
}
else
false
members.filter (item)-> item
{
name: document.querySelector('h1').innerHTML
members: members
}
, (result)->
console.log "http://localhost:#{localServerPort}" +
"/#{urlList[_i]}: #{result.name}"
type = if urlList[_i].indexOf('manual/') is 0
then 'Guide'
else if ~urlList[_i].indexOf '/constants/'
then 'Constant'
else 'Class'
data.push
$name: result.name
$type: type
$path: urlList[_i]
if result.members.length
result.members.forEach (member)->
data.push
$name: "#{result.name}.#{member.name}"
$type: member.type
$path: "#{urlList[_i]}##{member.hash}"
if ++_i < urlList.length
_readPage()
else
ph.exit()
resolve data
_readPage()
writeSQLite = (data)->
Q.Promise (resolve)->
writeCount = 0
db = null
progress = (isRecordAdded)->
writeCount++ if isRecordAdded
if writeCount is data.length
console.log 'Finished writing db.'
db.close()
resolve()
fs.unlink dbFile, ->
db = new sqlite3.Database dbFile
db.serialize ->
db.run "CREATE TABLE searchIndex
(id INTEGER PRIMARY KEY, name TEXT, type TEXT, path TEXT);"
db.run "CREATE UNIQUE INDEX anchor ON searchIndex
(name, type, path);"
for item in data
if item.$name?
db.run "INSERT OR IGNORE INTO searchIndex(name, type, path)
VALUES (?, ?, ?);", [
item.$name
item.$type
item.$path
], ->
progress(true)
else
progress(true)
prepareDocuments()
.then injectFiles
.then startLocalServer
.then getPageListFromJSON
.then getData
.then writeSQLite
.then ->
server.close()
process.exit()
return
.catch (err)->
console.log err
return
.done()