Dota 2 Wiki
Registre-se
Advertisement

A documentação para este módulo pode ser criada na página Módulo:Tabber/doc

local p = {}
local getArgs = require( 'Module:Arguments' ).getArgs


-- Implements Template:Tabs Hero.
function p.hero(frame)
  local args = getArgs(frame, {
    wrappers = {
      'Template:Tabs Hero'
    }
  })
  local hero = args[1] or mw.title.getCurrentTitle().baseText -- Use {{BASEPAGENAME}} if no page is given.
  
  local subpage = function( page ) return hero .. '/' .. page end
  local custom = function( number ) if args['custom' .. number] then return subpage( args['custom' .. number] ) end end
  
  local tabs = { 
    ['this'] = args['this'],
    
    ['link1'] = hero,
    ['name1'] = 'Herói',
    
    ['link2'] = subpage( 'Guia' ),
    ['name2'] = 'Estratégia',
    
    ['link3'] = subpage( 'Neutralizações' ),
    ['name3'] = 'Neutralizações',
    
    ['link4'] = subpage( 'Equipamento' ),
    ['name4'] = 'Equipamento',
    
    ['link5'] = subpage( 'Aparatos' ),
    ['name5'] = 'Aparatos',

    ['link6'] = subpage( 'Talentos' ),
    ['name6'] = 'Talentos',

    ['link7'] = subpage( 'Relíquias' ),
    ['name7'] = 'Relíquias',
    
    ['link8'] = subpage( 'Respostas' ),
    ['name8'] = 'Respostas',
    
    ['link9'] = subpage( 'Sons' ),
    ['name9'] = 'Sons',
    
    ['link10'] = subpage( 'História' ),
    ['name10'] = 'História',
    
    ['link11'] = custom( '1' ),
    ['name11'] = args['custom1'],
    
    ['link12'] = custom( '2' ),
    ['name12'] = args['custom2'],
    
    ['link13'] = subpage( 'Habilidades antigas' ),
    ['name13'] = 'Habilidades antigas',
    
    ['link14'] = subpage( 'Atualizações' ),
    ['name14'] = 'Atualizações',
    
    ['link15'] = subpage( 'Bugs' ),
    ['name15'] = 'Bugs',
  }
  
  return p._main( tabs )
end

-- Implements Template:Tabber.
function p.main(frame)
  local args = getArgs(frame, {
    wrappers = {
      'Template:Tabber'
    }
  })
  return p._main( args )
end

function p._main( args )
  local current_page = args['this'] or mw.title.getCurrentTitle().prefixedText

  local rows = {}
  for n=1,15 do
    if args['link' .. n] then
      -- Use the link as the name if none is given.
      local name = args['name' .. n] or args['link' .. n]
      if args['link' .. n] == current_page then
        -- The active tab.
        table.insert( rows, string.format( '<div class="page-tabber-tab active-tab">%s</div>', name ) )
      else
        -- The inactive tabs.
        local link = string.format( '[[%s|%s]]', args['link' .. n], name )
        table.insert( rows, string.format( '<div class="page-tabber-tab inactive-tab">%s</div>', link ) )
      end
    end
  end
  
  -- The separator is used for the space between two tabs.
  local separator = '\n<div class="page-tabber-separator">&nbsp;</div>\n'
  -- The tail fills the space between the last tab and the end of the line.
  local tail = '<div class="page-tabber-separator tail">&nbsp;</div>'
  
  return string.format( '<div id="pageTabber" class="page-tabber">\n%s\n%s\n</div>', table.concat( rows, separator ), tail )
end

return p
Advertisement