Moduł:Wskaźnik: Różnice pomiędzy wersjami
Przejdź do nawigacji
Przejdź do wyszukiwania
| [wersja przejrzana] | [wersja przejrzana] |
rozszerzono moduł (umożliwiono obsługę z argumentem "text" zamiast dedykowanej grafiki poprzez argument "file", modyfikacja celem uzgodnienia z "Użytkownik:Kacpereng166/vote"; test logiczny i komunikat "error" został zastąpiony przez "assert") |
|||
| Linia 5: | Linia 5: | ||
end | end | ||
function p.indicator(frame) | function p.indicator(frame) | ||
local empty = give(frame, 'empty') or '{{{1}}}' | |||
local file = give(frame, 'file') | local file = give(frame, 'file') | ||
local text = file and '[[Plik:'..file..']]' or give(frame, 'text') | local text = file and '[[Plik:'..file..']]' or give(frame, 'text') | ||
assert(text, 'text') | assert(text, 'text') | ||
assert(file ~= | assert(mw.text.truncate(file or empty, #empty, '') ~= empty, 'file') | ||
frame:extensionTag | frame:extensionTag | ||
{ | { | ||
Wersja z 00:22, 30 maj 2025
W tym module nie ma dokumentacji. Jeśli wiesz jak używać tego modułu, proszę, podaj odpowiednie informacje.
local p = {}
function give(frame, key)
local result = mw.text.trim(frame.args[key] or '')
return #result > 0 and result or nil
end
function p.indicator(frame)
local empty = give(frame, 'empty') or '{{{1}}}'
local file = give(frame, 'file')
local text = file and '[[Plik:'..file..']]' or give(frame, 'text')
assert(text, 'text')
assert(mw.text.truncate(file or empty, #empty, '') ~= empty, 'file')
frame:extensionTag
{
name = 'indicator',
content = text,
args =
{
name = give(frame, 'name') or tostring(os.time())
},
}
end
return p