Module:Clickable button 2: Difference between revisions

m
13 revisions imported: import clickable buttons 2
(use the wrappers option on getArgs)
m (13 revisions imported: import clickable buttons 2)
 
(10 intermediate revisions by 3 users not shown)
Line 1:
-- This module implements {{clickable button 2}}.
 
local yesno = require('Module:Yesno')
 
local p = {}
 
function p.main(frame)
local args = require('Module:Arguments').getArgs(frame, {wrappers = 'Template:Clickable button 2'})
wrappers = 'Template:Clickable button 2'
})
return p.luaMain(args)
end
Line 21 ⟶ 25:
local data = {}
 
-- Get the link and display values, and find whether we are outputting a wikilink or a URL.
-- Classes
-- wikilink or a URL.
local class
if args.url then
do
data.isUrl = true
class = args.class and args.class:lower()
data.classeslink = {}args.url
if args[1] then
if class == 'ui-button-green'
data.display = args[1]
or class == 'ui-button-blue'
or class == 'ui-button-red'
then
table.insert(
data.classes,
'submit ui-button ui-widget ui-state-default ui-corner-all'
.. ' ui-button-text-only ui-button-text'
)
else
data.display = args.url
table.insert(data.classes, 'mw-ui-button')
end
else
if class then
table.insert(data.classes,isUrl = class)false
data.link = args[1]
if args[2] then
data.display = args[2]
else
data.display = args[1]
end
end
 
-- Classes
local class = args.class and args.class:lower()
data.classes = {}
if class == 'ui-button-green'
or class == 'ui-button-blue'
or class == 'ui-button-red'
then
table.insert(
data.classes,
'submit ui-button ui-widget ui-state-default ui-corner-all'
.. ' ui-button-text-only ui-button-text'
)
else
table.insert(data.classes, 'mw-ui-button')
end
localif class then
table.insert(data.classes, class)
end
 
-- Styles
do
--[[
local currentTitle = mw.title.getCurrentTitle()
-- Check whether we are on the same page as we have specified in
local success, linkTitle = pcall(mw.title.new, args[1])
-- args[1], but not if we are using a URL link, as then args[1] is only
if success and mw.title.equals(currentTitle, linkTitle) then
-- a display value. If we are currently on the page specified in
if class == 'ui-button-blue' or class == 'mw-ui-progressive' then
-- args[1] make the button colour darker so that it stands out from
-- other buttons on the page.
--]]
local success, linkTitle, currentTitle
if not data.isUrl = falsethen
local currentTitle = mw.title.getCurrentTitle()
local success, linkTitle = pcall(mw.title.new, args[1])
end
if success
and linkTitle
if success and mw.title.equals(currentTitle, linkTitle) then
then
if class == 'ui-button-blue'
if class == 'ui-button-blue' or class == 'mw-ui-progressive' then
or class == 'mw-ui-constructive'
then
data.backgroundColor = '#2962CB'
elseif class == 'ui-button-green' or class == 'mw-ui-constructive' then
data.backgroundColor = '#008B6D'
elseif class == 'ui-button-red' or class == 'mw-ui-destructive' then
Line 59 ⟶ 96:
end
end
-- Add user-specified styles.
data.style = args.style
end
 
-- Get the link and display values, and find whether we are outputting a wikilink or a URL.
if args.url then
data.isUrl = true
data.link = args.url
if args[1] then
data.display = args[1]
else
data.display = args.url
end
else
data.isUrl = false
data.link = args[1]
if args[2] then
data.display = args[2]
else
data.display = args[1]
end
end
 
Line 93 ⟶ 112:
end
displaySpan
:attr('role', 'button')
:attr('aria-disabled', 'false')
:css{
['background-color'] = data.backgroundColor,
Line 100 ⟶ 117:
}
if data.style then
displaySpan:cssText(data.style)
end
displaySpan:wikitext(data.display)
Line 118 ⟶ 135:
 
function p.renderTrackingCategories(args)
if yesno(args.category) == false then
return ''
end
local class = args.class and args.class:lower()
if class == 'ui-button-green'