2,875
edits
(Currency: Fix minVal, maxVal passed to other currency functions) |
No edit summary |
||
Line 850: | Line 850: | ||
function p._Currency(fileName, link, altText, amount, maxAmount) | function p._Currency(fileName, link, altText, amount, maxAmount) | ||
local | local function numColour(amount) | ||
if tonumber(amount) < 0 then | |||
local | return mw.html.create('span') | ||
:css('color', 'red') | |||
:wikitext(formatnum(amount)) | |||
:done() | |||
else | |||
return formatnum(amount) | |||
end | |||
end | |||
local html = mw.html.create('span') | |||
:addClass('img-text') | |||
-- Currency amounts | -- Currency amounts | ||
if tonumber(amount) ~= nil then | if tonumber(amount) ~= nil then | ||
html:node(numColour(amount)) | |||
if (tonumber(maxAmount) ~= nil and maxAmount > amount) then | if (tonumber(maxAmount) ~= nil and maxAmount > amount) then | ||
html:wikitext(' - ' .. numColour(maxAmount)) | |||
end | end | ||
end | end | ||
-- Currency icon | -- Currency icon | ||
if fileName ~= nil then | if fileName ~= nil then | ||
html:wikitext(' '):wikitext('[[File:'):wikitext(fileName):wikitext('|25px') | |||
if link ~= nil then | if link ~= nil then | ||
html:wikitext('|link='):wikitext(link) | |||
end | end | ||
html:wikitext('|alt=') | |||
:wikitext(((altText == nil and '') or altText)) | |||
:wikitext(']]') | |||
end | end | ||
html:done() | |||
if ((amount ~= nil and tonumber(amount) == nil) | if ((amount ~= nil and tonumber(amount) == nil) | ||
or (maxAmount ~= nil and tonumber(maxAmount) == nil)) then | or (maxAmount ~= nil and tonumber(maxAmount) == nil)) then | ||
html:wikitext('[[Category:Pages with non-numeric currency arguments]]') | |||
end | end | ||
return | return tostring(html) | ||
end | end | ||
edits