pandoc-crossref-0.3.13.0: lib-internal/Text/Pandoc/CrossRef/References/List.hs
{-
pandoc-crossref is a pandoc filter for numbering figures,
equations, tables and cross-references to them.
Copyright (C) 2015 Nikolay Yakimov <root@livid.pp.ru>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-}
{-# LANGUAGE OverloadedStrings #-}
module Text.Pandoc.CrossRef.References.List (listOf) where
import Control.Arrow
import Data.List
import qualified Data.Map as M
import qualified Data.Text as T
import Text.Pandoc.Definition
import Lens.Micro.Mtl
import Text.Pandoc.CrossRef.References.Types
import Text.Pandoc.CrossRef.Util.Options
import Text.Pandoc.CrossRef.Util.Util
listOf :: Options -> [Block] -> WS [Block]
listOf Options{outFormat=f} x | isLatexFormat f = return x
listOf opts (RawBlock fmt "\\listoffigures":xs)
| isLaTeXRawBlockFmt fmt
= use imgRefs >>= makeList opts lofTitle xs
listOf opts (RawBlock fmt "\\listoftables":xs)
| isLaTeXRawBlockFmt fmt
= use tblRefs >>= makeList opts lotTitle xs
listOf opts (RawBlock fmt "\\listoflistings":xs)
| isLaTeXRawBlockFmt fmt
= use lstRefs >>= makeList opts lolTitle xs
listOf _ x = return x
makeList :: Options -> (Options -> [Block]) -> [Block] -> M.Map T.Text RefRec -> WS [Block]
makeList opts titlef xs refs
= return $
titlef opts ++
(if chaptersDepth opts > 0
then Div ("", ["list"], []) (itemChap `map` refsSorted)
else OrderedList style (item `map` refsSorted))
: xs
where
refsSorted = sortBy compare' $ M.toList refs
compare' (_,RefRec{refIndex=i}) (_,RefRec{refIndex=j}) = compare i j
item = (:[]) . Plain . refTitle . snd
itemChap = Para . uncurry ((. (Space :)) . (++)) . (numWithChap . refIndex &&& refTitle) . snd
numWithChap = chapPrefix (chapDelim opts)
style = (1,DefaultStyle,DefaultDelim)