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

Module:CGroupViewer

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

模板介紹

此模板用于基于模块的公共转换组(CGroup)页面,以展示此转换组的内容。

參數及使用方法

此模板没有参数。

通常无需手工使用此模板,MediaWiki:Scribunto-doc-page-does-not-exist会将其显示于每一个公共转换组模块的上方。但如果一个公共转换组拥有模块文档,此模板不会自动使用,而在模块文档中手工使用此模板可以显示相关内容。

  1. local z = {}
  2. local error = require( 'Module:Error' )
  3. local function makeText( frame, v )
  4. local text = v.text
  5. if not v.preprocessed then
  6. text = frame:preprocess( text )
  7. end
  8. return mw.text.trim( text ) .. '\n'
  9. end
  10. local function makeItem( frame, v )
  11. local text = '* '
  12. if v.original then
  13. text = text .. '原文:' .. v.original .. ';'
  14. end
  15. text = text .. '-{D|' .. v.rule .. '}-当前显示为:-{|' .. v.rule .. '}-'
  16. if v.desc ~= nil and v.desc ~= '' then
  17. text = text .. '<br>说明:' .. v.desc
  18. elseif v.description ~= nil and v.description ~= '' then
  19. text = text .. '<br>说明:' .. v.description
  20. end
  21. return text .. '\n'
  22. end
  23. function z.main( frame )
  24. local name = frame.args[1]
  25. if not name or name == '' then
  26. return ''
  27. end
  28. local data = require( 'Module:CGroup/' .. name )
  29. if type( data ) ~= 'table' or not data.name or data.name == '' then
  30. return error.error{ '指定模块“' .. name .. '”不是有效的转换组' }
  31. end
  32. if data.name ~= name then
  33. return frame:expandTemplate{ title = 'Template:CGroup redirect', args = { 'Module:CGroup/' .. data.name } }
  34. end
  35. local pieces = { '__NOEDITSECTION__<div class="infoBox" style="width:80%;border-left: 10px solid #1e90ff;"><div class="infoBoxContent"><div class="infoBoxIcon">[[File:Information.svg|25px|link=]]</div><div class="infoBoxText">以下是[[Help:繁简转换/公共转换组|公共转换组]]<b>“' .. data.description .. '”</b>的可读版本,由[[模块:CGroupViewer]]解析。</div></div></div>\n\n' }
  36. for i, v in ipairs( data.content ) do
  37. if v.type == 'text' then
  38. table.insert( pieces, makeText( frame, v ) )
  39. elseif v.type == 'item' then
  40. table.insert( pieces, makeItem( frame, v ) )
  41. end
  42. end
  43. table.insert( pieces, '[[分类:公共转换组模块|' .. name .. ']]' )
  44. return table.concat( pieces )
  45. end
  46. function z.dialog( frame )
  47. local name = frame.args[1]
  48. if not name or name == '' then
  49. return ''
  50. end
  51. local data = require( 'Module:CGroup/' .. name )
  52. local pieces = { '<div class="mw-collapsible mw-collapsed"><span class="plainlinks" style="float: right;">&#91;[',
  53. tostring( mw.uri.fullUrl( 'Module:CGroup/' .. name, { action = 'edit' } ) ), ' 编辑]&#93;</span>\n',
  54. '; 本文使用[[Help:繁简转换/公共转换组|公共转换组]]“' .. data.description .. '”。\n',
  55. '<div class="mw-collapsible-content">\n' }
  56. for i, v in ipairs( data.content ) do
  57. if v.type == 'item' then
  58. table.insert( pieces, makeItem( frame, v ) )
  59. end
  60. end
  61. table.insert( pieces, '</div></div>' )
  62. return table.concat( pieces )
  63. end
  64. function z.json( frame )
  65. local name = frame.args[1]
  66. if not name or name == '' then
  67. return 'null'
  68. end
  69. local data = require( 'Module:CGroup/' .. name )
  70. local json = require( 'Module:MicroJSON' )
  71. return json.encode_object( data, {
  72. name = '',
  73. description = '',
  74. content = {
  75. { type = '', [true] = '' },
  76. },
  77. } )
  78. end
  79. return z