Module:Cooking Effects List: Difference between revisions

Jump to navigation Jump to search
m
no edit summary
mNo edit summary
mNo edit summary
 
(6 intermediate revisions by the same user not shown)
Line 15: Line 15:
function p.basicEffects(frame)
function p.basicEffects(frame)
   return p.main(frame, 'UnitEffects')
   return p.main(frame, 'UnitEffects')
end
function p.triggerConditions(frame)
  return p.main(frame, 'Triggers')
end
function p.triggeredEffects(frame)
  return p.main(frame, 'TriggeredEffects')
end
function p.setcols(type)
    if type == 'UnitEffects' then
            effectrow = 'Basic Effect'
    elseif type == 'Triggers' then
            effectrow = 'Trigger Condition'
    elseif type == 'TriggeredEffects' then
            effectrow = 'Triggered Effect'
    else
          error('There was no effect type name: ' .. (type or 'nil'))
    end
    COLUMNS[1] = effectrow
end
end


Line 20: Line 41:


frame=mw.getCurrentFrame()
frame=mw.getCurrentFrame()
        p.setcols(effecttype)
local data = h.makeAndRunQuery(effecttype)
local data = h.makeAndRunQuery(effecttype)
         h.formatRows(data, effecttype)
         h.formatRows(data, effecttype)
Line 34: Line 56:
                 join = {'CE._ID=CEID._rowID'},
                 join = {'CE._ID=CEID._rowID'},
fields = {'CEID._value=Type', 'CONCAT("[[", CE._pageName, "|", PlainName,"]]")=CookingDomain', 'PlainName'},
fields = {'CEID._value=Type', 'CONCAT("[[", CE._pageName, "|", PlainName,"]]")=CookingDomain', 'PlainName'},
where = 'CE._pageNamespace="0"',
where = 'CE._pageNamespace="0" AND CEID._value <> ""',
orderBy = 'PlainName ASC'
orderBy = 'PlainName ASC'
}
}
Line 41: Line 63:


function h.formatRows(data, type)
function h.formatRows(data, type)
util_map.rowsInPlace(data, h.formatOneRow)
util_map.rowsInPlace(data, h.formatOneRow, type)
end
end


function h.formatOneRow(row)
function h.formatOneRow(row, type)
         row['Unit Effects'] = row.Type
         row[COLUMNS[1]] = row.Type
         row['Cooking Domain'] = row.CookingDomain:gsub('-based', '')
         row['Cooking Domain'] = row.CookingDomain:gsub('-based]]', ']]')
         row['Possible Ingredients'] = mw.getCurrentFrame():expandTemplate{ title = 'food that grants', args = { row.PlainName, 'commas' } }
         row['Possible Ingredients'] = mw.getCurrentFrame():expandTemplate{ title = 'food that grants', args = { row.PlainName, 'commas' } }
end
end
Line 53: Line 75:
local output = mw.html.create()
local output = mw.html.create()
local tbl = output:tag('table')
local tbl = output:tag('table')
:addClass('wikitable')
:addClass('cargoDynamicTable display dataTable')
:addClass('sortable')
:addClass('sortable')
util_html.printHeader(tbl, COLUMNS)
-- util_html.printHeader(tbl, COLUMNS)
        tbl:tag('tr')
          :tag('th'):css('width','470px'):wikitext(COLUMNS[1])
          :tag('th'):css('width','130px'):wikitext(COLUMNS[2])
          :tag('th'):wikitext(COLUMNS[3])
util_html.printRowsByList(tbl, data, COLUMNS)
util_html.printRowsByList(tbl, data, COLUMNS)
return output
return output

Navigation menu