Module:CharTree: Difference between revisions

no edit summary
(Undo revision 809257 by Ritsu (talk))
Tag: Undo
No edit summary
Line 8: Line 8:
     local char_tree = mw.html.create('div'):addClass('char-banner-tree'):attr('data-base', args[1])
     local char_tree = mw.html.create('div'):addClass('char-banner-tree'):attr('data-base', args[1])
     local out = {};
     local out = {};
     local char, file_name, link, nopath, nopathnojob, entry;
     local char, file_name, link, nopath, nopathnojob, entry, image_arg;
     for job_iter=1,3,1 do
     for job_iter=1,3,1 do
         for path_iter=1,4,1 do
         for path_iter=1,4,1 do
             char = args[path_iter .. 'x' .. job_iter] or 'Unreleased';
             char = args[path_iter .. 'x' .. job_iter] or 'Unreleased';
             nopath = 'no' .. path_iter .. 'path';
             nopath = 'no' .. path_iter .. 'path';
             nopathnojob = 'no' .. path_iter .. 'path' .. job_iter .. 'job';
             nopathnojob = 'no' .. path_iter .. 'x' .. job_iter;
             entry = char_tree:tag('div'):addClass('char-banner-tree-image')
             entry = char_tree:tag('div'):addClass('char-banner-tree-image')


             if args[nopath] ~= nil and args[nopath] ~= 'true' then
             if char ~= 'Unreleased' then
                 for i=1, 4, 1 do
                 file_name = char:gsub(':', '');
                    args[path_iter .. 'x' .. i] = args[nopath]
                link = '|link=' .. char
                end
             end
             end


             if char ~= 'Unreleased' then
             if args[nopath] ~= nil and args[nopath] ~= 'true' then
                 file_name = 'Icon - ' .. char:gsub(':', '');
                 char = args[nopath]
                link = '|link=' .. char
             end
             end
              
              
Line 32: Line 30:
             end
             end


             entry:attr('data-class-name', char):wikitext('[[File:' .. file_name .. '.png' .. link .. ']]');
            image_arg = args['image' .. path_iter .. 'x' .. job_iter]
 
            if image_arg then
                file_name = image_arg
            end
 
             entry:attr('data-class-name', char):wikitext('[[File:Icon - ' .. file_name .. '.png' .. link .. ']]');


             if (args[nopath] ~= nil) then
             if (args[nopath] ~= nil) then