Modul:About-distinguish

Dari Wikipedia bahasa Indonesia, ensiklopedia bebas

local mHatnote = require('Modul:Hatnote')
local mHatlist = require('Modul:Hatnote list')
local mArguments --initialize lazily
local mTableTools = require('Modul:TableTools')
local checkType = require('libraryUtil').checkType
local p = {}

function p.aboutDistinguish (frame)
	mArguments = require('Modul:Arguments')
	local args = mArguments.getArgs(frame)
	return p._aboutDistinguish(args)
end

function p._aboutDistinguish(args, options)
	-- Type checks and defaults
	checkType('_aboutDistinguish', 1, args, 'table')
	if not args[1] then
		return mHatnote.makeWikitextError(
			'masukan topik "tentang" tidak tersedia',
			'Templat:About-distinguish',
			args.category
		)
	end
	if not args[2] then
		return mHatnote.makeWikitextError(
			'masukan halaman untuk dibedakan tidak tersedia',
			'Templat:About-distinguish',
			args.category
		)
	end
	checkType('_aboutDistinguish', 2, options, 'table', true)
	options = options or {}
	local defaultOptions = {
		defaultPageType = 'Halaman',
		namespace = mw.title.getCurrentTitle().namespace,
		pageTypesByNamespace = {
			[0] = 'Halaman',
			[14] = 'Kategori'
		},
		sectionString = 'bagian'
	}
	for k, v in pairs(defaultOptions) do
		if options[k] == nil then options[k] = v end
	end

	-- Set pieces of initial "about" string
	local pageType = (args.section and options.sectionString) or
		options.pageTypesByNamespace[options.namespace] or
		options.defaultPageType
	args = mTableTools.compressSparseArray(args)
	local about = table.remove(args, 1)


	--Assemble everything together and return
	local text = string.format(
		'%s ini berisi artikel tentang %s, yang bukan mengenai %s.',
		pageType,
		about,
		mHatlist.orList(args, true)
	)
	return mHatnote._hatnote(text)
end

return p