Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
You must create an account or log in to edit.

Module:Hatnote: Difference between revisions

From Amaranth Legacy, available at amaranth-legacy.community
Content deleted Content added
No edit summary
Revert
Line 1: Line 1:
--------------------------------------------------------------------------------
local getArgs = require('Module:Arguments').getArgs
-- Module:Hatnote --
local yesno = require('Module:Yesno')
-- --
-- This module produces hatnote links and links to related articles. It --
-- implements the {{hatnote}} and {{format link}} meta-templates and includes --
-- helper functions for other Lua hatnote modules. --
--------------------------------------------------------------------------------

local libraryUtil = require('libraryUtil')
local checkType = libraryUtil.checkType
local checkTypeForNamedArg = libraryUtil.checkTypeForNamedArg
local mArguments -- lazily initialise [[Module:Arguments]]
local yesno -- lazily initialise [[Module:Yesno]]
local formatLink -- lazily initialise [[Module:Format link]] ._formatLink

local p = {}
local p = {}


--------------------------------------------------------------------------------
function p.main(frame)
-- Helper functions
local args = getArgs(frame)
--------------------------------------------------------------------------------
local wrapper = mw.html.create('div')

:attr('class', 'noexcerpt template__hatnote')
local function getArgs(frame)
:attr('role', 'note')
-- Fetches the arguments from the parent frame. Whitespace is trimmed and
-- blanks are removed.
mArguments = require('Module:Arguments')
return mArguments.getArgs(frame, {parentOnly = true})
end


local function removeInitialColon(s)
-- backwards compatibility
-- Removes the initial colon from a string, if present.
if args['file'] then args['file1'] = args['file'] end
return s:match('^:?(.*)')
end


function p.defaultClasses(inline)
-- input validation
-- Provides the default hatnote classes as a space-separated string; useful
if not args['file1'] and args['file2'] then
-- for hatnote-manipulation modules like [[Module:Hatnote group]].
error('file2 is required when file1 is specified')
return
end
(inline == 1 and 'hatnote-inline' or 'hatnote') .. ' ' ..
if not args['primary'] then
'navigation-not-searchable'
error('primary is required')
end
end


function p.disambiguate(page, disambiguator)
-- set the color so the look stays consistent even outside of the scope
-- Formats a page title with a disambiguation parenthetical,
if args['color'] then
-- i.e. "Example" → "Example (disambiguation)".
wrapper:css('--color-amaranth-legacy-scope', args['color'])
checkType('disambiguate', 1, page, 'string')
if yesno(args['color_applies_to_links'] or true) then
checkType('disambiguate', 2, disambiguator, 'string', true)
wrapper:css('--color-link', args['color'])
disambiguator = disambiguator or 'disambiguation'
return mw.ustring.format('%s (%s)', page, disambiguator)
end

function p.findNamespaceId(link, removeColon)
-- Finds the namespace id (namespace number) of a link or a pagename. This
-- function will not work if the link is enclosed in double brackets. Colons
-- are trimmed from the start of the link by default. To skip colon
-- trimming, set the removeColon parameter to false.
checkType('findNamespaceId', 1, link, 'string')
checkType('findNamespaceId', 2, removeColon, 'boolean', true)
if removeColon ~= false then
link = removeInitialColon(link)
end
local namespace = link:match('^(.-):')
if namespace then
local nsTable = mw.site.namespaces[namespace]
if nsTable then
return nsTable.id
end
end
end
end
return 0
end


function p.makeWikitextError(msg, helpLink, addTrackingCategory, title)
-- top <hr>
-- Formats an error message to be returned to wikitext. If
if not yesno(args['remove_hr'] or false) and not yesno(args['remove_hr_top'] or false) then
-- addTrackingCategory is not false after being returned from
wrapper:wikitext('<hr>')
-- [[Module:Yesno]], and if we are not on a talk page, a tracking category
-- is added.
checkType('makeWikitextError', 1, msg, 'string')
checkType('makeWikitextError', 2, helpLink, 'string', true)
yesno = require('Module:Yesno')
title = title or mw.title.getCurrentTitle()
-- Make the help link text.
local helpText
if helpLink then
helpText = ' ([[' .. helpLink .. '|help]])'
else
helpText = ''
end
end
-- Make the category text.

local category
-- content wrapper
if not title.isTalkPage -- Don't categorise talk pages
local content = wrapper:tag('div')
and title.namespace ~= 2 -- Don't categorise userspace
if args['file1'] and args['file2'] then
and yesno(addTrackingCategory) ~= false -- Allow opting out
content:attr('class', 'hatnote2')
then
elseif args['file1'] then
category = 'Hatnote templates with errors'
content:attr('class', 'hatnote1')
category = mw.ustring.format(
'[[%s:%s]]',
mw.site.namespaces[14].name,
category
)
else
else
category = ''
content:attr('class', 'hatnote0')
end
end
return mw.ustring.format(
'<strong class="error">Error: %s%s.</strong>%s',
msg,
helpText,
category
)
end


local curNs = mw.title.getCurrentTitle().namespace
-- left file
p.missingTargetCat =
if args['file1'] then
--Default missing target category, exported for use in related modules
local file_text = '[['
((curNs == 0) or (curNs == 14)) and
.. 'File:' .. args['file1']
'Articles with hatnote templates targeting a nonexistent page' or nil
.. '|' .. (args['file_size'] or '80px')

.. '|link='
function p.quote(title)
.. '|alt='
--Wraps titles in quotation marks. If the title starts/ends with a quotation
if yesno(args['file_invert_in_dark_mode'] or false) then file_text = file_text .. '|class=skin-invert-image' end
--mark, kerns that side as with {{-'}}
file_text = file_text .. ']]'
local quotationMarks = {
content:tag('div'):wikitext(file_text)
["'"]=true, ['"']=true, ['“']=true, ["‘"]=true, ['”']=true, ["’"]=true
}
local quoteLeft, quoteRight = -- Test if start/end are quotation marks
quotationMarks[string.sub(title, 1, 1)],
quotationMarks[string.sub(title, -1, -1)]
if quoteLeft or quoteRight then
title = mw.html.create("span"):wikitext(title)
end
end
if quoteLeft then title:css("padding-left", "0.15em") end
if quoteRight then title:css("padding-right", "0.15em") end
return '"' .. tostring(title) .. '"'
end


--------------------------------------------------------------------------------
-- center text
-- Hatnote
local text = content:tag('div')
--
-- Produces standard hatnote text. Implements the {{hatnote}} template.
--------------------------------------------------------------------------------
p[''] = function (frame) return p.hatnote(frame:newChild{ title = "Template:Hatnote" }) end


function p.hatnote(frame)
-- primary text wrapper
local primary_text = text:tag('span')
local args = getArgs(frame)
local s = args[1]
:css('display', 'inline-block')
if not s then
-- primary text linear-gradient
return p.makeWikitextError(
if args['primary_gradient'] then
'no text specified',
primary_text:css('color', 'transparent')
'Template:Hatnote#Errors',
:css('background-image', 'linear-gradient(' .. args['primary_gradient'] .. ')')
args.category
:css('-webkit-background-clip', 'text')
)
:css('background-clip', 'text')
else
primary_text:css('color', 'var(--color-amaranth-legacy-scope)')
end
end
return p._hatnote(s, {
-- primary text font-size
extraclasses = args.extraclasses,
primary_text:css('font-size', 'var(--font-size-' .. (args['primary_font_size'] or 'xx-large') .. ')')
selfref = args.selfref
-- primary text font-family
})
primary_text:css('font-family', args['font'] or 'var(--font-family-serif)')
end
-- primary text text-transform
primary_text:css('text-transform', args['primary_transform'] or 'none')
-- primary text
primary_text:wikitext(args['primary'])


function p._hatnote(s, options)
-- secondary text
checkType('_hatnote', 1, s, 'string')
if args['secondary'] then
checkType('_hatnote', 2, options, 'table', true)
-- italic secondary text
options = options or {}
if yesno(args['italic_secondary'] or true) then
local inline = options.inline
args['secondary'] = '\'\'' .. args['secondary'] .. '\'\''
local hatnote = mw.html.create(inline == 1 and 'span' or 'div')
end
local extraclasses
text:wikitext('<br/>' .. args['secondary'])
if type(options.extraclasses) == 'string' then
extraclasses = options.extraclasses
end
end


hatnote
-- right file
:attr('role', 'note')
if args['file2'] then
:addClass(p.defaultClasses(inline))
content:tag('div'):wikitext('[['
:addClass(extraclasses)
.. 'File:' .. args['file2']
:addClass(options.selfref and 'selfref' or nil)
.. '|' .. (args['file_size'] or '80px')
:wikitext(s)
.. '|class=notpageimage'
.. '|link='
.. '|alt='
.. ']]')
end

-- bottom <hr>
if not yesno(args['remove_hr'] or false) and not yesno(args['remove_hr_bottom'] or false) then
wrapper:wikitext('<hr>')
end


return mw.getCurrentFrame():extensionTag{
return frame:extensionTag { name = 'templatestyles', args = { src = 'Module:Hatnote/styles.css' } }
name = 'templatestyles', args = { src = 'Module:Hatnote/styles.css' }
.. tostring(wrapper)
} .. tostring(hatnote)
end
end



Revision as of 15:47, March 18, 2025

This module is used for Template:Hatnote. See the template's page for more information.


--------------------------------------------------------------------------------
--                              Module:Hatnote                                --
--                                                                            --
-- This module produces hatnote links and links to related articles. It       --
-- implements the {{hatnote}} and {{format link}} meta-templates and includes --
-- helper functions for other Lua hatnote modules.                            --
--------------------------------------------------------------------------------

local libraryUtil = require('libraryUtil')
local checkType = libraryUtil.checkType
local checkTypeForNamedArg = libraryUtil.checkTypeForNamedArg
local mArguments -- lazily initialise [[Module:Arguments]]
local yesno -- lazily initialise [[Module:Yesno]]
local formatLink -- lazily initialise [[Module:Format link]] ._formatLink

local p = {}

--------------------------------------------------------------------------------
-- Helper functions
--------------------------------------------------------------------------------

local function getArgs(frame)
	-- Fetches the arguments from the parent frame. Whitespace is trimmed and
	-- blanks are removed.
	mArguments = require('Module:Arguments')
	return mArguments.getArgs(frame, {parentOnly = true})
end

local function removeInitialColon(s)
	-- Removes the initial colon from a string, if present.
	return s:match('^:?(.*)')
end

function p.defaultClasses(inline)
	-- Provides the default hatnote classes as a space-separated string; useful
	-- for hatnote-manipulation modules like [[Module:Hatnote group]].
	return
		(inline == 1 and 'hatnote-inline' or 'hatnote') .. ' ' ..
		'navigation-not-searchable'
end

function p.disambiguate(page, disambiguator)
	-- Formats a page title with a disambiguation parenthetical,
	-- i.e. "Example" → "Example (disambiguation)".
	checkType('disambiguate', 1, page, 'string')
	checkType('disambiguate', 2, disambiguator, 'string', true)
	disambiguator = disambiguator or 'disambiguation'
	return mw.ustring.format('%s (%s)', page, disambiguator)
end

function p.findNamespaceId(link, removeColon)
	-- Finds the namespace id (namespace number) of a link or a pagename. This
	-- function will not work if the link is enclosed in double brackets. Colons
	-- are trimmed from the start of the link by default. To skip colon
	-- trimming, set the removeColon parameter to false.
	checkType('findNamespaceId', 1, link, 'string')
	checkType('findNamespaceId', 2, removeColon, 'boolean', true)
	if removeColon ~= false then
		link = removeInitialColon(link)
	end
	local namespace = link:match('^(.-):')
	if namespace then
		local nsTable = mw.site.namespaces[namespace]
		if nsTable then
			return nsTable.id
		end
	end
	return 0
end

function p.makeWikitextError(msg, helpLink, addTrackingCategory, title)
	-- Formats an error message to be returned to wikitext. If
	-- addTrackingCategory is not false after being returned from
	-- [[Module:Yesno]], and if we are not on a talk page, a tracking category
	-- is added.
	checkType('makeWikitextError', 1, msg, 'string')
	checkType('makeWikitextError', 2, helpLink, 'string', true)
	yesno = require('Module:Yesno')
	title = title or mw.title.getCurrentTitle()
	-- Make the help link text.
	local helpText
	if helpLink then
		helpText = ' ([[' .. helpLink .. '|help]])'
	else
		helpText = ''
	end
	-- Make the category text.
	local category
	if not title.isTalkPage -- Don't categorise talk pages
		and title.namespace ~= 2 -- Don't categorise userspace
		and yesno(addTrackingCategory) ~= false -- Allow opting out
	then
		category = 'Hatnote templates with errors'
		category = mw.ustring.format(
			'[[%s:%s]]',
			mw.site.namespaces[14].name,
			category
		)
	else
		category = ''
	end
	return mw.ustring.format(
		'<strong class="error">Error: %s%s.</strong>%s',
		msg,
		helpText,
		category
	)
end

local curNs = mw.title.getCurrentTitle().namespace
p.missingTargetCat =
	--Default missing target category, exported for use in related modules
	((curNs ==  0) or (curNs == 14)) and
	'Articles with hatnote templates targeting a nonexistent page' or nil

function p.quote(title)
	--Wraps titles in quotation marks. If the title starts/ends with a quotation
	--mark, kerns that side as with {{-'}}
	local quotationMarks = {
		["'"]=true, ['"']=true, ['“']=true, ["‘"]=true, ['”']=true, ["’"]=true
	}
	local quoteLeft, quoteRight = -- Test if start/end are quotation marks
		quotationMarks[string.sub(title,  1,  1)],
		quotationMarks[string.sub(title, -1, -1)]
	if quoteLeft or quoteRight then
		title = mw.html.create("span"):wikitext(title)
	end
	if quoteLeft  then title:css("padding-left",  "0.15em") end
	if quoteRight then title:css("padding-right", "0.15em") end
	return '"' .. tostring(title) .. '"'
end

--------------------------------------------------------------------------------
-- Hatnote
--
-- Produces standard hatnote text. Implements the {{hatnote}} template.
--------------------------------------------------------------------------------
p[''] = function (frame) return p.hatnote(frame:newChild{ title = "Template:Hatnote" }) end

function p.hatnote(frame)
	local args = getArgs(frame)
	local s = args[1]
	if not s then
		return p.makeWikitextError(
			'no text specified',
			'Template:Hatnote#Errors',
			args.category
		)
	end
	return p._hatnote(s, {
		extraclasses = args.extraclasses,
		selfref = args.selfref
	})
end

function p._hatnote(s, options)
	checkType('_hatnote', 1, s, 'string')
	checkType('_hatnote', 2, options, 'table', true)
	options = options or {}
	local inline = options.inline
	local hatnote = mw.html.create(inline == 1 and 'span' or 'div')
	local extraclasses
	if type(options.extraclasses) == 'string' then
		extraclasses = options.extraclasses
	end

	hatnote
		:attr('role', 'note')
		:addClass(p.defaultClasses(inline))
		:addClass(extraclasses)
		:addClass(options.selfref and 'selfref' or nil)
		:wikitext(s)

	return mw.getCurrentFrame():extensionTag{
		name = 'templatestyles', args = { src = 'Module:Hatnote/styles.css' }
	} .. tostring(hatnote)
end

return p