模块:LineList:修订间差异

来自临东市服务器Wiki
无编辑摘要
无编辑摘要
 
(未显示同一用户的24个中间版本)
第1行: 第1行:
--
-- 柠檬写的 230909
-- For 临东定制
--
local p = {}
local p = {}


function p.infobox(frame)
function p.infobox(frame)
    local args = frame:getParent().args
local args = frame:getParent().args
    local lineName = args.Name or ""
local lineName = args.Name
    local lineColor = args.Color or "gray"
local lineColor = args.Color
    local company = args.Company or ""
local company = args.Company
    local ticket = args.Ticket or ""
local ticket = args.Ticket
    local firstTrain = args.FirstTrain or ""
local firstTrain = args.FirstTrain
    local lastTrain = args.LastTrain or ""
local lastTrain = args.LastTrain
 
    local output = mw.html.create("div")
local output = mw.html.create("div")
    output:addClass("infobox-card")
output:addClass("infobox-card")
 
    local header = output:tag("div"):addClass("header")
if args.Clear ~= nil then
    header:tag("div"):addClass("line-name"):wikitext(lineName)
output:cssText('clear: unset;')
 
end
    local detail = header:tag("div"):addClass("detail")
    detail:tag("div"):addClass("company"):wikitext(company)
local header = output:tag("div"):addClass("header")
 
header:tag("div"):addClass("line-name"):wikitext(lineName)
    local time = header:tag("div"):addClass("time")
    time:tag("div"):addClass("first-train"):wikitext(firstTrain)
local detail = header:tag("div"):addClass("detail")
    time:tag("div"):addClass("last-train"):wikitext(lastTrain)
detail:tag("div"):addClass("company"):wikitext(company)
    time:tag("div"):addClass("ticket"):wikitext(ticket)
 
local time = header:tag("div"):addClass("time")
    local stationList = output:tag("ul"):addClass("station-list")
time:tag("div"):addClass("first-train"):wikitext(firstTrain)
 
time:tag("div"):addClass("last-train"):wikitext(lastTrain)
    local stationIndex = 1
time:tag("div"):addClass("ticket"):wikitext(ticket)
    local insertedLine = false
    while args["Sta" .. stationIndex] do
local stationList = output:tag("ul"):addClass("station-list")
        local stationInfo = args["Sta" .. stationIndex]
if args.Direction then
        local staName = mw.ustring.match(stationInfo, "([^|]+)")
local direction = args.Direction
       
stationList:tag("div"):addClass("direction"):wikitext(direction)
        if staName then
end
            if not insertedLine then
stationList:wikitext("<div class='line' style='background-color:" .. lineColor .. ";'></div>")
                insertedLine = true
                li:done()
local maxStationIndex = 0
                stationList:wikitext("<div class='line' style='background-color:" .. lineColor .. ";'></div>")
for key, _ in pairs(args) do
            end
local stationIndex = tonumber(key:match("^Sta(%d+)$"))
           
if stationIndex and stationIndex > maxStationIndex then
            local li = stationList:tag("li")
maxStationIndex = stationIndex
            local stationDiv = li:tag("div"):addClass("name"):wikitext(staName)
end
           
end
            -- local transferInfo = mw.ustring.match(stationInfo, "|(.+)")
            -- if transferInfo then
for stationIndex = 1, maxStationIndex do
            --    local transferDiv = stationDiv:tag("div"):addClass("transfer")
local stationInfo = args["Sta" .. stationIndex]
            --    for transfer in mw.ustring.gmatch(transferInfo, "([^/]+)") do
if stationInfo then
            --         local line, color = mw.ustring.match(transfer, "(.+)%+(%w+)")
local li = stationList:tag("li")
            --         if line and color then
local stationDiv = li:tag("div"):addClass("name")
            --             local transferLineDiv = transferDiv:tag("div")
local stationDivCircle = stationDiv:tag("div"):addClass("circle"):cssText('border: 4px solid ' .. lineColor .. ';')
            --            transferLineDiv:tag("div"):wikitext(line)
local expandedText = frame:preprocess(stationInfo)
            --            transferLineDiv:tag("div"):css("background-color", color)
stationDiv:wikitext(expandedText)
            --        end
            --    end
-- 未开放
            -- end
if args["Sta" .. stationIndex .. "Unopen"] then
        end
stationDiv:cssText('color: var(--color-base--subtle);')
 
stationDivCircle:cssText('border: 4px solid var(--color-surface-4);')
        stationIndex = stationIndex + 1
end
    end
 
-- 单向运营
    return tostring(output)
local way = args["Sta" .. stationIndex .. "Way"]
if way then
if string.lower(way) == "up" then
stationDiv:addClass("dir-tag__up")
elseif string.lower(way) == "down" then
stationDiv:addClass("dir-tag__down")
end
end
end
end
return tostring(output)
end
end


return p
return p

2023年9月12日 (二) 23:44的最新版本


--
-- 柠檬写的 230909
-- For 临东定制
--

local p = {}

function p.infobox(frame)
	local args = frame:getParent().args
	local lineName = args.Name
	local lineColor = args.Color
	local company = args.Company
	local ticket = args.Ticket
	local firstTrain = args.FirstTrain
	local lastTrain = args.LastTrain
	
	local output = mw.html.create("div")
	output:addClass("infobox-card")
	
	if args.Clear ~= nil then
		output:cssText('clear: unset;')
	end
	
	local header = output:tag("div"):addClass("header")
	header:tag("div"):addClass("line-name"):wikitext(lineName)
	
	local detail = header:tag("div"):addClass("detail")
	detail:tag("div"):addClass("company"):wikitext(company)
	
	local time = header:tag("div"):addClass("time")
	time:tag("div"):addClass("first-train"):wikitext(firstTrain)
	time:tag("div"):addClass("last-train"):wikitext(lastTrain)
	time:tag("div"):addClass("ticket"):wikitext(ticket)
	
	local stationList = output:tag("ul"):addClass("station-list")
	if args.Direction then
		local direction = args.Direction
		stationList:tag("div"):addClass("direction"):wikitext(direction)
	end
	stationList:wikitext("<div class='line' style='background-color:" .. lineColor .. ";'></div>")
	
	local maxStationIndex = 0
	for key, _ in pairs(args) do
		local stationIndex = tonumber(key:match("^Sta(%d+)$"))
		if stationIndex and stationIndex > maxStationIndex then
			maxStationIndex = stationIndex
		end
	end
	
	for stationIndex = 1, maxStationIndex do
		local stationInfo = args["Sta" .. stationIndex]
		if stationInfo then
			local li = stationList:tag("li")
			local stationDiv = li:tag("div"):addClass("name")
			local stationDivCircle = stationDiv:tag("div"):addClass("circle"):cssText('border: 4px solid ' .. lineColor .. ';')
			local expandedText = frame:preprocess(stationInfo)
			stationDiv:wikitext(expandedText)
			
			-- 未开放
			if args["Sta" .. stationIndex .. "Unopen"] then
				stationDiv:cssText('color: var(--color-base--subtle);')
				stationDivCircle:cssText('border: 4px solid var(--color-surface-4);')
			end
			
			-- 单向运营
			local way = args["Sta" .. stationIndex .. "Way"]
			if way then
				if string.lower(way) == "up" then
					stationDiv:addClass("dir-tag__up")
				elseif string.lower(way) == "down" then
					stationDiv:addClass("dir-tag__down")
				end
			end
		end
	end
	
	return tostring(output)
end

return p