-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDocs.hs
124 lines (107 loc) · 3.88 KB
/
Docs.hs
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
{-# LANGUAGE QuasiQuotes #-}
module Main where
{- This isn't meant for end users. It's just an easy way to keep
- the module reference on the website in sync with the actual code.
-
- Run the docs binary to update:
- templates/reference.md
-}
import OrthoLang.Core.Types
import Data.List.Split (splitOn)
import Data.List.Utils (join)
import OrthoLang.Modules (modules)
import Data.Char (toLower, isAlphaNum)
import Data.List (nub)
import System.FilePath ((</>), (<.>))
import Paths_OrthoLang (getDataFileName)
import Control.Monad (when)
import System.Directory (doesFileExist)
explainType :: OrthoLangType -> String
explainType Empty = error "explain empty type"
explainType (ListOf t) = explainType t -- TODO add the list part?
explainType (ScoresOf t) = explainType t -- TODO add the scores part?
explainType t = "| " ++ addHelpLink (extOf t) ++ " | " ++ mdEscape (descOf t) ++ " |"
-- TODO these aren't functions!
typesTable :: OrthoLangModule -> [String]
typesTable m = if null (mTypes m) then [""] else
[ "Types:"
, ""
, "| Name | Meaning |"
, "| :-------- | :------ |"
]
++ map explainType (mTypes m)
++ [""]
addHelpLink :: String -> String
addHelpLink name =
"<a href=\"javascript:;\" onclick=\"help_and_scripts('" ++ n ++ "')\">`" ++ name ++ "`</a>"
where
n = mdEscape name
mdEscape :: String -> String
mdEscape [] = []
mdEscape (c:cs) = escaped ++ mdEscape cs
where
escaped = if c `elem` special then ['\\', c] else [c]
special = "|"
explainFunction :: OrthoLangFunction -> String
explainFunction = join " | " . cols
where
cols f = [addHelpLink $ head $ fNames f, quoted $ last $ splitOn ":" $ fTypeDesc f]
quoted t = "`" ++ t ++ "`"
functionsTable :: OrthoLangModule -> [String]
functionsTable m = if null (mFunctions m) then [""] else
[ "Functions:"
, ""
, "| Name | Type |"
, "| :--- | :--- |"
]
++ map (\f -> "| " ++ explainFunction f ++ " |") (mFunctions m)
++ [""]
loadExample :: OrthoLangModule -> [String]
loadExample m = ["{{ macros.load_script(user, 'examples/scripts/" ++ name ++ ".ol') }}"]
where
name = filter isAlphaNum $ map toLower $ mName m
-- TODO only use this as default if there's no custom markdown description written?
-- TODO or move that stuff to the tutorial maybe?
moduleReference :: OrthoLangModule -> [String]
moduleReference m =
[ "### " ++ mName m
, ""
, mDesc m ++ "."
, ""
]
++ typesTable m
++ functionsTable m
++ ["<br/>"]
++ loadExample m
writeModuleReference :: OrthoLangModule -> IO ()
writeModuleReference m = writeFile path $ unlines $ moduleReference m
where
path = "templates/functions_" ++ mName m ++ ".md"
writeFunctionsTab :: IO ()
-- writeFunctionsTab = writeFile "templates/functions.md" $
-- functionsHeader (pack $ showVersion version) ++ unlines (concatMap moduleReference modules)
writeFunctionsTab = mapM_ writeModuleReference modules
-- this is just for calling manually during development
-- TODO move to Reference.hs?
writeDocPlaceholders :: [OrthoLangModule] -> IO ()
writeDocPlaceholders mods = do
docs <- getDataFileName "docs"
mapM_ (writePlaceholder docs) names
where
names = nub $ mNames ++ fnames ++ tNames
mNames = map (\m -> "modules" </> mName m) mods
-- for now, i just create the infix operator docs manually
fnames = map (\f -> "functions" </> (head $ fNames f)) $ filter (\f -> fFixity f == Prefix) $ concat $ map mFunctions mods
tNames = map (\t -> "types" </> extOf t) $ concat $ map mTypes mods
writePlaceholder :: FilePath -> FilePath -> IO ()
writePlaceholder docsDir name = do
let path = docsDir </> name <.> "txt"
written <- doesFileExist path
when (not written) $ do
putStrLn path
writeFile path $ "doc for " ++ name ++ " not written yet"
-- TODO take one argument like: ortholang-docs ~/ortholang-demo/templates/reference.md
main :: IO ()
main = do
writeDocPlaceholders modules
writeFunctionsTab