1 {-# LANGUAGE DuplicateRecordFields #-}
2 {-# LANGUAGE FlexibleInstances #-}
3 {-# LANGUAGE FlexibleContexts #-}
4 {-# LANGUAGE MultiParamTypeClasses #-}
5 {-# LANGUAGE OverloadedStrings #-}
6 {-# LANGUAGE ScopedTypeVariables #-}
7 {-# LANGUAGE TypeApplications #-}
8 {-# LANGUAGE ViewPatterns #-}
9 {-# OPTIONS_GHC -fno-warn-orphans #-}
10 module Language.DTC.Write.HTML5 where
12 -- import Control.Monad.Trans.Class (MonadTrans(..))
13 -- import Data.Functor.Identity (Identity(..))
14 -- import Data.Sequence (Seq)
15 -- import Data.Set (Set)
16 -- import Data.Traversable (Traversable(..))
17 -- import qualified Data.Sequence as Seq
18 -- import qualified Data.TreeSeq.Strict as Tree
19 import Control.Applicative (Applicative(..))
20 import Control.Category
23 import Data.Char (Char)
24 import Data.Default.Class (Default(..))
25 import Data.Foldable (Foldable(..), concat)
26 import Data.Function (($), const, flip, on)
27 import Data.Functor (Functor(..), (<$>))
28 import Data.Functor.Compose (Compose(..))
30 import Data.Map.Strict (Map)
31 import Data.Maybe (Maybe(..), maybe, mapMaybe, fromJust, maybeToList)
32 import Data.Monoid (Monoid(..))
33 import Data.Ord (Ord(..))
34 import Data.Semigroup (Semigroup(..))
35 import Data.String (String)
36 import Data.Text (Text)
37 import Data.TreeSeq.Strict (Tree(..), Trees)
38 import Data.Tuple (snd)
39 import System.FilePath (FilePath)
40 import Text.Blaze ((!))
41 import Text.Blaze.Html (Html)
42 import Text.Show (Show(..))
43 import qualified Control.Monad.Trans.State as S
44 import qualified Data.Char as Char
45 import qualified Data.List as List
46 import qualified Data.Map.Strict as Map
47 import qualified Data.Sequence as Seq
48 import qualified Data.Strict.Maybe as Strict
49 import qualified Data.Text as Text
50 import qualified Data.Text.Lazy as TL
51 import qualified Data.TreeMap.Strict as TreeMap
52 import qualified Data.TreeSeq.Strict as Tree
53 import qualified Data.TreeSeq.Strict.Zipper as Tree
54 import qualified Text.Blaze.Html5 as H
55 import qualified Text.Blaze.Html5.Attributes as HA
56 import qualified Text.Blaze.Internal as H
58 import Text.Blaze.Utils
59 import Data.Locale hiding (localize, Index)
60 import qualified Data.Locale as Locale
62 import Language.DTC.Write.XML ()
63 import Language.DTC.Write.Plain (Plain, Plainify(..))
64 import qualified Language.DTC.Write.Plain as Plain
65 import qualified Language.DTC.Document as DTC
66 import qualified Language.DTC.Anchor as Anchor
68 (<&>) :: Functor f => f a -> (a -> b) -> f b
73 type Html5 = StateMarkup State ()
78 { state_styles :: Map FilePath CSS
79 , state_scripts :: Map FilePath Script
80 , state_indexs :: Map DTC.Pos (DTC.Terms, Anchor.Irefs)
81 , state_rrefs :: Anchor.Rrefs
82 , state_figures :: Map Text (Map DTC.Pos DTC.Title)
83 , state_references :: Map DTC.Ident DTC.About
84 , state_plainify :: Plain.State
86 instance Default State where
88 { state_styles = mempty
89 , state_scripts = mempty
90 , state_indexs = mempty
91 , state_rrefs = mempty
92 , state_figures = mempty
93 , state_references = mempty
94 , state_plainify = def
102 { keys_index :: Map DTC.Pos DTC.Terms
103 , keys_figure :: Map Text (Map DTC.Pos DTC.Title)
104 , keys_reference :: Map DTC.Ident DTC.About
107 keys :: Trees DTC.BodyKey DTC.BodyValue -> Keys
108 keys body = foldl' flt (Keys mempty mempty mempty) (Compose body)
111 DTC.Index{..} -> acc{keys_index =
112 Map.insert pos terms $ keys_index acc}
113 DTC.Figure{..} -> acc{keys_figure =
115 type_ (Map.singleton pos title) $
117 DTC.References{..} -> acc{keys_reference =
120 (DTC.id (r::DTC.Reference))
121 (DTC.about (r::DTC.Reference)))
126 -- ** Class 'Html5ify'
127 class Html5ify a where
128 html5ify :: a -> Html5
129 instance Html5ify Char where
130 html5ify = html5ify . H.toMarkup
131 instance Html5ify Text where
132 html5ify = html5ify . H.toMarkup
133 instance Html5ify TL.Text where
134 html5ify = html5ify . H.toMarkup
135 instance Html5ify String where
136 html5ify = html5ify . H.toMarkup
137 instance Html5ify H.Markup where
138 html5ify = Compose . return
139 instance Html5ify DTC.Title where
140 html5ify (DTC.Title t) = html5ify t
141 instance Html5ify DTC.Para where
142 html5ify = mapM_ html5ify
143 instance Html5ify DTC.Ident where
144 html5ify (DTC.Ident i) = html5ify i
145 instance Html5ify Int where
146 html5ify = html5ify . show
147 instance Html5ify DTC.Nat where
148 html5ify (DTC.Nat n) = html5ify n
149 instance Html5ify DTC.Nat1 where
150 html5ify (DTC.Nat1 n) = html5ify n
153 Localize ls Plain Plain.L10n =>
155 LocaleIn ls -> DTC.Document -> Html
156 html5Document locale DTC.Document{..} = do
157 let Keys{..} = keys body
158 let (body',state_rrefs,state_indexs) =
159 let irefs = foldMap Anchor.irefsOfTerms keys_index in
160 let (body0, Anchor.State{state_irefs, state_rrefs=rrefs}) =
161 Anchor.anchorify body `S.runState`
162 Anchor.state{Anchor.state_irefs=irefs} in
164 (<$> keys_index) $ \terms ->
166 TreeMap.intersection const state_irefs $
167 Anchor.irefsOfTerms terms
168 let state_plainify = def
169 { Plain.state_localize = Locale.localize locale }
170 let (html5Body, State{state_styles,state_scripts}) =
174 , state_figures = keys_figure
175 , state_references = keys_reference
180 H.html ! HA.lang (attrify $ countryCode locale) $ do
182 H.meta ! HA.httpEquiv "Content-Type"
183 ! HA.content "text/html; charset=UTF-8"
184 whenSome (DTC.titles $ DTC.about (head :: DTC.Head)) $ \ts ->
186 H.toMarkup $ Plain.text state_plainify $ List.head ts
187 forM_ (DTC.links $ DTC.about (head :: DTC.Head)) $ \DTC.Link{rel, href} ->
188 H.link ! HA.rel (attrify rel)
189 ! HA.href (attrify href)
190 H.meta ! HA.name "generator"
193 (`mapMaybe` toList body) $ \case
194 TreeN k@DTC.Section{} _ -> Just k
196 forM_ chapters $ \DTC.Section{..} ->
197 H.link ! HA.rel "Chapter"
198 ! HA.title (attrify $ plainify title)
199 ! HA.href ("#"<>attrify pos)
200 H.link ! HA.rel "stylesheet"
201 ! HA.type_ "text/css"
202 ! HA.href "style/dtc-html5.css"
203 forM_ state_styles $ \style ->
204 H.style ! HA.type_ "text/css" $
206 forM_ state_scripts $ \script ->
207 H.script ! HA.type_ "application/javascript" $
212 -- * Type 'BodyCursor'
213 -- | Cursor to navigate within a 'DTC.Body' according to many axis (like in XSLT).
214 type BodyCursor = Tree.Zipper DTC.BodyKey DTC.BodyValue
215 instance Html5ify DTC.Body where
217 forM_ (Tree.zippers body) $ \z ->
218 forM_ (Tree.axis_repeat Tree.axis_following_sibling_nearest `Tree.runAxis` z) $
221 instance Html5ify BodyCursor where
223 case Tree.current z of
224 TreeN k _ts -> html5BodyKey z k
225 Tree0 v -> html5BodyValue z v
227 html5BodyKey :: BodyCursor -> DTC.BodyKey -> Html5
228 html5BodyKey z = \case
230 H.section ! HA.class_ "section"
231 ! HA.id (attrify pos) $$ do
232 html5CommonAttrs attrs $
233 H.table ! HA.class_ "section-header" $$
236 H.td ! HA.class_ "section-number" $$ do
237 html5SectionNumber $ DTC.posAncestors pos
238 H.td ! HA.class_ "section-title" $$ do
239 (case List.length $ DTC.posAncestors pos of
248 forM_ (Tree.axis_child `Tree.runAxis` z) $
250 html5BodyValue :: BodyCursor -> DTC.BodyValue -> Html5
251 html5BodyValue z = \case
252 DTC.Block b -> html5ify b
254 H.nav ! HA.class_ "toc"
255 ! HA.id (attrify pos) $$ do
256 H.span ! HA.class_ "toc-name" $$
257 H.a ! HA.href (attrify pos) $$
258 html5ify Plain.L10n_Table_of_Contents
260 forM_ (Tree.axis_following_sibling `Tree.runAxis` z) $
263 H.nav ! HA.class_ "tof"
264 ! HA.id (attrify pos) $$
265 H.table ! HA.class_ "tof" $$
269 html5CommonAttrs attrs $
270 H.div ! HA.class_ ("figure " <> attrify ("figure-"<>type_))
271 ! HA.id (attrify pos) $$ do
272 H.table ! HA.class_ "figure-caption" $$
275 H.td ! HA.class_ "figure-number" $$ do
276 H.a ! HA.href ("#"<>attrify pos) $$ do
278 html5ify $ DTC.posAncestors pos
279 html5ify $ Plain.L10n_Colon
280 H.td ! HA.class_ "figure-name" $$
282 H.div ! HA.class_ "figure-content" $$ do
285 (allTerms,refsByTerm) <- liftStateMarkup $ S.gets $ (Map.! pos) . state_indexs
286 let chars = Anchor.termsByChar allTerms
287 H.div ! HA.class_ "index"
288 ! HA.id (attrify pos) $$ do
289 H.nav ! HA.class_ "index-nav" $$ do
290 forM_ (Map.keys chars) $ \char ->
291 H.a ! HA.href ("#"<>(attrify pos <> "." <> attrify char)) $$
293 H.dl ! HA.class_ "index-chars" $$
294 forM_ (Map.toList chars) $ \(char,terms) -> do
296 let i = attrify pos <> "." <> attrify char in
298 ! HA.href ("#"<>i) $$
301 H.dl ! HA.class_ "index-term" $$ do
302 forM_ terms $ \aliases -> do
304 H.ul ! HA.class_ "index-aliases" $$
305 forM_ (List.take 1 aliases) $ \term ->
306 H.li ! HA.id (attrify term) $$
310 List.sortBy (compare `on` DTC.section . snd) $
311 (`foldMap` aliases) $ \words ->
313 path <- Anchor.pathFromWords words
314 Strict.maybe Nothing (Just . ((words,) <$>) . List.reverse) $
315 TreeMap.lookup path refsByTerm in
317 (<$> anchs) $ \(term,DTC.Anchor{..}) ->
318 H.a ! HA.class_ "index-iref"
319 ! HA.href ("#"<>attrify (term,count)) $$
320 html5ify $ DTC.posAncestors section
321 DTC.References{..} ->
322 html5CommonAttrs attrs $
323 H.div ! HA.class_ "references"
324 ! HA.id (attrify pos) $$ do
328 instance Html5ify DTC.Words where
329 html5ify = html5ify . Anchor.plainifyWords
331 cleanPara :: DTC.Para -> DTC.Para
333 p >>= (`Tree.bindTrees` \case
334 TreeN DTC.Iref{} ls -> ls
335 TreeN DTC.Note{} _ -> mempty
338 html5ifyToC :: Maybe DTC.Nat -> BodyCursor -> Html5
339 html5ifyToC depth z =
340 case Tree.current z of
341 TreeN DTC.Section{..} _ts -> do
343 H.table ! HA.class_ "toc-entry" $$
346 H.td ! HA.class_ "section-number" $$
347 html5SectionRef $ DTC.posAncestors pos
348 H.td ! HA.class_ "section-title" $$
349 html5ify $ cleanPara $ DTC.unTitle title
350 when (maybe True (> DTC.Nat 1) depth && not (null sections)) $
353 html5ifyToC (depth >>= DTC.predNat)
359 `Tree.axis_filter_current` \case
360 TreeN DTC.Section{} _ -> True
363 html5ifyToF :: [Text] -> Html5
364 html5ifyToF types = do
365 figsByType <- liftStateMarkup $ S.gets state_figures
367 Map.foldMapWithKey (\ty -> ((ty,) <$>)) $
371 Map.intersection figsByType $
372 Map.fromList [(ty,()) | ty <- types]
373 forM_ (Map.toList figs) $ \(pos, (type_, title)) ->
375 H.td ! HA.class_ "figure-number" $$
376 H.a ! HA.href ("#"<>attrify pos) $$ do
378 html5ify $ DTC.posAncestors pos
379 H.td ! HA.class_ "figure-name" $$
380 html5ify $ cleanPara $ DTC.unTitle title
382 instance Html5ify [DTC.Block] where
383 html5ify = mapM_ html5ify
384 instance Html5ify DTC.Block where
387 html5CommonAttrs attrs $
388 H.p ! HA.class_ "para"
389 ! HA.id (attrify pos) $$ do
392 html5CommonAttrs attrs $
393 H.ol ! HA.class_ "ol"
394 ! HA.id (attrify pos) $$ do
395 forM_ items $ \item ->
396 H.li $$ html5ify item
398 html5CommonAttrs attrs $
399 H.ul ! HA.class_ "ul"
400 ! HA.id (attrify pos) $$ do
401 forM_ items $ \item ->
402 H.li $$ html5ify item
404 html5ify $ H.Comment (H.Text t) ()
405 instance Html5ify DTC.Lines where
409 DTC.BR -> html5ify H.br
410 DTC.Plain t -> html5ify t
413 DTC.B -> H.strong $$ html5ify ls
414 DTC.Code -> H.code $$ html5ify ls
415 DTC.Del -> H.del $$ html5ify ls
417 i <- liftStateMarkup $ do
418 i <- S.gets $ Plain.state_italic . state_plainify
421 (state_plainify s){Plain.state_italic=
424 H.em ! HA.class_ (if i then "even" else "odd") $$
429 (state_plainify s){Plain.state_italic=i}}
430 DTC.Sub -> H.sub $$ html5ify ls
431 DTC.Sup -> H.sup $$ html5ify ls
432 DTC.SC -> H.span ! HA.class_ "smallcaps" $$ html5ify ls
433 DTC.U -> H.span ! HA.class_ "underline" $$ html5ify ls
436 d <- liftStateMarkup $ do
437 d <- S.gets $ Plain.state_quote . state_plainify
438 S.modify $ \s -> s{state_plainify=
439 (state_plainify s){Plain.state_quote=
442 H.span ! HA.class_ "q" $$ do
443 html5ify $ Plain.L10n_QuoteOpen d
444 html5ify $ TreeN DTC.I ls
445 html5ify $ Plain.L10n_QuoteClose d
449 (state_plainify s){Plain.state_quote = d}}
451 H.a ! HA.class_ "eref"
452 ! HA.href (attrify href) $$
454 then html5ify $ DTC.unURL href
458 Nothing -> html5ify ls
459 Just DTC.Anchor{..} ->
460 H.span ! HA.class_ "iref"
461 ! HA.id (attrify (term,count)) $$
464 H.a ! HA.class_ "ref"
465 ! HA.href ("#"<>attrify to) $$
470 refs <- liftStateMarkup $ S.gets state_references
471 case Map.lookup to refs of
474 H.span ! HA.class_ "rref-broken" $$
477 Just DTC.About{..} -> do
478 when (not $ null ls) $
479 forM_ (List.take 1 titles) $ \(DTC.Title title) -> do
480 html5ify $ TreeN DTC.Q $
483 Just u -> pure $ TreeN (DTC.Eref u) title
486 H.a ! HA.class_ "rref"
487 ! HA.href ("#rref."<>attrify to)
488 ! HA.id ("rref."<>attrify to<>maybe "" (\DTC.Anchor{..} -> "."<>attrify count) anchor) $$
491 instance Html5ify DTC.URL where
492 html5ify (DTC.URL url) =
493 H.a ! HA.class_ "eref"
494 ! HA.href (attrify url) $$
497 instance Attrify DTC.Words where
499 "iref" <> "." <> attrify (Anchor.plainifyWords term)
500 instance Attrify (DTC.Words,DTC.Nat1) where
501 attrify (term,count) =
503 <> "." <> attrify (Anchor.plainifyWords term)
504 <> "." <> attrify count
505 instance Html5ify DTC.Date where
506 html5ify = html5ify . Plain.L10n_Date
507 instance Html5ify DTC.About where
508 html5ify DTC.About{..} =
509 html5CommasDot $ concat $
511 , html5Entity <$> authors
512 , html5ify <$> maybeToList date
513 , html5Entity <$> maybeToList editor
514 , html5Serie <$> series
517 html5Titles :: [DTC.Title] -> [Html5]
518 html5Titles ts | null ts = []
519 html5Titles ts = [html5Title $ fold $ List.intersperse (DTC.Title " — ") $ toList ts]
520 html5Title (DTC.Title title) =
521 html5ify $ TreeN DTC.Q $
524 Just u -> pure $ TreeN (DTC.Eref u) title
525 html5SerieHref href DTC.Serie{..} = do
526 sp <- liftStateMarkup $ S.gets state_plainify
528 TreeN DTC.Eref{href} $
530 [ Tree0 $ DTC.Plain $ name
531 , Tree0 $ DTC.Plain $ TL.toStrict $ Plain.text sp Plain.L10n_Colon
532 , Tree0 $ DTC.Plain key
534 html5Serie s@DTC.Serie{name="RFC", key} | Text.all Char.isDigit key =
535 html5SerieHref (DTC.URL $ "https://tools.ietf.org/html/rfc"<>key) s
536 html5Serie s@DTC.Serie{name="DOI", key} =
537 html5SerieHref (DTC.URL $ "https://dx.doi.org/"<>key) s
538 html5Serie DTC.Serie{..} = do
540 html5ify Plain.L10n_Colon
542 html5Entity DTC.Entity{url=mu, ..} = do
543 html5ify @DTC.Lines $
545 _ | not (Text.null email) ->
546 TreeN (DTC.Eref $ DTC.URL $ "mailto:"<>email) $
547 pure $ Tree0 $ DTC.Plain name
550 pure $ Tree0 $ DTC.Plain name
551 _ -> Tree0 $ DTC.Plain name
556 instance Html5ify DTC.Reference where
557 html5ify DTC.Reference{id=id_, ..} =
559 H.td ! HA.class_ "reference-key" $$
560 html5ify @DTC.Lines $ TreeN DTC.Rref{anchor=Nothing, to=id_} Seq.empty
561 H.td ! HA.class_ "reference-content" $$ do
563 rrefs <- liftStateMarkup $ S.gets state_rrefs
564 case Map.lookup id_ rrefs of
567 H.span ! HA.class_ "reference-rrefs" $$
569 (<$> List.reverse anchs) $ \DTC.Anchor{..} ->
570 H.a ! HA.class_ "reference-rref"
571 ! HA.href ("#rref."<>attrify id_<>"."<>attrify count) $$
572 html5ify $ DTC.posAncestors section
574 html5CommasDot :: [Html5] -> Html5
575 html5CommasDot [] = pure ()
576 html5CommasDot hs = do
577 sequence_ $ List.intersperse ", " hs
580 html5CommonAttrs :: DTC.CommonAttrs -> Html5 -> Html5
581 html5CommonAttrs DTC.CommonAttrs{id=id_, ..} =
582 Compose . (addClass . addId <$>) . getCompose
587 _ -> H.AddCustomAttribute "class" (H.Text $ Text.unwords classes)
588 addId = maybe id (\(DTC.Ident i) ->
589 H.AddCustomAttribute "id" (H.Text i)) id_
591 html5SectionNumber :: DTC.PosPath -> Html5
592 html5SectionNumber = go mempty
594 go :: DTC.PosPath -> DTC.PosPath -> Html5
596 case Seq.viewl next of
597 Seq.EmptyL -> pure ()
598 a@(_n,rank) Seq.:< as -> do
599 H.a ! HA.href ("#"<>attrify (prev Seq.|>a)) $$
601 when (not (null as) || null prev) $ do
605 html5SectionRef :: DTC.PosPath -> Html5
607 H.a ! HA.href ("#"<>attrify as) $$
610 instance Html5ify DTC.PosPath where
618 Text.intercalate "." $
619 Text.pack . show . snd <$> as
620 instance Html5ify Plain where
622 sp <- liftStateMarkup $ S.gets state_plainify
623 let (t,sp') = Plain.runPlain p sp
625 liftStateMarkup $ S.modify $ \s -> s{state_plainify=sp'}
626 instance Attrify Plain where
628 let (t,_) = Plain.runPlain p def in
631 instance Attrify DTC.PosPath where
632 attrify = attrify . plainify
633 instance Attrify DTC.Pos where
634 attrify = attrify . DTC.posAncestors
637 instance Html5ify Plain.L10n where
638 html5ify = html5ify . plainify
639 instance Localize ls Plain Plain.L10n => Localize ls Html5 Plain.L10n where
640 localize loc a = html5ify (Locale.localize loc a::Plain)
641 instance LocalizeIn FR Html5 Plain.L10n where
642 localizeIn loc = html5ify @Plain . localizeIn loc
643 instance LocalizeIn EN Html5 Plain.L10n where
644 localizeIn loc = html5ify @Plain . localizeIn loc