76 lines
2.3 KiB
Lua
76 lines
2.3 KiB
Lua
-- translation
|
|
local S = mail.S
|
|
|
|
function mail.compile_contact_list(name, selected, playernames)
|
|
-- TODO: refactor this - not just compiles *a* list, but *the* list for the contacts screen (too inflexible)
|
|
local formspec = {}
|
|
local contacts = mail.get_contacts(name)
|
|
|
|
if playernames == nil then
|
|
local length = 0
|
|
for k, contact, i, l in mail.pairs_by_keys(contacts) do
|
|
if i == 1 then length = l end
|
|
formspec[#formspec + 1] = ","
|
|
formspec[#formspec + 1] = ","
|
|
formspec[#formspec + 1] = minetest.formspec_escape(contact.name)
|
|
formspec[#formspec + 1] = ","
|
|
local note = contact.note
|
|
-- display an ellipsis if the note spans multiple lines
|
|
local idx = string.find(note, '\n')
|
|
if idx ~= nil then
|
|
note = string.sub(note, 1, idx-1) .. ' ...'
|
|
end
|
|
formspec[#formspec + 1] = minetest.formspec_escape(note)
|
|
if type(selected) == "string" then
|
|
if string.lower(selected) == k then
|
|
selected = i
|
|
end
|
|
end
|
|
end
|
|
if length > 0 then
|
|
if selected and type(selected) == "number" then
|
|
formspec[#formspec + 1] = ";"
|
|
formspec[#formspec + 1] = tostring(selected + 1)
|
|
end
|
|
formspec[#formspec + 1] = "]"
|
|
else
|
|
formspec[#formspec + 1] = "]label[2,4.5;" .. S("No contacts") .. "]"
|
|
end
|
|
else
|
|
if type(playernames) == "string" then
|
|
playernames = mail.parse_player_list(playernames)
|
|
end
|
|
for i,c in ipairs(playernames) do
|
|
formspec[#formspec + 1] = ","
|
|
formspec[#formspec + 1] = ","
|
|
formspec[#formspec + 1] = minetest.formspec_escape(c)
|
|
formspec[#formspec + 1] = ","
|
|
if contacts[string.lower(c)] == nil then
|
|
formspec[#formspec + 1] = ""
|
|
else
|
|
local note = contacts[string.lower(c)].note
|
|
-- display an ellipsis if the note spans multiple lines
|
|
local idx = string.find(note, '\n')
|
|
if idx ~= nil then
|
|
note = string.sub(note, 1, idx-1) .. ' ...'
|
|
end
|
|
formspec[#formspec + 1] = minetest.formspec_escape(note)
|
|
end
|
|
if not selected then
|
|
if type(selected) == "string" then
|
|
if string.lower(selected) == string.lower(c) then
|
|
selected = i
|
|
end
|
|
end
|
|
end
|
|
end
|
|
if #playernames > 0 and selected and type(selected) == "number" then
|
|
formspec[#formspec + 1] = ";"
|
|
formspec[#formspec + 1] = tostring(selected + 1)
|
|
end
|
|
formspec[#formspec + 1] = "]"
|
|
end
|
|
return table.concat(formspec, "")
|
|
|
|
end
|