Module:Tooltip
Jump to navigation
Jump to search
Module documentation
This documentation is transcluded from Module:Tooltip/doc. [edit] [history] [purge]
Module:Tooltip requires Module:Paramtest.
Module:Tooltip requires Module:Yesno.
This template should be used when there is no documentation for a Module or Template.
local p = {}
local yn = require('Module:Yesno')
local hc = require('Module:Paramtest').has_content
-- module access point for div
p._div = function(args)
local name = args.name
if not hc(name) then
error('Name is required!')
end
local content = args.content
local hasarrow = yn(args.arrow or 'yes', true)
local arrowsize = tonumber(args.arrowsize) or 10
local limitwidthbool = yn(args.limitwidth or 'yes', true)
local style = args.style
local div = mw.html.create('div')
local arrow = 'no'
if hasarrow then
arrow = 'yes'
end
local limitwidth = 'no'
if limitwidthbool then
limitwidth = 'yes'
end
local attrs = {
['data-tooltip-for'] = name,
['data-tooltip-arrow'] = arrow,
['data-tooltip-arrow-size'] = arrowsize,
['data-tooltip-limit-width'] = limitwidth,
}
if hc(style) then
attrs['data-tooltip-style'] = style
end
div :addClass('hidden js-tooltip-wrapper')
:css('display', 'none')
:attr(attrs)
:tag('div')
:addClass('js-tooltip-text')
:wikitext(content)
:done()
:done()
return div
end
p._span = function(args)
local name = args.name or args[1] or nil
if not hc(name) then
error('Name is required!')
end
local alt = args.alt or args[2] or '?'
local span = mw.html.create('span')
span:addClass('hidden js-tooltip-click')
:css('display', 'none')
:attr('data-tooltip-name', name)
:wikitext(alt)
:done()
return span
end
-- template access points
p.div = function(frame)
return p._div(frame:getParent().args)
end
p.span = function(frame)
return p._span(frame:getParent().args)
end
return p