Module:List: Difference between revisions

155 bytes added ,  1 month ago
m
1 revision imported
(xfer from sandbox per edit request on talk page)
m (1 revision imported)
Tags: Mobile edit Mobile web edit Advanced mobile edit
 
(7 intermediate revisions by 6 users not shown)
Line 1:
-- This module outputs different kinds of lists. At the moment, bulleted,
-- unbulleted, horizontal, ordered, and horizontal ordered lists are supported.
 
local libUtil = require('libraryUtil')
local checkType = libUtil.checkType
Line 20 ⟶ 17:
local data = {}
 
-- Classes and TemplateStyles
data.classes = {}
data.templatestyles = ''
if listType == 'horizontal' or listType == 'horizontal_ordered' then
table.insert(data.classes, 'hlist hlist-separated')
data.templatestyles = mw.getCurrentFrame():extensionTag{
name = 'templatestyles', args = { src = 'Hlist/styles.css' }
}
elseif listType == 'unbulleted' then
table.insert(data.classes, 'plainlist')
data.templatestyles = mw.getCurrentFrame():extensionTag{
name = 'templatestyles', args = { src = 'Plainlist/styles.css' }
}
end
table.insert(data.classes, args.class)
Line 87 ⟶ 91:
data.itemStyle = args.item_style or args.li_style
data.items = {}
for i_, num in ipairs(mTableTools.numKeys(args)) do
local item = {}
item.content = args[num]
Line 110 ⟶ 114:
-- Render the main div tag.
local root = mw.html.create('div')
for i_, class in ipairs(data.classes or {}) do
root:addClass(class)
end
Line 131 ⟶ 135:
 
-- Render the list items
for i_, t in ipairs(data.items or {}) do
local item = list:tag('li')
if data.itemStyle then
Line 144 ⟶ 148:
end
 
return data.templatestyles .. tostring(root)
end