Jump to content

Module:Countdown/sandbox: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
No edit summary
Tag: Reverted
sync
 
Line 6: Line 6:
local lang = mw.language.getContentLanguage()
local lang = mw.language.getContentLanguage()
local getArgs = require('Module:Arguments').getArgs
local getArgs = require('Module:Arguments').getArgs
local yn = require("Module:Yesno")
local floor = math.floor
local mod = math.fmod


function p.main(frame, args)
local function formatMessage(secondsLeft, event, color)
local timeLeft = lang:formatDuration(secondsLeft, {'years', 'weeks', 'days', 'hours', 'minutes', 'seconds'})
args = args or getArgs(frame)
-- Find whether we are plural or not.
local timeInput = args['time'] or args[1] or error("No time string specified!")
local isOrAre
local offset = args['offset'] or args[2] or ''
if string.match(timeLeft, '^%d+') == '1' then
local shorthand = yn(args['shorthand'], false)
isOrAre = 'is'
local timestamp = tonumber(frame:preprocess("{{#time:U|" .. timeInput .. ' ' .. offset .. "|}}"))
local currentTime = tonumber(frame:preprocess("{{#time:U}}"))
local time_days = floor((timestamp - currentTime) / 86400)
local time_hours = floor(mod((timestamp - currentTime) / 3600, 24))
local time_minutes = floor(mod((timestamp - currentTime) / 60, 60))
local time_seconds = floor(mod((timestamp - currentTime), 60))
local out = ''
if shorthand then
-- clip the first letter of each display
local secondDisplay, minuteDisplay, hourDisplay, dayDisplay
secondDisplay = mw.ustring.sub(mw.message.new("seconds", ""):plain(), 0, 1)
minuteDisplay = mw.ustring.sub(mw.message.new("minutes", ""):plain(), 0, 1)
hourDisplay = mw.ustring.sub(mw.message.new("hours", ""):plain(), 0, 1)
dayDisplay = mw.ustring.sub(mw.message.new("days", ""):plain(), 0, 1)
if time_days > 0 then
out = out .. time_days .. dayDisplay .. " "
end
if time_hours > 0 then
out = out .. time_hours .. hourDisplay .. " "
end
if time_minutes > 0 then
out = out .. time_minutes .. minuteDisplay .. " "
end
if time_seconds > 0 then
out = out .. time_seconds .. secondDisplay .. " "
end
else
else
isOrAre = 'are'
if time_days > 0 then
end
out = out .. mw.message.new("days", time_days):plain() .. " "
-- Color and bold the numbers, because it makes them look important.
timeLeft = string.gsub(timeLeft, '(%d+)', '<span style="color: ' .. (color or '#F00') .. '; font-weight: bold;">%1</span>')
return string.format('There %s %s until %s.', isOrAre, timeLeft, event)
end

function p.main(frame)
local args = getArgs(frame)

if not (args.year and args.month and args.day) then
return '<strong class="error">Error: year, month, and day must be specified</strong>'
end

local timeArgs = {year=args.year, month=args.month, day=args.day, hour=args.hour, min=args.minute, sec=args.second}
for k,v in pairs(timeArgs) do
if not tonumber(v) then
error('Argument ' .. k .. ' could not be parsed as a number: ' .. v)
end
end
end
if time_hours > 0 then
local eventTime = os.time(timeArgs)
out = out .. mw.message.new("hours", time_hours):plain() .. " "
local timeToStart = os.difftime(eventTime, os.time()) -- (future time - current time)
local text
if timeToStart > 0 then
-- Event has not begun yet
text = formatMessage(timeToStart, args.event or 'the event begins', args.color)
elseif args.duration then
local timeToEnd
if args['duration unit'] then
-- Duration is in unit other than seconds, use formatDate to add
timeToEnd = tonumber(lang:formatDate('U', '@' .. tostring(timeToStart) .. ' +' .. tostring(args.duration) .. ' ' .. args['duration unit']))
else
timeToEnd = timeToStart + (tonumber(args.duration) or error('args.duration should be a number of seconds', 0))
end
end
if time_minutes > 0 then
if timeToEnd > 0 then
-- Event is in progress
out = out .. mw.message.new("minutes", time_minutes):plain() .. " "
text = args.eventstart or formatMessage(timeToEnd, (args.event or 'the event') .. ' ends', args.color)
end
else
if time_seconds > 0 then
-- Event had a duration and has now ended
out = out .. mw.message.new("seconds", time_seconds):plain() .. " "
text = args.eventend or ((lang:ucfirst(args.event or 'The event')) .. ' has ended.')
end
end
else
-- Event had no duration and has begun
text = args.eventstart or ((lang:ucfirst(args.event or 'The event')) .. ' has started.')
end
local refreshLink
if args.refresh == 'no' then
refreshLink = ''
else
refreshLink = mw.title.getCurrentTitle():fullUrl({action = 'purge'})
refreshLink = string.format(' <small><span class="plainlinks">([%s refresh])</span></small>', refreshLink)
end
end
return text .. refreshLink
return frame:preprocess('<span style="' .. (args['style'] or '') .. '">' .. out .. '</span>' .. (mw.ustring.len(out) > 0 and ' [{{fullurl:{{FULLPAGENAMEE}}|action=purge}} Update])' or ''))
end
end



Latest revision as of 17:22, 26 April 2024

-- This module powers {{countdown}}.

local p = {}

-- Constants
local lang = mw.language.getContentLanguage()
local getArgs = require('Module:Arguments').getArgs

local function formatMessage(secondsLeft, event, color)
	local timeLeft = lang:formatDuration(secondsLeft, {'years', 'weeks', 'days', 'hours', 'minutes', 'seconds'})
	-- Find whether we are plural or not.
	local isOrAre
	if string.match(timeLeft, '^%d+') == '1' then
		isOrAre = 'is'
	else
		isOrAre = 'are'
	end
	-- Color and bold the numbers, because it makes them look important.
	timeLeft = string.gsub(timeLeft, '(%d+)', '<span style="color: ' .. (color or '#F00') .. '; font-weight: bold;">%1</span>')
	return string.format('There %s %s until %s.', isOrAre, timeLeft, event)
end

function p.main(frame)
	local args = getArgs(frame)

	if not (args.year and args.month and args.day) then
		return '<strong class="error">Error: year, month, and day must be specified</strong>'
	end

	local timeArgs = {year=args.year, month=args.month, day=args.day, hour=args.hour, min=args.minute, sec=args.second}
	for k,v in pairs(timeArgs) do
		if not tonumber(v) then
			error('Argument ' .. k .. ' could not be parsed as a number: ' .. v)
		end
	end
	local eventTime = os.time(timeArgs)
	local timeToStart = os.difftime(eventTime, os.time()) -- (future time - current time)
	local text
	if timeToStart > 0 then
		-- Event has not begun yet
		text = formatMessage(timeToStart, args.event or 'the event begins', args.color)
	elseif args.duration then
		local timeToEnd
		if args['duration unit'] then
			-- Duration is in unit other than seconds, use formatDate to add
			timeToEnd = tonumber(lang:formatDate('U', '@' .. tostring(timeToStart) .. ' +' .. tostring(args.duration) .. ' ' .. args['duration unit']))
		else
			timeToEnd = timeToStart + (tonumber(args.duration) or error('args.duration should be a number of seconds', 0))
		end
		if timeToEnd > 0 then
			-- Event is in progress
			text = args.eventstart or formatMessage(timeToEnd, (args.event or 'the event') .. ' ends', args.color)
		else
			-- Event had a duration and has now ended
			text = args.eventend or ((lang:ucfirst(args.event or 'The event')) .. ' has ended.')
		end
	else
		-- Event had no duration and has begun
		text = args.eventstart or ((lang:ucfirst(args.event or 'The event')) .. ' has started.')
	end
	local refreshLink
	if args.refresh == 'no' then
		refreshLink = ''
	else
		refreshLink = mw.title.getCurrentTitle():fullUrl({action = 'purge'})
		refreshLink = string.format(' <small><span class="plainlinks">([%s refresh])</span></small>', refreshLink)
	end
	return text .. refreshLink
end

return p