Jump to content
Toggle menu
  • 8 articles
  • 75 files
  • 7 users
  • 37.8K edits
Neodyland Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Clickable button: Difference between revisions

From Neodyland Wiki
sync enwiki
m 9 revisions imported
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--- @module 'Codex clickable button' [[en:Module:Clickable button]]
--- @module 'CodexClickableButton'
--- Generates wikitext for clickable Codex button.
--- Generates wikitext for clickable Codex button.
--- Generates wikitext to render the button component from the (Codex design
---  
--- system for Wikimedia)[https://doc.wikimedia.org/codex/latest].
--- Outputs wikitext to render the (button component)[mdoc:codex/latest/components/demos/button.html]
--- - Options to include an icon
--- from the (Codex design system for Wikimedia)[https://doc.wikimedia.org/codex/latest].
--- - Create an icon-only or a dummy button
---- Options to include an icon or create an icon-only button.
--- - Target a URL or a wikilink
---- Target a URL or a wikilink
--- - Set the weight, size and state of the button (enabled or disabled).
---- Set the weight, size and state of the button (enabled or disabled).
--- Includes helper functions for URL parsing and cleaning, adding tracking  
---- Dummy button creation can be disabled.
---
--- Includes helper functions for URL parsing and cleaning, and adding tracking  
--- categories. Intended for use in templates and other modules.
--- categories. Intended for use in templates and other modules.
--- Implements [[Template:Clickable button]] and others.
--- Supports legacy parameters. To add icons, see CSS link in constants below.
--- Supports legacy parameters.
---
--- To add icons: [[Template:Clickable button/styles.css]].
--- @author [[User:Waddie96]]
--- @license CC-BY-SA-4.0/GFDL
--- @class CodexClickableButton extends ClickableButton
---  Table containing arguments for the button.
--- @class args table
--- @field label? string The button's visible text label.
--- @field link? string|'no' The target wikilink for the button.
--- @field url? string The target external URL for the button.
--- @field icon? string The name of the icon to display found in CSS file.
--- @field color? 'blue'|'green'|'red'|string Legacy color parameter.
--- @field class? string Custom CSS classes for the button.
--- @field weight? 'quiet'|'normal'|'primary' The visual weight of the button.
--- @field size? 'small'|'medium'|'large' The size of the button.
--- @field action? 'progressive'|'destructive'|'default'|string The action type of the button.
--- @field disabled? boolean|'1'|string Whether the button is disabled/greyed out. `disabled` is `true` if: `link` = `'no'` or `false` or `disabled` = `'1'` or `true`.
--- @field style? string Custom inline CSS styles.
--- @field nocat? boolean|string If `true`, suppresses tracking categories.
--- @field category? string An additional category to add.
--- @field aria-label? string The ARIA label for accessibility.
--- @field arialabel? string (alias for aria-label)
--- @field aria_label? string (alias for aria-label)
--- @field [1]? string Positional argument 1 (alias for link/label).
--- @field [2]? string Positional argument 2 (alias for label).
--- @var categories? string|boolean Additional categories to add.
--- @var ariaDisabled? boolean Internal flag indicating if the button is functionally disabled for ARIA.
--- @var oldClassMatched string|boolean Internal flag for outdated classes.
--- @var isUrl boolean Whether the link is a URL.
--- @var errorText string|nil
--- @var tblClasses table Classes for the button span tag.
--- @var pageTitle mw.title Title of the current page.
--- @todo [[Module:Neturl]] [[Module:Check for unknown parameters]]


-- TRACKING CATEGORIES:
-- [[Category:Pages using clickable dummy button]]
-- [[Category:Pages using disabled dummy button]]
-- [[Category:Pages using clickable button with external links]]
-- [[Category:Pages using clickable button with outdated classes]]
-- [[Category:Errors reported by Module:Clickable button]]
-- unless nocat=true. Adds category= any custom category regardless of nocat=.
-- DEPENDENCIES:
require('strict')
local yesno = require('Module:Yesno')
local yesno = require('Module:Yesno')
-- [[Template:Clickable button/styles.css]]
local delink = require('Module:Delink')._delink
-- [[Module:Yesno]] [[Module:Arguments]]
-- [[Module:Check for unknown parameters]]
-- [[Special:Version]] must include @wikimedia/codex.
-- [[Module:If preview]]


local p = {}
local p = {}


--- Checks the URI is safe to use as a wikilink in MediaWiki.
function p.main(frame)
---@param s string The URL to check
local getArgs = require('Module:Arguments').getArgs
---@return mw.uri|nil uri The URI of the given URL
local args = getArgs(frame)
---@class mw.uri: string
return p._main(args)
local function safeUri(s)
local success, uri = pcall(function()
return mw.uri.new(s)
end)
if success then
return uri
else
return nil
end
end
end


--- Extracts a URL from a string.
function p._main(args)
---@param extract string The full string from which the URL must be extracted from
-- If first arg or a url is not provided,
---@return string url The URL
-- but we have a second arg, make a button.
local function extractUrl(extract)
-- Otherwise, return nothing.
local url = extract
args.originalInput = args[1]
--- @type string
args[1] = delink({args[1]})
url = mw.ustring.gsub(url, '^([Hh]?[Tt]?[Tt]?[Pp]?[Ss]?:/*)(.+)',
if args[1] == "" then
'https://%2')
args[1] = nil
local uri = safeUri(url);
if uri and uri.host then
return url
end
return ''
end
 
--- Parses the `url`. The `url` parameter is required. `text` label is
--- optional and can be generated from the `url`.
--- @param url string The Url
--- @param text string The display label of the wikilink
--- @return string url The Url
--- @return string text The display label of the wikilink
local function _url(url, text)
--- @type string Given Url but with any trailing whitespace removed
url = mw.text.trim(url or '')
text = mw.text.trim(text or '')
 
if url == '' then
return '', text
end
 
-- If the URL contains any unencoded spaces, encode them,
-- because MediaWiki will otherwise interpret a space as the end of the URL.
url = mw.ustring.gsub(url, '%s', function(s)
return mw.uri.encode(s, 'PATH')
end)
 
-- If there is an empty query string or fragment ID,
-- remove it as it will cause mw.uri.new to throw an error
url = mw.ustring.gsub(url, '#$', '')
url = mw.ustring.gsub(url, '%?$', '')
 
-- If it's an http(s) URL without the double slash, fix it.
---- url = mw.ustring.gsub(url, '^[Hh][Tt][Tt][Pp]([Ss]?):(/?)([^/])', 'http%1://%3')
url = mw.ustring.gsub(url, '^([Hh]?[Tt]?[Tt]?[Pp]?[Ss]?:/*)(.+)',
'https://%2')
 
local uri = safeUri(url)
 
-- Handle URL's without a protocol and URL's that are protocol-relative,
-- e.g. www.example.com/foo or www.example.com:8080/foo, and //www.example.com/foo
if uri and (not uri.protocol or (uri.protocol and not uri.host)) and url:sub(1, 2) ~= '//' then
url = 'http://' .. url
uri = safeUri(url)
end
end


if text == '' then
if not args[1] and not args.url then
if uri then
if args[2] then
if uri.path == '/' then uri.path = '' end
p.nolink = true
 
else
local port = ''
return ''
if uri.port then port = ':' .. uri.port end
 
text = mw.ustring.lower(uri.host or '') .. port .. (uri.relativePath or '')
 
-- Add <wbr> before _/.-sequences
text = mw.ustring.gsub(text, "(/+)", "<wbr/>%1") -- This entry MUST be the first. "<wbr/>" has a "/" in it, you know.
text = mw.ustring.gsub(text, "(%.+)", "<wbr/>%1")
-- text = mw.ustring.gsub(text,"(%-+)","<wbr/>%1") -- DISABLED for now
text = mw.ustring.gsub(text, "(%#+)", "<wbr/>%1")
text = mw.ustring.gsub(text, "(_+)", "<wbr/>%1")
else -- URL is badly-formed, so just display whatever was given
text = url
end
end
end
end


return url, text
local data = p.makeLinkData(args)
local link = p.renderLink(args.originalInput, data)
local trackingCategories = p.renderTrackingCategories(args)
return link .. trackingCategories
end
end


--- Cleans and normalises a URL string.
function p.makeLinkData(args)
--- Copied from [[en:Module:URL]] with minor modifications.
local data = {}
--- - Encodes `url`.
--- - Removes empty query strings and fragement IDs.
--- - Fixes the protocol and the double slash that follows, i.e. `https://`
--- - Handles URLs that have no protocol or are protocol-relative.
--- - Generates label from the URL if one is not given.
---@param url string The raw URL to clean.
---@param text string Optional link display text.
---@return string url Cleaned URL for wikilink.
---@return string|nil text Display label for wikilink.
local function url(url, text)
url = url or extractUrl(url) or extractUrl(text) or ''
-- Strip out HTML tags and [ ] from URL
url = (url or ''):gsub("<[^>]*>", ""):gsub("[%[%]]", "")
-- Truncate anything after a space
url = url:gsub("%%20", " "):gsub(" .*", "")
return _url(url, text)
end


--- Renders tracking categories based on given parameters.
-- Get the link and display values,
---@param args table
-- and find whether we are outputting
local function renderTrackingCategories(args)
-- a wikilink or a URL.
local categories = ''
if args.url then
local class = args.class and args.class:lower() or ''
data.isUrl = true
---- local check_for_unknown_parameters = require("Module:Check for unknown parameters")._check
data.link = args.url
---- local title = mw.title.getCurrentTitle()
if args[1] then
 
data.display = args[1]
-- Don't add categories if nocat=yes, but still add any custom category.
elseif args[2] then
-- Custom category passed in
data.display = args[2]
if args.category and yesno(args.nocat) == false then
else
local q = args.category
data.display = args.url
q = q:gsub('%[%[', ''):gsub('%]%]', ''):gsub('[Cc]ategory:', '')
p.urlisdisplay = true
categories = categories .. '[[' .. 'Category:' .. q .. ']]'
end
else
data.isUrl = false
p.urlisdisplay = false
data.link = args[1]
if args[2] then
data.display = args[2]
else
data.display = args[1]
end
if args[1] and args[1]:find('http') then
data.isUrl = true
end
end
end
if yesno(args.nocat) == true then
return ''
if yesno(args.link) == false then
p.nolink = true
end
end


--[=[
-- Colours
categories = categories .. check_for_unknown_parameters({
-- For the merge with {{clickable button}}
checkpositional = "y",
local colour = args.color and args.color:lower()
ignoreblank = "y",
regexp1 = "header[%d]+",
regexp2 = "label[%d]+",
regexp3 = "data[%d]+[abc]?",
regexp4 = "class[%d]+[abc]?",
regexp5 = "rowclass[%d]+",
regexp6 = "rowstyle[%d]+",
regexp7 = "rowcellstyle[%d]+",
unknown = "[[Category:Pages using infobox3cols with undocumented parameters|_VALUE_" .. title.text .. "]]",
'class', 'color', 'weight', 'size', 'icon', 'link', 'url', 'disabled',
'label', 'aria-label', 'arialabel', 'aria_label', 'action', 'nocat',
'category', '1', '2'
}, args) ]=]


if ((not args.link and not args.url
-- Classes
and not args.disabled and not args.ariaDisabled)
local class = args.class and args.class:lower()
or ((args.link or args.url) and not args.label)) then
data.classes = {}
-- Dummy button has no link, no URL and is not disabled
-- OR link/URL but no visible label
categories = categories .. '[[Category:Pages using clickable dummy button]]'
elseif (not args.link and not args.url
and (args.disabled or args.ariaDisabled)) then
-- Disabled button
categories = categories .. '[[Category:Pages using disabled dummy button]]'
end
if class == 'ui-button-green'
if class == 'ui-button-green'
or class == 'ui-button-blue'
or class == 'ui-button-blue'
or class == 'ui-button-red'
or class == 'ui-button-red'
or class == 'mw-ui-progressive'
then
or class == 'mw-ui-destructive' then
table.insert(
categories = categories .. '[[Category:Pages using clickable button with outdated classes]]'
data.classes,
end
'submit ui-button ui-widget ui-state-default ui-corner-all'
if args.url then
.. ' ui-button-text-only ui-button-text'
categories = categories .. '[[Category:Pages using clickable button with external links]]'
)
end
if class == 'mw-ui-constructive' then
categories = categories .. '[[Category:Pages using clickable button with deprecated parameters]]'
end
 
return categories
end
 
--- Renders the wikitext span tags for the button
--- @param data table
--- @return string link
local function renderLink(data)
-- Build button span
local displaySpan = mw.html.create('span')
for _, class in ipairs(data.classes or {}) do
displaySpan:addClass(class)
end
displaySpan:attr('role', 'button')
if data.aria_label then
displaySpan:attr('aria-label', data.aria_label)
end
-- ARIA disabled attribute for disabled/no-link/dummy buttons
if data.disabled or data.ariaDisabled then
displaySpan:attr('aria-disabled', 'true')
elseif data.disabled == false then
displaySpan:attr('aria-disabled', 'false')
end
if data.iconSpan then
displaySpan:node(data.iconSpan)
end
if data.label then
displaySpan:wikitext(data.label)
--[[ span:node(mw.html.create('span')
:addClass('cdx-button--text')
:wikitext(data.label)) ]]
end
 
local display = tostring(displaySpan)
 
-- Build link
local link
if data.disabled then
return string.format('%s %s', display, data.categories)
end
if data.isUrl then
---- mw.logObject(data)
link = string.format('<span class="plainlinks">[%s %s]</span> %s',
  data.url, display, data.categories)
elseif data.isUrl == false then
link = string.format('[[%s|%s]] %s', data.link, display,
  data.categories)
else
else
-- Dummy/disabled button
table.insert(data.classes, 'mw-ui-button')
link = string.format('%s %s', display, data.categories)
end
end
 
if data.error then
--If class is unset,
local ifPreview = require('Module:If preview')
--then let color determine class
return ifPreview.main( {data.error .. link .. ' ' ..
if not class then
[[Category:Errors reported by Module:Clickable button]], link} )
if colour == 'blue' then
class = 'mw-ui-progressive'
elseif colour == 'red' then
class = 'mw-ui-destructive'
elseif colour == 'green' then
class = 'mw-ui-constructive'
end
end
end
 
return link
if class then
end
table.insert(data.classes, class)
 
--- Parses the module's arguments for backward compatibility with deprecated
--- parameters from old templates and modules.
---@param args table Module's arguments.
---@return table args Parsed arguments.
local function parseParameters(args)
--- It's weird that we may make a link a label, but if we truly
--- only got positional argument `1`, then that would mean it's
--- intentional to make both the link and label the same.
--- `label` value priority: `label` > `2` > `1`
---@type string
args.label = args.label or args[2] or args[1]
 
--- `disabled` is `true` if:
--- - `link` = `'no'` or `false`
--- - `disabled` = `'1'` or `true`
--- @type boolean
args.disabled = (yesno(args.link) == false)
or yesno(args.disabled)
--- `link` value priority: `link` > `1`
args.link = args.link or args[1]
 
-- Remove positional args after assigning
args[1] = nil
args[2] = nil
 
if (args.link and yesno(args.link) ~= false) or args.url then
args.ariaDisabled = false
else
--- `aria-disabled = true` if no link whatsoever.
--- Make dummy button. But for accessibility,
--- ARIA must know it won't do anything.
--- _OPTION_ to forcefully disable dummy buttons
--- by setting `args.disabled = true`
args.ariaDisabled = true
end
end


-- Normalize ARIA label keys
-- Styles
args.aria_label = args.aria_label or args['aria-label'] or args.arialabel
do
 
--[[
-- Determine action from old parameters color/class
-- Check whether we are on the same page as we have specified in
local color = type(args.color) == 'string' and args.color:lower()
-- args[1], but not if we are using a URL link, as then args[1] is only
local class = type(args.class) == 'string' and args.class:lower()
-- a display value. If we are currently on the page specified in
if (color == "blue"
-- args[1] make the button colour darker so that it stands out from
or color == "green"
-- other buttons on the page.
or class == 'ui-button-green'
--]]
or class == 'ui-button-blue'
local success, linkTitle, currentTitle
or class == 'mw-ui-constructive'
if not data.isUrl then
or class == 'mw-ui-progressive'
currentTitle = mw.title.getCurrentTitle()
or class == 'progressive') then
success, linkTitle = pcall(mw.title.new, args[1])
args.action = "progressive"
elseif p.urlisdisplay then
args.class = nil
currentTitle = mw.title.getCurrentTitle()
elseif (color == "red"
end
or class == 'ui-button-red'
if success
or class == 'mw-ui-destructive'
and linkTitle
or class == 'destructive') then
and mw.title.equals(currentTitle, linkTitle)
args.action = "destructive"
and not p.urlisdisplay
args.class = nil
then
if class == 'ui-button-blue'
or class == 'mw-ui-progressive'
or class == 'mw-ui-constructive'
then
data.backgroundColor = '#2962CB'
data.color = '#fff'
elseif class == 'ui-button-green' then
data.backgroundColor = '#008B6D'
elseif class == 'ui-button-red' or class == 'mw-ui-destructive' then
data.backgroundColor = '#A6170F'
else
data.backgroundColor = '#CCC'
data.color = '#666'
end
elseif p.urlisdisplay then
data.dummyLink = tostring(currentTitle)
end
-- Add user-specified styles.
data.style = args.style
end
end
 
return data
return args
end
end


--- Constructs the attributes for the wikitext/HTML elements.
function p.renderLink(originalInput, data)
--- @param args table
-- Render the display span tag.
--- @return table data
local display
local function makeLinkData(args)
do
local data = {}
local displaySpan = mw.html.create('span')
 
for i, class in ipairs(data.classes or {}) do
-- Decide link vs. url vs. none
displaySpan:addClass(class)
-- URL has priority over link if both provided. Also, clean URL
end
if args.url then
data.isUrl = true
-- Make pretty URL and label based on URL if no label.
--[[ local URI = require "URI"
local uri = URI:new(args.url)
data.url = uri
local label = uri:host() .. uri:path()
if label:len() > 20 then
label = uri:host()
end ]]
local label
data.url, label = url(args.url, args.label)
data.label = args.label or label
elseif args.link then
data.isUrl = false
data.link = args.link
data.label = args.label
elseif not args.url and not args.link then
-- Dummy button, no link or url
data.label = args.label
end
 
-- @TODO: Error tracking category
-- Error if no aria-label and no visible label
if (not data.label and not args.aria_label
and not args.disabled and not args.ariaDisabled) then
data.error = '<span class="error"><strong>Preview warning:</strong>'
.. ' A button without a visible label '
.. 'needs an [[WAI-ARIA|ARIA]] label, please define it using '
.. '"aria-label".</span>'
end
 
-- Classes
local class  = type(args.class) == 'string' and args.class:lower()
or ''
local action = type(args.action) == 'string' and args.action:lower()
or 'default' -- or 'default' by default
local weight = type(args.weight) == 'string' and args.weight:lower()
or 'normal' -- or 'normal' by default
local size  = type(args.size) == 'string' and args.size:lower()
or 'medium' -- or 'medium' by default
 
data.classes = { 'cdx-button', 'cdx-button--fake-button' }
table.insert(data.classes, 'cdx-button--action-' .. action)
table.insert(data.classes, 'cdx-button--weight-' .. weight)
table.insert(data.classes, 'cdx-button--size-' .. size)
if class then
table.insert(data.classes, class) -- Custom class
end
 
-- Disabled state
data.disabled = args.disabled
if data.disabled then
table.insert(data.classes, 'cdx-button--fake-button--disabled')
else
table.insert(data.classes, 'cdx-button--fake-button--enabled')
end


-- Icon
displaySpan
local icon = type(args.icon) == 'string' and args.icon:lower()
:css{
if icon then
['background-color'] = data.backgroundColor,
data.iconSpan = mw.html.create('span')
color = data.color
data.iconSpan:addClass('cdx-button__icon cdx-demo-css-icon--' .. icon)
}
data.iconSpan:attr('aria-hidden', 'true')
if data.style then
if not data.label then
displaySpan:cssText(data.style)
-- Icon-only button, add extra class for styling
table.insert(data.classes, 'cdx-button--icon-only')
end
end
displaySpan:wikitext(data.display)
display = tostring(displaySpan)
end
end


-- Label length checks
-- Render the link
if data.label then
local link
if mw.ustring.len(data.label) > 40 then
if originalInput and originalInput:find('|') then
data.error = ('<span class="error"><strong>Preview warning:</strong> A button label'
link = string.format('[[%s|%s]]', delink({originalInput, wikilinks = 'target'}), display)
.. ' should ideally be shorter than 38 characters, see [[Template:Clickable button'
elseif p.nolink then
.. '#Button label length|documentation]].</span>')
if p.urlisdisplay then
link = string.format('[[%s|%s]]', data.dummyLink, display)
else
link = string.format('%s', display)
end
end
-- Short label min-width custom CSS adjustment per Codex documentation.
else
if mw.ustring.len(data.label) < 3 then
if data.isUrl then
table.insert(data.classes, 'cdx-button--short-label')
link = string.format('[%s %s]', data.link, display)
else
link = string.format('[[%s |%s]]', data.link, display)
end
end
end
end


data.aria_label = args.aria_label
return string.format('<span class="plainlinks clickbutton">%s</span>', link)
data.ariaDisabled = args.ariaDisabled
 
return data
end
end


--- Function that can be called by other Lua modules.
function p.renderTrackingCategories(args)
--- @param args table
if yesno(args.category) == false then
--- @return table|string data
return ''
function p._main(args)
local parsedArgs = parseParameters(args)
local data = makeLinkData(parsedArgs)
data.categories = renderTrackingCategories(parsedArgs)
 
return renderLink(data)
end
 
--- Main function called by templates to use this module.
--- Using the `{{#invoke:Clickable button|main|arguments}}` parser function.
--- @param frame frame
--- @return string Returns wikitext for insertion in a wiki page.
function p.main(frame)
local args = require('Module:Arguments').getArgs(frame, {
wrappers = 'Template:Clickable button',
'Template:Clickable button/sandbox',
'Template:Cdx-button'
})
 
-- Return empty string if no arguments supplied
local hasInput = false
for _, v in pairs(args) do
if v and v ~= "" then
hasInput = true
break
end
end
end
if not hasInput then
local class = args.class and args.class:lower()
if class == 'ui-button-green'
or class == 'ui-button-blue'
or class == 'ui-button-red'
then
return '[[Category:Pages using old style ui-button-color]]'
else
return ''
return ''
end
end
return frame:extensionTag(
'templatestyles', '', { src = 'Template:Clickable button/styles.css' }
) .. p._main(args)
end
end


return p
return p

Latest revision as of 17:55, 12 August 2026

Module documentation[ view · edit · history · purge ]
This documentation is transcluded from Module:Clickable button/doc.

Template:Template rating

Template:Uses templatestyles

Generates wikitext for clickable Codex button. Renders the button component from the Codex design system for Wikimedia. Includes helper functions for URL parsing and cleaning, adding tracking categories. Intended for use in templates and other modules. Implements Template:Clickable button and others. Supports legacy parameters.

  • Options to include an icon or create an icon-only button.
  • Target a URL or a wikilink
  • Set the weight, size and state of the button (enabled or disabled).
  • Dummy button creation can be disabled.

For more information on appropriate usage of UI buttons, see the Codex documentation.

  • Inserts two CSS files. Module:Clickable button/styles.css is required and makes minor tweaks for word-wrapping if the visible label is too long, centering or aligning button left or right, and minimum widths as is needed for icon-only buttons and labels containing two characters or less.
  • The second CSS file, Module:Clickable button/icons.css, is prepended to the button's HTML only if an icon is used.
  • Supports legacy parameters from previous templates.

Usage in wikitext

edit

Some arguments are case-insensitive.

{{#invoke:Clickable button|main
| 1        = <!-- Alias for wikilink -->
| 2        = <!-- Alias for label -->
| label    = <!-- Button visible text label -->
| link     = <!-- Target wikilink -->
| url      = <!-- Target external URL -->
<!-- Inputs action, weight, size, and icon are case-insensitive -->
| action   = <!-- progressive | destructive | default: default. -->
| weight   = <!-- primary | quiet | default: normal. -->
| size     = <!-- small | large | default: medium. Automatically chooses size based on line-height and device. -->
| icon     = <!-- Name of icon, stored in [[Module:Clickable button/icons.css]] e.g., search  -->
| disabled = <!-- `true` or any other true value like `1` or `yes`. -->
| aria-label = <!-- [[w:ARIA]] label for accessibility DOM tree. -->
| nocat      = <!-- `true` to not auto-categorize. -->
<!-- Others -->
| category = <!-- Category name e.g., Category:Name or Name or [[Category:Name]] -->
| class    = <!-- Custom CSS class without quotation marks -->
| style    = <!-- Custom CSS styling without quotation marks -->
<!-- Legacy arguments -->
| color    = <!-- blue | red --> 
}}

Usage in other modules

edit

Ensure you know what to expect from the function you call from another module.

  • function p.main(frame) emits TemplateStyles for the CSS files with the wikitext, and pre-processes the arguments in a frame using Module:Arguments, e.g. ignore blank values'', and trim trailing whitespace.
  • function p._main(arguments) Parses the arguments such as lowercase appropriate arguments, account for use of legacy parameters and decides whether aria-disabled should be true.
  • function p.url(url, [label]) is available, not for button creation, but as an adaption of Module:URL to clean and normalise a URL string and optionally generate a label.
  • The module's other functions, such as makeLinkData() and renderLink(), are localised/local to the module and would need to be made global first to be accessible to other modules.

To call p.main() for example, use:

local createButton = require( 'Module:Clickable button/sandbox' )
buttonWikitext = createButton.main( {
    link = 'South Africa',
    label = 'Go to South Africa',
    action = 'progressive'
    weight = 'default',
    size = 'medium',
    icon = 'link-external',
} ) 
return buttonWikitext

and the value of buttonWikitext would be:

<<templatestyles src="Module:Cdx-button/styles.css" /><templatestyles src="Module:Cdx-button/icons.css" /><span class="cdx-button cdx-button--fake-button cdx-button--action-progressive cdx-button--weight-quiet cdx-button--size-medium" role="button" aria-disabled="false"><span class="cdx-button__icon cdx-demo-css-icon--link-external" aria-hidden="true"></span>Go to South Africa</span>

Function _main would output:

<span class="cdx-button cdx-button--fake-button cdx-button--action-progressive cdx-button--weight-quiet cdx-button--size-medium" role="button" aria-disabled="false"><span class="cdx-button__icon cdx-demo-css-icon--link-external" aria-hidden="true"></span>Go to South Africa</span>

As a result, unless a CSS file is added to give the appropriate class an icon, the icon will not render.

Implementation

edit

Length of visible label

edit

See the Codex button component documentation.


--------------------------------------------------------------------------------
--- @module 'CodexClickableButton'
--- Generates wikitext for clickable Codex button.
--- 
--- Outputs wikitext to render the (button component)[mdoc:codex/latest/components/demos/button.html]
--- from the (Codex design system for Wikimedia)[https://doc.wikimedia.org/codex/latest].
---- Options to include an icon or create an icon-only button.
---- Target a URL or a wikilink
---- Set the weight, size and state of the button (enabled or disabled).
---- Dummy button creation can be disabled.
---
--- Includes helper functions for URL parsing and cleaning, and adding tracking 
--- categories. Intended for use in templates and other modules.
--- Supports legacy parameters. To add icons, see CSS link in constants below.
---
--- @author [[User:Waddie96]]
--- @license CC-BY-SA-4.0/GFDL
--- @class CodexClickableButton extends ClickableButton
---  Table containing arguments for the button.
--- @class args table
--- @field label? string The button's visible text label.
--- @field link? string|'no' The target wikilink for the button.
--- @field url? string The target external URL for the button.
--- @field icon? string The name of the icon to display found in CSS file.
--- @field color? 'blue'|'green'|'red'|string Legacy color parameter.
--- @field class? string Custom CSS classes for the button.
--- @field weight? 'quiet'|'normal'|'primary' The visual weight of the button.
--- @field size? 'small'|'medium'|'large' The size of the button.
--- @field action? 'progressive'|'destructive'|'default'|string The action type of the button.
--- @field disabled? boolean|'1'|string Whether the button is disabled/greyed out. `disabled` is `true` if: `link` = `'no'` or `false` or `disabled` = `'1'` or `true`.
--- @field style? string Custom inline CSS styles.
--- @field nocat? boolean|string If `true`, suppresses tracking categories.
--- @field category? string An additional category to add.
--- @field aria-label? string The ARIA label for accessibility.
--- @field arialabel? string (alias for aria-label)
--- @field aria_label? string (alias for aria-label)
--- @field [1]? string Positional argument 1 (alias for link/label).
--- @field [2]? string Positional argument 2 (alias for label).
--- @var categories? string|boolean Additional categories to add.
--- @var ariaDisabled? boolean Internal flag indicating if the button is functionally disabled for ARIA.
--- @var oldClassMatched string|boolean Internal flag for outdated classes.
--- @var isUrl boolean Whether the link is a URL.
--- @var errorText string|nil 
--- @var tblClasses table Classes for the button span tag.
--- @var pageTitle mw.title Title of the current page.
--- @todo [[Module:Neturl]] [[Module:Check for unknown parameters]]

local yesno = require('Module:Yesno')
local delink = require('Module:Delink')._delink

local p = {}

function p.main(frame)
	local getArgs = require('Module:Arguments').getArgs
	local args = getArgs(frame)
	return p._main(args)
end

function p._main(args)
	-- If first arg or a url is not provided,
	-- but we have a second arg, make a button.
	-- Otherwise, return nothing.
	args.originalInput = args[1]
	args[1] = delink({args[1]})
	if args[1] == "" then
		args[1] = nil
	end

	if not args[1] and not args.url then
		if args[2] then
			p.nolink = true
		else
			return ''
		end
	end

	local data = p.makeLinkData(args)
	local link = p.renderLink(args.originalInput, data)
	local trackingCategories = p.renderTrackingCategories(args)
	return link .. trackingCategories
end

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]
		elseif args[2] then
			data.display = args[2]
		else
			data.display = args.url
			p.urlisdisplay = true
		end
	else
		data.isUrl = false
		p.urlisdisplay = false
		data.link = args[1]
		if args[2] then
			data.display = args[2]
		else
			data.display = args[1]
		end
		if args[1] and args[1]:find('http') then
			data.isUrl = true
		end
	end
	
	if yesno(args.link) == false then
		p.nolink = true
	end

	-- Colours
	-- For the merge with {{clickable button}}
	local colour = args.color and args.color:lower()

	-- 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
	
	--If class is unset,
	--then let color determine class
	if not class then
		if colour == 'blue' then
			class = 'mw-ui-progressive'
		elseif colour == 'red' then
			class = 'mw-ui-destructive'
		elseif colour == 'green' then
			class = 'mw-ui-constructive'
		end
	end
	
	if class then
		table.insert(data.classes, class)
	end

	-- Styles
	do
		--[[
		-- Check whether we are on the same page as we have specified in
		-- 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
			currentTitle = mw.title.getCurrentTitle()
			success, linkTitle = pcall(mw.title.new, args[1])
		elseif p.urlisdisplay then
			currentTitle = mw.title.getCurrentTitle()
		end
		if success
			and linkTitle
			and mw.title.equals(currentTitle, linkTitle)
			and not p.urlisdisplay
		then
			if class == 'ui-button-blue'
				or class == 'mw-ui-progressive'
				or class == 'mw-ui-constructive'
			then
				data.backgroundColor = '#2962CB'
				data.color = '#fff'
			elseif class == 'ui-button-green' then
				data.backgroundColor = '#008B6D'
			elseif class == 'ui-button-red' or class == 'mw-ui-destructive' then
				data.backgroundColor = '#A6170F'
			else
				data.backgroundColor = '#CCC'
				data.color = '#666'
			end
		elseif p.urlisdisplay then
			data.dummyLink = tostring(currentTitle)
		end
		-- Add user-specified styles.
		data.style = args.style
	end
	return data
end

function p.renderLink(originalInput, data)
	-- Render the display span tag.
	local display
	do
		local displaySpan = mw.html.create('span')
		for i, class in ipairs(data.classes or {}) do
			displaySpan:addClass(class)
		end

		displaySpan
			:css{
				['background-color'] = data.backgroundColor,
				color = data.color
			}
		if data.style then
			displaySpan:cssText(data.style)
		end
		displaySpan:wikitext(data.display)
		display = tostring(displaySpan)
	end

	-- Render the link
	local link
	if originalInput and originalInput:find('|') then
		link = string.format('[[%s|%s]]', delink({originalInput, wikilinks = 'target'}), display)
	elseif p.nolink then
		if p.urlisdisplay then
			link = string.format('[[%s|%s]]', data.dummyLink, display)
		else
			link = string.format('%s', display)
		end
	else
		if data.isUrl then
			link = string.format('[%s %s]', data.link, display)
		else
			link = string.format('[[%s |%s]]', data.link, display)
		end
	end

	return string.format('<span class="plainlinks clickbutton">%s</span>', link)
end

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'
		or class == 'ui-button-blue'
		or class == 'ui-button-red'
	then
		return '[[Category:Pages using old style ui-button-color]]'
	else
		return ''
	end
end

return p
Cookies help us deliver our services. By using our services, you agree to our use of cookies.