置顶公告:【置顶】关于临时开启评论区所有功能的公告(2022.10.22) | 【置顶】关于本站Widget恢复使用的公告
  • 你好~!欢迎来到萌娘百科镜像站!如需查看或编辑,请联系本站管理员注册账号。
  • 本镜像站和其他萌娘百科的镜像站无关,请注意分别。

Module:NoteTA

贴贴♀百科,万娘皆可贴的百科全书!转载请标注来源页面的网页链接,并声明引自贴贴百科。内容不可商用。
跳到导航 跳到搜索
Template-info.svg 模块文档  [查看] [编辑] [历史] [刷新]

本模块用于执行{{NoteTA}}模板,请到模板页阅读具体用法。

  1. local z = {}
  2. local WikitextLC = require( 'Module:WikitextLC' )
  3. function Tcode( args )
  4. if args.T == nil or args.T == '' then
  5. return ''
  6. end
  7. local div = mw.html.create( 'div' )
  8. :attr( 'class', 'noteTA-title' )
  9. :attr( 'data-noteta-code', args.T )
  10. :wikitext( WikitextLC.title( args.T ) )
  11. if args.dt ~= nil and args.dt ~= '' then
  12. div:attr( 'data-noteta-desc', args.dt )
  13. end
  14. return tostring( div )
  15. end
  16. function group( name, frame )
  17. if name == nil or name == '' then
  18. return ''
  19. end
  20. local moduleTitle = mw.title.makeTitle( 'Module', 'CGroup/' .. name )
  21. if moduleTitle and moduleTitle.exists then
  22. if frame:callParserFunction('#var', 'noteta-'..name) == '1' then
  23. return ''
  24. end
  25. frame:callParserFunction('#vardefine', 'noteta-'..name, '1')
  26. local data = require( 'Module:CGroup/' .. name )
  27. local pieces = {}
  28. if data.content then
  29. for i, v in ipairs( data.content ) do
  30. if v.type == 'item' and v.rule then
  31. table.insert( pieces, '-{H|' .. v.rule .. '}-' )
  32. end
  33. end
  34. return tostring( mw.html.create( 'div' )
  35. :attr( 'data-noteta-group-source', 'module' )
  36. :attr( 'data-noteta-group', data.name or name )
  37. :wikitext( table.concat( pieces ) ) )
  38. end
  39. end
  40. local templateTitle = mw.title.makeTitle( 'Template', 'CGroup/' .. name )
  41. if templateTitle and templateTitle.exists then
  42. return frame:expandTemplate{ title = templateTitle }
  43. end
  44. return tostring( mw.html.create( 'div' )
  45. -- :attr( 'id', 'noteTA-group-' .. mw.uri.anchorEncode( name ) )
  46. :attr( 'data-noteta-group-source', 'none' )
  47. :attr( 'data-noteta-group', name ) )
  48. end
  49. function Gcode( args, frame )
  50. local code = {}
  51. for i = 1, 30 do
  52. table.insert( code, group( args['G' .. i], frame ) )
  53. end
  54. code = table.concat( code )
  55. if code ~= '' then
  56. code = tostring( mw.html.create( 'div' )
  57. :attr( 'class', 'noteTA-group' )
  58. :wikitext( code ) )
  59. if args.G31 ~= nil then
  60. code = code .. '[[Category:NoteTA模板参数使用数量超过限制的页面|G]]'
  61. end
  62. end
  63. return code
  64. end
  65. function local_( i, code, desc )
  66. if code == nil or code == '' then
  67. return ''
  68. end
  69. local div = mw.html.create( 'div' )
  70. -- :attr( 'id', 'noteTA-local-' .. i )
  71. :attr( 'data-noteta-code', code )
  72. :wikitext( WikitextLC.hidden( code ) )
  73. if desc ~= nil and desc ~= '' then
  74. div:attr( 'data-noteta-desc', desc )
  75. end
  76. return tostring( div )
  77. end
  78. function Lcode( args )
  79. local code = {}
  80. for i = 1, 30 do
  81. table.insert( code, local_( i, args[i], args['d' .. i] ) )
  82. end
  83. code = table.concat( code )
  84. if code ~= '' then
  85. code = tostring( mw.html.create( 'div' )
  86. :attr( 'class', 'noteTA-local' )
  87. :wikitext( code ) )
  88. if args[31] ~= nil then
  89. code = code .. '[[Category:NoteTA模板参数使用数量超过限制的页面|L]]'
  90. end
  91. end
  92. return code
  93. end
  94. function z.main( frame )
  95. local args
  96. if frame == mw.getCurrentFrame() then
  97. -- Being called from {{noteTA}}
  98. args = frame:getParent().args
  99. else
  100. -- Being called from another module
  101. args = frame
  102. frame = mw.getCurrentFrame()
  103. end
  104. local Tc = Tcode( args )
  105. local Gc = Gcode( args, frame )
  106. local Lc = Lcode( args )
  107. local code = Tc .. Gc .. Lc
  108. if code ~= '' then
  109. local hash = 0
  110. code = frame:extensionTag{
  111. name = 'indicator',
  112. content = '[[File:Zh conversion icon m.svg|35px|本页使用了标题或全文手工转换|link=]]',
  113. args = { name = string.format( 'noteTA-%x', hash ) },
  114. } .. tostring( mw.html.create( 'div' )
  115. :attr( 'id', string.format( 'mobile-noteTA-%x', hash ) )
  116. :cssText( 'display:none;' )
  117. :wikitext( '[[File:Zh conversion icon m.svg|35px|本页使用了标题或全文手工转换|link=]]' ) ) ..
  118. tostring( mw.html.create( 'div' )
  119. :attr( 'id', string.format( 'noteTA-%x', hash ) )
  120. :attr( 'class', 'noteTA' )
  121. :wikitext( code ) )
  122. local title = mw.title.getCurrentTitle()
  123. if title:inNamespace( 'Template' ) and title.subpageText ~= 'doc' then
  124. code = code .. '[[Category:放置于模板的noteTA]]'
  125. end
  126. end
  127. return code
  128. end
  129. return z