모듈:Message box: 두 판 사이의 차이
둘러보기로 이동
검색으로 이동
잔글
phab:T209310에 따른 수정
(Replace Module:No globals with require( "strict" )) |
잔글 (phab:T209310에 따른 수정) |
||
1번째 줄: | 1번째 줄: | ||
-- This is a meta-module for producing message box templates, including | |||
-- {{mbox}}, {{ambox}}, {{imbox}}, {{tmbox}}, {{ombox}}, {{cmbox}} and {{fmbox}}. | |||
-- Load necessary modules. | |||
require('strict') | require('strict') | ||
local getArgs | local getArgs | ||
local categoryHandler = require('Module:Category handler')._main | |||
local yesno = require('Module:Yesno') | local yesno = require('Module:Yesno') | ||
local localize = mw.loadData('Module:Message box/localize') | |||
-- Get a language object for formatDate and ucfirst. | |||
local lang = mw.language.getContentLanguage() | local lang = mw.language.getContentLanguage() | ||
-------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | ||
47번째 줄: | 52번째 줄: | ||
table.sort(nums) | table.sort(nums) | ||
return nums | return nums | ||
end | |||
local function getDate(date) | |||
-- convert yyyy-mm or yyyy-mm-dd to 'yyyy년 m월' | |||
local pattern1 = '^(%d%d%d%d)-(%d%d?)$' | |||
local pattern2 = '^(%d%d%d%d)-(%d%d?)-(%d%d?)$' | |||
if date then | |||
local y, m, _ | |||
y, m = date:match(pattern1) | |||
if not y then | |||
y, m, _ = date:match(pattern2) | |||
end | |||
local yy, mm = tonumber(y), tonumber(m) | |||
if yy and mm and yy > 2000 and yy < 2100 and mm > 0 and mm < 13 then | |||
return yy .. '년 ' .. mm .. '월' | |||
end | |||
end | |||
return date | |||
end | end | ||
68번째 줄: | 96번째 줄: | ||
local ns = obj.title.namespace | local ns = obj.title.namespace | ||
-- boxType is "mbox" or invalid input | -- boxType is "mbox" or invalid input | ||
if | if ns == 0 then | ||
obj.cfg = cfg.ambox -- main namespace | obj.cfg = cfg.ambox -- main namespace | ||
elseif ns == 6 then | elseif ns == 6 then | ||
115번째 줄: | 130번째 줄: | ||
obj.categories = {} | obj.categories = {} | ||
obj.classes = {} | obj.classes = {} | ||
return setmetatable(obj, MessageBox) | return setmetatable(obj, MessageBox) | ||
126번째 줄: | 139번째 줄: | ||
end | end | ||
if sort then | if sort then | ||
cat = string.format('[[ | cat = string.format('[[분류:%s|%s]]', cat, sort) | ||
else | else | ||
cat = string.format('[[ | cat = string.format('[[분류:%s]]', cat) | ||
end | end | ||
self.categories[ns] = self.categories[ns] or {} | self.categories[ns] = self.categories[ns] or {} | ||
table.insert(self.categories[ns], cat) | table.insert(self.categories[ns], cat) | ||
167번째 줄: | 179번째 줄: | ||
-- Add attributes, classes and styles. | -- Add attributes, classes and styles. | ||
self.id = args.id | self.id = args.id | ||
self:addClass( | |||
cfg.usePlainlinksParam and yesno(args.plainlinks or true) and 'plainlinks' | |||
) | |||
for _, class in ipairs(cfg.classes or {}) do | for _, class in ipairs(cfg.classes or {}) do | ||
self:addClass(class) | self:addClass(class) | ||
196번째 줄: | 204번째 줄: | ||
and cfg.templateCategoryRequireName | and cfg.templateCategoryRequireName | ||
then | then | ||
self.name = args.name | |||
if self.name then | if self.name then | ||
local templateName = mw.ustring.match( | local templateName = mw.ustring.match( | ||
207번째 줄: | 216번째 줄: | ||
and mw.title.equals(self.title, self.templateTitle) | and mw.title.equals(self.title, self.templateTitle) | ||
end | end | ||
-- Process data for collapsible text fields. At the moment these are only | -- Process data for collapsible text fields. At the moment these are only | ||
-- used in {{ambox}}. | -- used in {{ambox}}. | ||
261번째 줄: | 270번째 줄: | ||
end | end | ||
if talkTitle and talkTitle.exists then | if talkTitle and talkTitle.exists then | ||
local talkText = '내용에 대한 의견이 있으시다면 ' | |||
if talkArgIsTalkPage then | |||
talkText = string.format( | |||
'%s [[%s|%s]]에서 나누어 주세요.', | |||
talkText, | |||
talk, | |||
talkTitle.prefixedText | |||
) | |||
else | |||
talkText = string.format( | |||
'%s [[%s#%s|토론 문서]]에서 나누어 주세요.', | |||
talkText, | |||
talkTitle.prefixedText, | |||
talk | |||
) | |||
end | |||
self.talk = talkText | self.talk = talkText | ||
end | end | ||
293번째 줄: | 296번째 줄: | ||
date = args.date | date = args.date | ||
elseif args.date == '' and self.isTemplatePage then | elseif args.date == '' and self.isTemplatePage then | ||
date = lang:formatDate(' | date = lang:formatDate('Y년 n월') | ||
end | end | ||
if date then | if date then | ||
self.date = string.format(" < | self.date = string.format(" <small>(%s)</small>", date) | ||
end | end | ||
self.info = args.info | self.info = args.info | ||
end | end | ||
318번째 줄: | 318번째 줄: | ||
self.imageCellDiv = not self.isSmall and cfg.imageCellDiv | self.imageCellDiv = not self.isSmall and cfg.imageCellDiv | ||
self.imageEmptyCell = cfg.imageEmptyCell | self.imageEmptyCell = cfg.imageEmptyCell | ||
if cfg.imageEmptyCellStyle then | |||
self.imageEmptyCellStyle = 'border:none;padding:0px;width:1px' | |||
end | |||
-- Left image settings. | -- Left image settings. | ||
339번째 줄: | 342번째 줄: | ||
self.imageRight = imageRight | self.imageRight = imageRight | ||
end | end | ||
end | end | ||
370번째 줄: | 369번째 줄: | ||
allCat = type(allCat) == 'string' and allCat | allCat = type(allCat) == 'string' and allCat | ||
if mainCat and date and date ~= '' then | if mainCat and date and date ~= '' then | ||
local catTitle = string.format('%s | local catTitle = string.format('%s/%s', mainCat, date) | ||
self:addCat(0, catTitle) | self:addCat(0, catTitle) | ||
catTitle = getTitleObject(' | catTitle = getTitleObject('분류:' .. catTitle) | ||
if not catTitle or not catTitle.exists then | if not catTitle or not catTitle.exists then | ||
self:addCat(0, ' | self:addCat(0, '지정 날짜가 올바르지 않은 틀이 있는 문서') | ||
end | end | ||
elseif mainCat and (not date or date == '') then | elseif mainCat and (not date or date == '') then | ||
431번째 줄: | 430번째 줄: | ||
if self.invalidTypeError then | if self.invalidTypeError then | ||
local allSort = (self.title.namespace == 0 and 'Main:' or '') .. self.title.prefixedText | local allSort = (self.title.namespace == 0 and 'Main:' or '') .. self.title.prefixedText | ||
self:addCat('all', ' | self:addCat('all', '잘못된 위키백과 알림 상자', allSort) | ||
end | end | ||
if self.isSubstituted then | if self.isSubstituted then | ||
self:addCat('all', ' | self:addCat('all', '잘못 치환된 틀을 사용한 문서') | ||
end | end | ||
end | end | ||
448번째 줄: | 447번째 줄: | ||
function MessageBox:renderCategories() | function MessageBox:renderCategories() | ||
-- Convert category tables to strings and pass them through | -- Convert category tables to strings and pass them through | ||
-- [[Module:Category handler]]. | -- [[Module:Category handler]]. | ||
return | return categoryHandler{ | ||
main = table.concat(self.categories[0] or {}), | main = table.concat(self.categories[0] or {}), | ||
template = table.concat(self.categories[10] or {}), | template = table.concat(self.categories[10] or {}), | ||
473번째 줄: | 466번째 줄: | ||
:addClass('error') | :addClass('error') | ||
:wikitext(string.format( | :wikitext(string.format( | ||
' | '<code>%s[[틀:%s|%s]]%s</code> 틀이 잘못 치환되었습니다.', | ||
mw.text.nowiki('{{'), self.name, self.name, mw.text.nowiki('}}') | mw.text.nowiki('{{'), self.name, self.name, mw.text.nowiki('}}') | ||
)) | )) | ||
end | end | ||
516번째 줄: | 494번째 줄: | ||
-- image width to 52px. If any images in a div are wider than that, | -- image width to 52px. If any images in a div are wider than that, | ||
-- they may overlap with the text or cause other display problems. | -- they may overlap with the text or cause other display problems. | ||
imageLeftCell = imageLeftCell:tag('div'): | imageLeftCell = imageLeftCell:tag('div'):css('width', '52px') | ||
end | end | ||
imageLeftCell:wikitext(self.imageLeft or nil) | imageLeftCell:wikitext(self.imageLeft or nil) | ||
526번째 줄: | 504번째 줄: | ||
row:tag('td') | row:tag('td') | ||
:addClass('mbox-empty-cell') | :addClass('mbox-empty-cell') | ||
:cssText(self.imageEmptyCellStyle or nil) | |||
end | end | ||
534번째 줄: | 513번째 줄: | ||
-- collapsible. At the moment, only ambox uses this. | -- collapsible. At the moment, only ambox uses this. | ||
textCell:cssText(self.textstyle or nil) | textCell:cssText(self.textstyle or nil) | ||
local | local textCellSpan = textCell:tag('span') | ||
textCellSpan | |||
:addClass('mbox-text-span') | :addClass('mbox-text-span') | ||
:wikitext(self.issue or nil) | :wikitext(self.issue or nil) | ||
if | if not self.isSmall then | ||
textCellSpan:tag('span') | |||
:addClass('hide-when-compact') | :addClass('hide-when-compact') | ||
:wikitext(self.talk and (' ' .. self.talk) or nil) | :wikitext(self.talk and (' ' .. self.talk) or nil) | ||
:wikitext(self.fix and (' ' .. self.fix) or nil) | :wikitext(self.fix and ('<br />' .. self.fix) or nil) | ||
end | end | ||
textCellSpan:wikitext(self.date and (' ' .. self.date) or nil) | |||
if | if not self.isSmall then | ||
textCellSpan | |||
:tag('span') | :tag('span') | ||
:addClass('hide-when-compact') | :addClass('hide-when-compact') | ||
:wikitext(self.info and (' ' .. self.info) or nil) | :wikitext(self.info and (' ' .. self.info) or nil) | ||
end | end | ||
else | else | ||
570번째 줄: | 543번째 줄: | ||
-- If we are using a div, redefine imageRightCell so that the image | -- If we are using a div, redefine imageRightCell so that the image | ||
-- is inside it. | -- is inside it. | ||
imageRightCell = imageRightCell:tag('div'): | imageRightCell = imageRightCell:tag('div'):css('width', '52px') | ||
end | end | ||
imageRightCell | imageRightCell | ||
589번째 줄: | 562번째 줄: | ||
if self.invalidTypeError then | if self.invalidTypeError then | ||
root:tag('div') | root:tag('div') | ||
: | :css('text-align', 'center') | ||
:wikitext(string.format( | :wikitext(string.format( | ||
' | '이 메시지 상자는 유효하지 않은 "type=%s" 변수를 사용하고 있으므로 수정이 필요합니다.', | ||
self.type or '' | self.type or '' | ||
)) | )) | ||
616번째 줄: | 589번째 줄: | ||
function p.main(boxType, args, cfgTables) | function p.main(boxType, args, cfgTables) | ||
local box = MessageBox.new(boxType, | local newargs = {} | ||
for k, v in pairs(args) do | |||
newargs[localize.arg_map[k] or k] = v | |||
end | |||
if newargs.type ~= nil then | |||
newargs.type = localize.type_map[newargs.type] or newargs.type | |||
end | |||
if newargs.small ~= nil then | |||
newargs.small = localize.small_map[newargs.small] or newargs.small | |||
end | |||
if newargs.image == '없음' then newargs.image = 'none' end | |||
if newargs.imageright == '없음' then newargs.imageright = 'none' end | |||
if newargs.smallimage == '없음' then newargs.smallimage = 'none' end | |||
if newargs.smallimageright == '없음' then newargs.smallimageright = 'none' end | |||
if newargs.date then newargs.date = getDate(newargs.date) end | |||
local box = MessageBox.new(boxType, newargs, cfgTables or mw.loadData('Module:Message box/configuration')) | |||
box:setParameters() | box:setParameters() | ||
box:setCategories() | box:setCategories() |