匿名
未登录
中文(中国大陆)
登录/创建账号
异世界百科
搜索
查看“模块:Tile”的源代码
来自异世界百科
命名空间
模块
讨论/笔记
更多
更多
页面操作
阅读
查看源代码
历史
←
模块:Tile
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
local p = {} local function loadConfig(titleText) local title = mw.title.new(titleText) if (not title.exists and title.contentModel ~= "json") then return nil end local content = title:getContent() return mw.text.jsonDecode(content) end local function getDayConfig(conf, frame) -- 先根据日期判断 local currentDate = frame:callParserFunction("#timel", "n-j") dayConfig = conf[currentDate] if (dayConfig ~= nil) then -- 输出当前日期的磁贴 return dayConfig end -- 然后判断是周几 local currentDOW = "#" .. frame:callParserFunction("#timel", "N") dayConfig = conf[currentDOW] if (dayConfig ~= nil) then -- 输出当前日期的磁贴 return dayConfig end -- 不存在当日配置 return nil end local function getTileArgs(tileConfig) local tileArgs = {} if tileConfig.cover ~= nil then tileArgs.cover = tileConfig.cover end if tileConfig.page ~= nil then tileArgs.href = "[[" .. tileConfig.page .. "]]" end if tileConfig.icon ~= nil then tileArgs.icon = "fa fa-fw fa-" .. tileConfig.icon end return tileArgs end function p.perDay(frame) local configTitle = frame.args[1] or frame.args.conf local appendTile = frame.args[2] or frame.args.appendTile local defaultTile = frame.args[3] or frame.args.default local conf = loadConfig(configTitle) local tileConfig = getDayConfig(conf, frame) if tileConfig ~= nil then local tileArgs = getTileArgs(tileConfig) return frame:extensionTag("tilegroup", frame:extensionTag("tile", tileConfig.title, tileArgs) .. appendTile, { size = "sm-12 md-6" }) else return frame:extensionTag("tilegroup", defaultTile, { size = "sm-12 md-6" }) end end return p
本页使用的模板:
模块:Tile/doc
(
查看源代码
)
返回
模块:Tile
。
导航
导航
首页
最近更改
随机页面
帮助
相关网站
异世界资料库
常用功能
翻译页面
全部页面列表
Wiki工具
Wiki工具
特殊页面
页面值
页面工具
页面工具
复制短链接
用户页面工具
更多
链入页面
相关更改
页面信息
页面日志