local export = {}
local pos_functions = {}

local lang = require("Module:languages").getByCode("kkh")
local script = require("Module:scripts").getByCode("Lana")
local PAGENAME = mw.title.getCurrentTitle().text

function export.show(frame)

	local args = frame:getParent().args
	local poscat = frame.args[1] or error("Part of speech has not been specified. Please pass parameter 1 to the module invocation.")
	-- หมวดหมู่เป็นภาษาไทย
	local poscat_th = require("Module:utilities").translate_term(poscat)
 
	local head = args["head"]
	local tr = args["tr"]
	
	local data = {lang = lang, pos_category = poscat_th, categories = {}, heads = {head}, translits = {tr}, inflections = {}}
	
	if args["cat2"] then
		table.insert(data.categories, args["cat2"] .. "ภาษาเขิน")
	end
	if args["cat3"] then
		table.insert(data.categories, args["cat3"] .. "ภาษาเขิน")
	end
	
	if pos_functions[poscat_th] then
		pos_functions[poscat_th](args, data)
	end

	local content = mw.title.new(PAGENAME):getContent()
	local IPATemplate = mw.ustring.match(content, "{{IPA")

	if not IPATemplate then
		table.insert(data.categories, "ศัพท์ภาษาเขินที่ไม่มีการออกเสียงไอพีเอ")
	end

	if mw.ustring.match(PAGENAME,"[ᨠᨡᨢᨣᨤᨥᨦᨧᨨᨩᨪᨫᨬᨭᨮᨰᨱᨲᨳᨴᨵᨶᨸᨹᨺᨻᨼᨽᨾᨿᩁᩃᩆᩇᩈᩉᩊ]᩠?ᩅ?[ᩩᩪ]?[ᩢᩳᩫᩥᩦᩧᩨ]?᩵") then
		table.insert(data.categories, "ศัพท์ภาษาเขินที่มีอักษรคู่และไม้เอก") --Temporary category. Will delete.
	end

	return require("Module:headword").full_headword(data)

end

pos_functions["คำนาม"] = function(args, data)

	local classifiers = {label = "คำลักษณนาม"}

	if args[1] then
		for _,par in ipairs(args) do
			if par == "*" then
				table.insert(classifiers, PAGENAME) -- shorthand
				table.insert(data.categories, "คำลักษณนามภาษาเขิน")
				table.insert(data.categories, "คำนามภาษาเขินที่ใช้คำลักษณนาม " .. PAGENAME)
			else
				table.insert(classifiers, par)
				table.insert(data.categories, "คำนามภาษาเขินที่ใช้คำลักษณนาม " .. par)
			end
		end
		table.insert(data.inflections, classifiers)
	end

end

pos_functions["คำกริยา"] = function(args, data)

	local par1 = args[1]; if par1 == "" then par1 = nil end
	local par2 = args[2]; if par2 == "" then par2 = nil end
	local abstract_forms = {label = "คำอาการนาม", accel = {form = "abstract-noun"}}

	if par1 ~= "-" then
		if not par1 then
			table.insert(abstract_forms, "ᨠᩣ᩠ᩁ" .. PAGENAME)
		else
			if par1 == "~" then
				table.insert(abstract_forms, "ᨠᩣ᩠ᩁ" .. PAGENAME)
				table.insert(abstract_forms, "ᨣ᩠ᩅᩣ᩠ᨾ" .. PAGENAME)
			else
				table.insert(abstract_forms, par1)
				table.insert(abstract_forms, par2)
			end
		end
		table.insert(data.inflections, abstract_forms)
	end

end

pos_functions["คำคุณศัพท์"] = function(args, data)

	local par1 = args[1]; if par1 == "" then par1 = nil end
	local par2 = args[2]; if par2 == "" then par2 = nil end
	local abstract_forms = {label = "คำอาการนาม", accel = {form = "abstract-noun"}}

	if par1 ~= "-" then
		if not par1 then
			table.insert(abstract_forms, "ᨣ᩠ᩅᩣ᩠ᨾ" .. PAGENAME)
		else
			table.insert(abstract_forms, par1)
			table.insert(abstract_forms, par2)
		end
		table.insert(data.inflections, abstract_forms)
	end

end

-- same logic
pos_functions["คำกริยาวิเศษณ์"] = pos_functions["คำคุณศัพท์"]
-- same logic
pos_functions["คำวิสามานยนาม"] = pos_functions["คำนาม"]

return export