Module:Layout/Production/Content/Book

Uit Wikibooks
 Deze module is nog in ontwikkeling (versie 0.0) en wordt getest.

De Module:Layout is bedoeld om snel, consistent en uitgebreid een pagina op te maken.
Er is een op de module afgestemde handleiding over deze onderwijswiki beschikbaar.

De module wordt geïnitialiseerd met de configuratie in Module:Layout/Production/Configuration.

Controleer op scriptfouten of opmaak notificaties.




local content = {}

function content.main( call )
	local array, extract, text = call.include( "array", "extract", "text" );
	
    -- Extend the call variable with messages that are specific to the type of the objects book includes
    call.message.PROGRESS   = call.include( call.language_path .. "/Progress" );
    
    call.content = {};
    call.content.wikipedia  = false;
    call.content.wikijunior = false;
    if call.reference then 
     	if array.search( call.reference, "wikipedia" ) then 
            call.message.WIKIPEDIA  = call.include( call.language_path .. "/Wikipedia" );
    		call.content.wikipedia  = true;
    	end
    	if array.search( call.reference, "wikijunior" ) then 
            call.message.WIKIJUNIOR = call.include( call.language_path .. "/Wikijunior" );
    		call.content.wikijunior  = true;
    	end
        if ( call.title == nil or type( call.title ) ~= 'string' or call.title == "" ) then call.title = call.caller; end
    end
	call.content.chapter = {}
	local text_strings = {}
	for i, s in ipairs(call.unnamed) do
	   if s and s ~= "" then
	   	  table.insert(text_strings, text.trim(s)) 
	   end
	end
	call.content.text = text_strings

    call.content.series = {};
    call.content.series.image = "";
    call.content.series.link = "";
    call.content.series.book = {};
    if call.collection[1] then 
		call.content.series.link = text.trim( call.collection[1] );
		local wiki_series = mw.title.new( call.content.series.link );
		call.content.series.link = mw.ustring.format('[[%s|%s]]', call.content.series.link, call.content.series.link );
		if wiki_series then
			local source_parameters = extract.parameter( wiki_series:getContent(), call.message.TEMPLATENAME, call.message.PARAM.SOURCE, call );
		    if source_parameters and source_parameters[1] and #source_parameters[1] >0 then
		    	call.content.series.image = mw.ustring.format('[[image:%s|30px]] ', source_parameters[1])
		    end
		    local title_parameters = extract.parameter( wiki_series:getContent(), call.message.TEMPLATENAME, call.message.PARAM.TITLE, call );
		    if title_parameters and title_parameters[1] then
		    	call.content.series.link = mw.ustring.format('[[%s|%s]]', text.trim( call.collection[1] ), title_parameters[1] );
		    end
		    local part_parameters = extract.parameter( wiki_series:getContent(), call.message.TEMPLATENAME, call.message.PARAM.PART, call );
		    if part_parameters and part_parameters[1] then
		    	local parts = text.split( part_parameters[1], true);
				for i, book in ipairs( parts ) do
				    if book and book ~= "" then
			            local unformatted_book = book:gsub("­", "")
				        table.insert( call.content.series.book, extract.book_progress( unformatted_book, call ) );
				    end
				end
		    end
		end
    end

	call.content.max_number_of_chapter_title_lines = 0
	call.content.max_number_of_chapter_headings = 0
	for i, chapter in ipairs(call.part) do
	    if chapter and chapter ~= "" then
	    	chapter = mw.text.trim( chapter )
		    local chapter_title_lines = select(2, chapter:gsub('­', '')) + 1
			if chapter_title_lines > call.content.max_number_of_chapter_title_lines then
			    call.content.max_number_of_chapter_title_lines = chapter_title_lines
			end
            local formatted_chapter = chapter:gsub(" ", " ")
            formatted_chapter = formatted_chapter:gsub("&shy;", "<br>")
            chapter = chapter:gsub("&shy;", "")
            
	    	local new_chapter = {}
	    	new_chapter.name = chapter
	    	new_chapter.number = i
	    	new_chapter.caption = call.message.OBJECT.CHAPTER;
	    	new_chapter.subelements = {}
	    	local currentPageTitle = mw.title.getCurrentTitle().prefixedText;
			local chapter_text = mw.ustring.format('[[%s|%s]]', chapter, formatted_chapter)
			local wiki_chapter = nil
		    if currentPageTitle then
		    	local page_title = currentPageTitle
			    wiki_chapter = mw.title.new(page_title .. "/" .. chapter)
		    	if wiki_chapter then
			        chapter_text = mw.ustring.format('[[%s|%s]]', wiki_chapter.prefixedText, formatted_chapter)
			        local extract = call.include( "extract" );
			        new_chapter.subelements = extract.heading( wiki_chapter:getContent(), call );
					local aantal_headings = #new_chapter.subelements
					if aantal_headings > call.content.max_number_of_chapter_headings then
					    call.content.max_number_of_chapter_headings = aantal_headings
					end
		    	end
		    end
            new_chapter.text = chapter_text;
			new_chapter.button = call.message.BUTTON.READ;
			if wiki_chapter then
			    new_chapter.button = mw.ustring.format( '[[%s|%s]]', wiki_chapter.prefixedText, new_chapter.button );
			end
	        table.insert( call.content.chapter, new_chapter );
	    end
	end

    return call;
end

return content;
Informatie afkomstig van https://nl.wikibooks.org Wikibooks NL.
Wikibooks NL is onderdeel van de wikimediafoundation.