-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocs.fsx
More file actions
319 lines (248 loc) · 9.97 KB
/
Copy pathdocs.fsx
File metadata and controls
319 lines (248 loc) · 9.97 KB
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
#r "nuget: Fake.IO.FileSystem, 6.0.0"
#r "nuget: FSharp.SystemTextJson, 0.17.4"
#r "nuget: Markdig, 0.33.0"
open System
open System.IO
open System.Text.RegularExpressions
open System.Text.Json
open System.Text.Json.Serialization
open Fake.IO
open Fake.IO.FileSystemOperators
open Fake.IO.Globbing.Operators
open Markdig
open Markdig.Parsers
open Markdig.Renderers
type Segment =
| Html of string
| Demo of string
type DocBrief =
{
Id: Guid option
Name: string
Names: Map<string, string>
FolderName: string
LastModified: DateTime
LangSegments: Map<string, Segment list>
}
[<RequireQualifiedAccess>]
type DocTreeNode =
| Category of index: DocBrief * files: DocBrief list * childNodes: DocTreeNode list
| Doc of doc: DocBrief
// TODO: refactor below messy code
module internal DocsHelper =
[<Literal>]
let INDEX = "README"
[<Literal>]
let DefaultLang = "en"
let toJson x =
let options = JsonSerializerOptions()
options.WriteIndented <- true
options.Converters.Add(JsonFSharpConverter())
JsonSerializer.Serialize(x, options)
let private isMainFile (file: string) = (Path.GetFileName file).Equals(INDEX + ".md", StringComparison.OrdinalIgnoreCase)
let private isExpectedFile ext (file: string) = not((Path.GetFileName file).StartsWith(INDEX, StringComparison.OrdinalIgnoreCase)) && file.EndsWith(ext, StringComparison.OrdinalIgnoreCase)
let private formatUrl (url: string) = url.Replace(@"\", @"/")
let markdownToHtml baseUrl (markdown: string) =
let pipeline = MarkdownPipelineBuilder().UseAdvancedExtensions().Build()
use writer = new StringWriter()
let renderer = new HtmlRenderer(writer)
renderer.LinkRewriter <-
fun url ->
let index = url.IndexOf("assets/", StringComparison.OrdinalIgnoreCase)
if index > -1 then
baseUrl + url.Substring(index)
elif url.StartsWith("http://", StringComparison.CurrentCultureIgnoreCase) then
url
elif url.StartsWith("https://", StringComparison.CurrentCultureIgnoreCase) then
url
else
baseUrl + url
pipeline.Setup(renderer)
let document = MarkdownParser.Parse(markdown, pipeline)
renderer.Render(document) |> ignore
writer.Flush()
writer.ToString()
let markdownToSegments baseUrl (rootDir: string) file =
let dir = Path.getDirectory file
let fileName = Path.GetFileNameWithoutExtension file
let content = File.readAsString file
let results = Regex("{{([^{][\S]+)}}").Matches(content)
File.delete file
let mutable lastIndex = 0
let mutable index = 0
let makeSegFileName () = dir </> fileName + (if index = 0 then "" else "-" + string index) + ".html"
let makeRelativeSegFileName () = makeSegFileName().Substring(rootDir.Length + 1)
[
for result in results do
let demo = result.Groups[1].Value
content.Substring(lastIndex, result.Index - lastIndex)
|> markdownToHtml baseUrl
|> File.writeString false (makeSegFileName ())
yield Html(makeRelativeSegFileName () |> formatUrl)
yield Demo demo
index <- index + 1
lastIndex <- result.Index + result.Value.Length
if lastIndex < content.Length - 1 then
let html = content.Substring(lastIndex) |> markdownToHtml baseUrl
if String.IsNullOrWhiteSpace html |> not then
File.writeString false (makeSegFileName ()) html
yield Html(makeRelativeSegFileName () |> formatUrl)
]
let generateDocBrief baseUrl rootDir (file: string) =
let docId =
File.ReadLines file
|> Seq.tryHead
|> Option.bind (fun x ->
match Guid.TryParse x with
| true, x -> Some x
| _ -> None
)
let getDocName (file: string) =
File.ReadLines file
|> if docId.IsSome then Seq.skip 1 else id
|> Seq.tryHead
|> Option.map (fun x ->
if x.StartsWith "#" && x.Length > 1 then
x.Substring(1, x.Length - 1).Trim()
else
x.Trim()
)
|> Option.defaultValue ""
let getLang (file: string) =
file
|> Path.GetFileNameWithoutExtension
|> Path.GetExtension
|> fun x -> if String.IsNullOrEmpty x then DefaultLang else x.Substring(1)
let dir = Path.getDirectory file
let filename =
file |> Path.GetFileNameWithoutExtension |> Path.GetFileNameWithoutExtension
let files = Directory.GetFiles(dir, $"{filename}*.md")
let fileInfo = FileInfo file
{
Id = docId
Name = getDocName file
Names = files |> Seq.map (fun f -> getLang f, getDocName f) |> Map.ofSeq
FolderName = file |> Path.GetDirectoryName |> Path.GetFileName
LastModified = fileInfo.LastWriteTimeUtc
LangSegments =
files
|> Seq.map (fun file ->
getLang file, markdownToSegments baseUrl rootDir file
)
|> Map.ofSeq
}
let sortDocNodeByName =
function
| DocTreeNode.Category (d, _, _)
| DocTreeNode.Doc d -> d.Name
let sortDocNodeByFolderName =
function
| DocTreeNode.Category (d, _, _)
| DocTreeNode.Doc d -> d.FolderName
let rec sortDocNodesByDesc (nodes: DocTreeNode list) =
nodes
|> List.sortByDescending sortDocNodeByName
|> List.map (
function
| DocTreeNode.Category (d, docs, nodes) ->
DocTreeNode.Category(d, docs |> List.sortByDescending (fun x -> x.Name), sortDocNodesByDesc nodes)
| x -> x
)
let rec getDocTree baseUrl rootDir (ext: string) (dir: string) =
let files = Directory.GetFiles dir
let dirs = Directory.GetDirectories dir |> Seq.toList
let mainFiles, otherFiles =
files
|> Seq.fold
(fun (main, other) f ->
if isMainFile f then f :: main, other
elif isExpectedFile ext f then main, f :: other
else main, other
)
([], [])
let otherFiles =
otherFiles
|> Seq.groupBy (fun x -> x.Split('.')[0])
// Just get the default lang file, other lang should be ignored
|> Seq.map (fun (_, g) -> g |> Seq.find (fun f -> Path.GetFileName(f).Split('.').Length = 2))
|> Seq.toList
match mainFiles, dirs, otherFiles with
| [], _ :: _, _ -> dirs |> List.map (getDocTree baseUrl rootDir ext) |> List.concat
| _ :: _, [], [] ->
[
DocTreeNode.Doc(mainFiles |> List.map (generateDocBrief baseUrl rootDir) |> List.item 0)
]
| head :: _, _, _ ->
let doc = generateDocBrief baseUrl rootDir head
let isReleaseFolder =
doc.LangSegments
|> Map.toSeq
|> Seq.map snd
|> Seq.concat
|> Seq.exists (
function
| Html x -> x.Contains("Release", StringComparison.OrdinalIgnoreCase)
| _ -> false
)
let files =
otherFiles
|> List.map (generateDocBrief baseUrl rootDir)
|> if isReleaseFolder then
List.sortByDescending (fun x -> x.Name)
else
List.sortBy (fun x -> x.FolderName)
let childs =
dirs
|> List.map (getDocTree baseUrl rootDir ext)
|> List.concat
|> List.sortBy sortDocNodeByFolderName
[ DocTreeNode.Category(doc, files, childs) ]
| _ -> []
module DocBuilder =
let wasm = __SOURCE_DIRECTORY__ </> "Fun.Blazor.Docs.Wasm"
let wwwroot = wasm </> "wwwroot"
let demos = "Demos"
let docs = "Docs"
let baseUrl = "Docs/"
let build () =
printfn "Process demos"
Shell.cleanDir (wwwroot </> demos)
Shell.copyDir (wwwroot </> demos) (wasm </> demos) (fun _ -> true)
let demosStr =
!!(wwwroot </> demos </> "**" </> "*.*")
|> Seq.toList
|> List.map (fun file ->
let dir = Path.getDirectory file
let name = Path.GetFileNameWithoutExtension(file)
let code =
File.ReadAllLines file
|> Seq.skip 3
|> String.concat "\n"
|> fun x -> x.Trim()
|> sprintf "```fsharp\n%s\n```\n"
DocsHelper.markdownToHtml baseUrl code |> File.writeString false (dir </> name + ".html")
File.delete file
$""" "{name}", {{ View = {name}.entry; Source = "{demos + "/" + name + ".html"}" }}"""
)
|> String.concat "\n"
printfn "Process docs"
Shell.cleanDir (wwwroot </> docs)
Shell.copyDir (wwwroot </> docs) (__SOURCE_DIRECTORY__ </> docs) (fun _ -> true)
let docsDir = wwwroot </> docs
DocsHelper.getDocTree baseUrl docsDir ".md" docsDir
|> List.sortBy DocsHelper.sortDocNodeByFolderName
|> DocsHelper.toJson
|> File.writeString false (docsDir </> "index.json")
File.writeString
false
(wasm </> "DemoMaps.fs")
$"""// hot-reload
// Auto generated file, please do nto change it manually
[<AutoOpen>]
module Fun.Blazor.Docs.Wasm.DemoMaps
open Fun.Blazor.Docs.Wasm.Demos
let demos =
Map.ofList [
{demosStr}
]
"""