X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=Rakka%2FWiki%2FInterpreter%2FBase.hs;h=73950537c9bd7179b26655f0f38531df69201de4;hb=42f51754dea02201aececaacbf194d714cd58aaf;hp=b17af3253c1b7031046210d5cd465a67b8467b4b;hpb=f7ff1639d50b827a8ce1e4dd3631ce300ecb3d19;p=Rakka.git diff --git a/Rakka/Wiki/Interpreter/Base.hs b/Rakka/Wiki/Interpreter/Base.hs index b17af32..7395053 100644 --- a/Rakka/Wiki/Interpreter/Base.hs +++ b/Rakka/Wiki/Interpreter/Base.hs @@ -1,22 +1,31 @@ +{-# LANGUAGE + OverloadedStrings + , RecordWildCards + , UnicodeSyntax + #-} module Rakka.Wiki.Interpreter.Base ( interpreters ) where - -import Control.Arrow -import Control.Arrow.ListArrow -import Data.Map (Map) +import Control.Applicative +import Control.Arrow +import Control.Arrow.ListArrow +import Control.Arrow.Unicode +import qualified Data.CaseInsensitive as CI +import Data.Map (Map) import qualified Data.Map as M -import Data.Maybe -import Rakka.Page -import Rakka.SystemConfig -import Rakka.Wiki -import Rakka.Wiki.Interpreter -import Text.XML.HXT.Arrow.XmlArrow -import Text.XML.HXT.Arrow.XmlNodeSet - - -interpreters :: [Interpreter] +import Data.Maybe +import Data.Monoid.Unicode +import qualified Data.Text as T +import Prelude.Unicode +import Rakka.Page +import Rakka.SystemConfig +import Rakka.Wiki +import Rakka.Wiki.Interpreter +import Text.XML.HXT.Arrow.XmlArrow +import Text.XML.HXT.XPath + +interpreters ∷ [Interpreter] interpreters = [ lineBreakInterp , spanInterp , divInterp @@ -26,9 +35,9 @@ interpreters = [ lineBreakInterp , editPageInterp , loginInterp , searchFieldInterp + , configurationInterp ] - lineBreakInterp :: Interpreter lineBreakInterp = InlineCommandInterpreter { iciName = "br" @@ -61,43 +70,44 @@ pageNameInterp = InlineCommandInterpreter { = \ ctx _ -> return $ Text (fromMaybe "" $ ctxPageName ctx) } - -otherLangsInterp :: Interpreter +otherLangsInterp ∷ Interpreter otherLangsInterp = BlockCommandInterpreter { bciName = "inOtherLanguages" , bciInterpret - = \ ctx _ -> - let linkTable = case ctxMainPage ctx of - Just page -> runLA ( getXPathTreesInDoc "/page/otherLang/link" - >>> - ( getAttrValue0 "lang" - &&& - getAttrValue0 "page" - ) - ) page - Nothing -> [] + = \(InterpreterContext {..}) _ → + let linkTable = case ctxMainPage of + Just page → runLA ( getXPathTreesInDoc "/page/otherLang/link" + ⋙ + ( getAttrValue0 "lang" + &&& + getAttrValue0 "page" + ) + ) page + Nothing → [] in case linkTable of [] -> return EmptyBlock - _ -> do Languages langTable <- getSysConf (ctxSysConf ctx) - let merged = mergeTables langTable linkTable - return $ mkLangList merged + _ -> do Languages langTable ← getSysConf ctxSysConf + let merged = mergeTables langTable $ + (CI.mk ∘ T.pack ⁂ T.pack) <$> linkTable + pure $ mkLangList merged } where - mergeTables :: Map LanguageTag LanguageName - -> [(LanguageTag, PageName)] - -> [(LanguageName, PageName)] + mergeTables ∷ Map LanguageTag LanguageName + → [(LanguageTag, PageName)] + → [(LanguageName, PageName)] mergeTables _ [] = [] mergeTables m (x:xs) = let (langTag, name) = x - langName = fromMaybe langTag (M.lookup langTag m) + langName = fromMaybe (CI.foldedCase langTag) + (M.lookup langTag m) in (langName, name) : mergeTables m xs - mkLangList :: [(LanguageName, PageName)] -> BlockElement - mkLangList xs = List Bullet (map mkLangLink xs) + mkLangList ∷ [(LanguageName, PageName)] → BlockElement + mkLangList = List Bullet ∘ (mkLangLink <$>) - mkLangLink :: (LanguageName, PageName) -> ListItem + mkLangLink ∷ (LanguageName, PageName) → ListItem mkLangLink (langName, name) = [Inline (PageLink (Just name) Nothing (Just langName))] @@ -105,7 +115,7 @@ otherLangsInterp -- +-- class="newButton controls" /> newPageInterp :: Interpreter newPageInterp = InlineCommandInterpreter { @@ -116,7 +126,7 @@ newPageInterp attrs = [ ("type" , "button") , ("value" , label) , ("onclick", "Rakka.newPage()") - , ("class" , "newButton") + , ("class" , "newButton controls") ] in return (Input attrs) @@ -126,19 +136,19 @@ newPageInterp -- -editPageInterp :: Interpreter +-- class="editButton controls" /> +editPageInterp ∷ Interpreter editPageInterp = InlineCommandInterpreter { iciName = "editPage" , iciInterpret - = \ ctx (InlineCommand _ args _) -> + = \ctx (InlineCommand _ args _) → let name = fromMaybe (fromMaybe "" $ ctxPageName ctx) (lookup "page" args) label = fromMaybe "Edit this page" (lookup "label" args) attrs = [ ("type" , "button") , ("value" , label) - , ("onclick", "Rakka.editPage(\"" ++ name ++ "\")") - , ("class" , "editButton") + , ("onclick", "Rakka.editPage(\"" ⊕ name ⊕ "\")") + , ("class" , "editButton controls") ] in return (Input attrs) @@ -147,7 +157,7 @@ editPageInterp -- +-- class="loginButton controls" /> loginInterp :: Interpreter loginInterp = InlineCommandInterpreter { @@ -156,7 +166,7 @@ loginInterp = \ _ _ -> let attrs = [ ("type" , "button") , ("value", "Login") - , ("class", "loginButton") + , ("class", "loginButton controls") ] in return (Input attrs) @@ -176,4 +186,21 @@ searchFieldInterp ] in return (Input attrs) - } \ No newline at end of file + } + +-- +configurationInterp ∷ Interpreter +configurationInterp + = InlineCommandInterpreter { + iciName = "configuration" + , iciInterpret + = \_ _ → + let attrs = [ ("type" , "button") + , ("value", "Configuration") + , ("class", "configButton controls") + ] + in + return (Input attrs) + }