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

Module:Lyrics/hover

贴贴♀百科,万娘皆可贴的百科全书!转载请标注来源页面的网页链接,并声明引自贴贴百科。内容不可商用。
跳到导航 跳到搜索
Template-info.svg 模块文档  [创建] [刷新]
  1. local module = {}
  2. local getArgs = require('Module:Arguments').getArgs
  3. local buildLyrics = require('Module:Lyrics')._lyrics
  4. local initHandler = require('Module:HooksHandler').init
  5. local preSplit = function (original, translated, customArgs)
  6. -- 旧的示例里面翻译部分也有加,但是实际上没有必要
  7. return original, mw.ustring.gsub(mw.ustring.gsub(translated, '#HoverWithNextLine', ''), '#NoHover', '')
  8. end
  9. local preParse = function (original, translated, customArgs)
  10. customArgs.noHover = {}
  11. customArgs.hoverWithNextLine = {}
  12. for idx, val in ipairs(original) do
  13. val = mw.ustring.gsub(val, '#NoHover', function()
  14. customArgs.noHover[idx] = true
  15. return ''
  16. end)
  17. original[idx] = mw.ustring.gsub(val, '#HoverWithNextLine', function()
  18. customArgs.hoverWithNextLine[idx] = true
  19. return ''
  20. end)
  21. end
  22. end
  23. local postParse = function (lines, customArgs)
  24. local index, all, add, start = 1, #lines, 0, nil
  25. local warp = function (_start)
  26. if not _start then _start = start end
  27. table.insert(lines, _start, '<div class="bg_hover">')
  28. table.insert(lines, index + 2, '</div>')
  29. index = index + 2
  30. add = add + 2
  31. start = nil
  32. end
  33. repeat
  34. if not customArgs.noHover[index - add] then
  35. if not customArgs.hoverWithNextLine[index - add] then
  36. warp(start or index)
  37. else
  38. start = start or index
  39. end
  40. elseif start then
  41. warp()
  42. end
  43. index = index + 1
  44. until index > all + add
  45. if start then warp() end
  46. end
  47. function module.initHooks(args, hooksHandler, customArgs)
  48. return hooksHandler({ preSplit = preSplit, preParse = preParse, postParse = postParse })
  49. end
  50. function module.main(frame)
  51. local args = getArgs(frame, {wrappers='Template:LyricsKai/colors/hover/Sandbox'})
  52. local hooksHandler, customArgs = initHandler(), {}
  53. local hookTrigger = module.initHooks(args, hooksHandler, customArgs)
  54. return buildLyrics(args, hookTrigger, customArgs)
  55. end
  56. return module