2023-07-12 02:29:15 +00:00
|
|
|
local ansikit = require 'ansikit'
|
2022-04-23 03:56:57 +00:00
|
|
|
local commander = require 'commander'
|
|
|
|
local fs = require 'fs'
|
|
|
|
local lunacolors = require 'lunacolors'
|
2023-04-12 00:44:29 +00:00
|
|
|
local Greenhouse = require 'nature.greenhouse'
|
|
|
|
local Page = require 'nature.greenhouse.page'
|
2022-04-23 03:56:57 +00:00
|
|
|
|
2023-01-20 23:07:42 +00:00
|
|
|
commander.register('doc', function(args, sinks)
|
2022-04-23 03:56:57 +00:00
|
|
|
local moddocPath = hilbish.dataDir .. '/docs/'
|
2023-02-05 17:02:50 +00:00
|
|
|
local stat = pcall(fs.stat, '.git/refs/heads/extended-job-api')
|
2023-01-07 18:01:57 +00:00
|
|
|
if stat then
|
|
|
|
-- hilbish git
|
|
|
|
moddocPath = './docs/'
|
|
|
|
end
|
2022-04-23 03:56:57 +00:00
|
|
|
|
2023-01-18 10:39:26 +00:00
|
|
|
local modules = table.map(fs.readdir(moddocPath), function(f)
|
|
|
|
return lunacolors.underline(lunacolors.blue(string.gsub(f, '.md', '')))
|
|
|
|
end)
|
|
|
|
local doc = [[
|
|
|
|
Welcome to Hilbish's documentation viewer! Here you can find
|
|
|
|
documentation for builtin functions and other things related
|
|
|
|
to Hilbish.
|
|
|
|
|
|
|
|
Usage: doc <section> [subdoc]
|
|
|
|
Available sections: ]] .. table.concat(modules, ', ')
|
2023-07-12 02:29:15 +00:00
|
|
|
local vals = {}
|
|
|
|
|
2022-04-23 03:56:57 +00:00
|
|
|
if #args > 0 then
|
|
|
|
local mod = args[1]
|
|
|
|
|
2022-12-15 04:00:54 +00:00
|
|
|
local f = io.open(moddocPath .. mod .. '.md', 'rb')
|
2022-04-23 03:56:57 +00:00
|
|
|
local funcdocs = nil
|
2022-12-20 05:38:19 +00:00
|
|
|
local subdocName = args[2]
|
2022-04-23 03:56:57 +00:00
|
|
|
if not f then
|
|
|
|
moddocPath = moddocPath .. mod .. '/'
|
|
|
|
if not subdocName then
|
2022-12-20 05:38:19 +00:00
|
|
|
subdocName = '_index'
|
2022-04-23 03:56:57 +00:00
|
|
|
end
|
2022-12-15 04:00:54 +00:00
|
|
|
f = io.open(moddocPath .. subdocName .. '.md', 'rb')
|
2023-07-12 02:27:11 +00:00
|
|
|
local oldmoddocPath = moddocPath
|
2023-01-07 17:54:08 +00:00
|
|
|
if not f then
|
2023-07-12 00:56:24 +00:00
|
|
|
moddocPath = moddocPath .. subdocName:match '%w+' .. '/'
|
|
|
|
f = io.open(moddocPath .. subdocName .. '.md', 'rb')
|
2023-01-07 17:54:08 +00:00
|
|
|
end
|
2022-12-20 05:38:19 +00:00
|
|
|
if not f then
|
2023-07-12 00:56:24 +00:00
|
|
|
moddocPath = oldmoddocPath .. subdocName .. '/'
|
2022-12-20 05:42:58 +00:00
|
|
|
subdocName = args[3] or '_index'
|
|
|
|
f = io.open(moddocPath .. subdocName .. '.md', 'rb')
|
2022-12-20 05:38:19 +00:00
|
|
|
end
|
2022-04-23 03:56:57 +00:00
|
|
|
if not f then
|
2023-01-20 23:07:42 +00:00
|
|
|
sinks.out:writeln('No documentation found for ' .. mod .. '.')
|
2023-01-07 18:02:21 +00:00
|
|
|
return 1
|
2022-04-23 03:56:57 +00:00
|
|
|
end
|
|
|
|
end
|
2022-12-20 05:38:19 +00:00
|
|
|
funcdocs = f:read '*a':gsub('-([%d]+)', '%1')
|
2023-01-20 22:43:46 +00:00
|
|
|
local moddocs = table.filter(fs.readdir(moddocPath), function(f) return f ~= '_index.md' and f ~= 'index.md' end)
|
2022-12-20 05:38:19 +00:00
|
|
|
local subdocs = table.map(moddocs, function(fname)
|
|
|
|
return lunacolors.underline(lunacolors.blue(string.gsub(fname, '.md', '')))
|
|
|
|
end)
|
2023-01-20 22:43:46 +00:00
|
|
|
if #moddocs ~= 0 then
|
2023-07-12 02:29:15 +00:00
|
|
|
funcdocs = funcdocs .. '\nSubdocs: ' .. table.concat(subdocs, ', ') .. '\n\n'
|
2022-04-23 03:56:57 +00:00
|
|
|
end
|
2022-12-20 05:38:19 +00:00
|
|
|
|
2022-12-15 04:00:54 +00:00
|
|
|
local valsStr = funcdocs:match '%-%-%-\n([^%-%-%-]+)\n'
|
|
|
|
if valsStr then
|
|
|
|
local _, endpos = funcdocs:find('---\n' .. valsStr .. '\n---\n\n', 1, true)
|
|
|
|
funcdocs = funcdocs:sub(endpos + 1, #funcdocs)
|
|
|
|
|
|
|
|
-- parse vals
|
|
|
|
local lines = string.split(valsStr, '\n')
|
|
|
|
for _, line in ipairs(lines) do
|
|
|
|
local key = line:match '(%w+): '
|
|
|
|
local val = line:match '^%w+: (.-)$'
|
|
|
|
|
2022-12-20 05:38:19 +00:00
|
|
|
if key then
|
|
|
|
vals[key] = val
|
|
|
|
end
|
2022-12-15 04:00:54 +00:00
|
|
|
end
|
|
|
|
end
|
2023-01-18 10:39:26 +00:00
|
|
|
doc = funcdocs:sub(1, #funcdocs - 1)
|
2022-04-23 03:56:57 +00:00
|
|
|
f:close()
|
|
|
|
end
|
|
|
|
|
2023-04-12 00:44:29 +00:00
|
|
|
local gh = Greenhouse(sinks.out)
|
2023-07-12 02:29:15 +00:00
|
|
|
function gh:resize()
|
|
|
|
local size = terminal.size()
|
|
|
|
self.region = {
|
|
|
|
width = size.width,
|
|
|
|
height = size.height - 3
|
|
|
|
}
|
|
|
|
end
|
|
|
|
gh:resize()
|
|
|
|
|
|
|
|
function gh:render()
|
|
|
|
local workingPage = self.pages[self.curPage]
|
|
|
|
local offset = self.offset
|
|
|
|
if self.isSpecial then
|
|
|
|
offset = self.specialOffset
|
|
|
|
workingPage = self.specialPage
|
|
|
|
end
|
|
|
|
|
|
|
|
self.sink:write(ansikit.getCSI(self.region.height + 2 .. ';1', 'H'))
|
|
|
|
if not self.isSpecial then
|
|
|
|
if args[1] == 'api' then
|
|
|
|
self.sink:writeln(lunacolors.reset(string.format('%s', vals.title)))
|
2023-10-25 00:10:53 +00:00
|
|
|
self.sink:write(lunacolors.format(string.format('{grayBg} ↳ {white}{italic}%s {reset}', vals.description or 'No description.')))
|
2023-07-12 02:29:15 +00:00
|
|
|
else
|
|
|
|
self.sink:write(lunacolors.reset(string.format('Viewing doc page %s', moddocPath)))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2023-01-18 10:39:26 +00:00
|
|
|
local backtickOccurence = 0
|
2023-07-12 00:24:20 +00:00
|
|
|
local page = Page(nil, lunacolors.format(doc:gsub('`', function()
|
2023-01-18 10:39:26 +00:00
|
|
|
backtickOccurence = backtickOccurence + 1
|
|
|
|
if backtickOccurence % 2 == 0 then
|
|
|
|
return '{reset}'
|
|
|
|
else
|
|
|
|
return '{underline}{green}'
|
|
|
|
end
|
2023-02-10 21:03:03 +00:00
|
|
|
end):gsub('\n#+.-\n', function(t)
|
2023-01-18 10:39:26 +00:00
|
|
|
local signature = t:gsub('<.->(.-)</.->', '{underline}%1'):gsub('\\', '<')
|
|
|
|
return '{bold}{yellow}' .. signature .. '{reset}'
|
|
|
|
end)))
|
2023-04-12 00:44:29 +00:00
|
|
|
gh:addPage(page)
|
2023-07-12 02:29:15 +00:00
|
|
|
ansikit.hideCursor()
|
2023-04-12 00:44:29 +00:00
|
|
|
gh:initUi()
|
2022-04-23 03:56:57 +00:00
|
|
|
end)
|