Module:Clickable button 2: Difference between revisions

m
13 revisions imported: import clickable buttons 2
(check that linkTitle exists before trying to use it)
m (13 revisions imported: import clickable buttons 2)
 
(4 intermediate revisions by 3 users not shown)
Line 24:
function p.makeLinkData(args)
local data = {}
 
-- 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
 
-- Classes
Line 46 ⟶ 66:
-- 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
-- a display value. If we are currently on the page specified in
-- 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 then
local currentTitle = mw.title.getCurrentTitle()
local success, linkTitle = pcall(mw.title.new, args[1])
end
if success
and linkTitle
Line 54 ⟶ 84:
if class == 'ui-button-blue'
or class == 'mw-ui-progressive'
or class == 'mw-ui-constructive'
then
data.backgroundColor = '#2962CB'
elseif class == 'ui-button-green' then
or class == 'mw-ui-constructive'
then
data.backgroundColor = '#008B6D'
elseif class == 'ui-button-red' or class == 'mw-ui-destructive' then
or class == 'mw-ui-destructive'
then
data.backgroundColor = '#A6170F'
else
Line 69 ⟶ 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 104 ⟶ 112:
end
displaySpan
:attr('role', 'button')
:attr('aria-disabled', 'false')
:css{
['background-color'] = data.backgroundColor,