module Gargantext.Components.GraphExplorer.Button ( centerButton , Props , simpleButton , cameraButton ) where import Prelude import Data.Enum (fromEnum) import Data.Maybe (Maybe(..)) import Data.DateTime as DDT import Data.DateTime.Instant as DDI import Data.String as DS import Effect (Effect) import Effect.Aff (launchAff_) import Effect.Now as EN import Reactix as R import Reactix.DOM.HTML as H import Gargantext.Components.Forest.Tree.Node.Action.Upload (uploadArbitraryDataURL) import Gargantext.Hooks.Sigmax as Sigmax import Gargantext.Hooks.Sigmax.Sigma as Sigma import Gargantext.Sessions (Session) type Props = ( onClick :: forall e. e -> Effect Unit , text :: String ) simpleButton :: Record Props -> R.Element simpleButton props = R.createElement simpleButtonCpt props [] simpleButtonCpt :: R.Component Props simpleButtonCpt = R.hooksComponent "SimpleButton" cpt where cpt {onClick, text} _ = do pure $ H.span {} [ H.button { className: "btn btn-primary", on: {click: onClick} } [ H.text text ] ] centerButton :: R.Ref Sigmax.Sigma -> R.Element centerButton sigmaRef = simpleButton { onClick: \_ -> do let sigma = R.readRef sigmaRef Sigmax.dependOnSigma sigma "[centerButton] sigma: Nothing" $ \s -> Sigma.goToAllCameras s {x: 0.0, y: 0.0, ratio: 1.0, angle: 0.0} , text: "Center" } cameraButton :: Session -> Int -> R.Ref Sigmax.Sigma -> R.Element cameraButton session id sigmaRef = simpleButton { onClick: \_ -> do let sigma = R.readRef sigmaRef Sigmax.dependOnSigma sigma "[cameraButton] sigma: Nothing" $ \s -> do screen <- Sigma.takeScreenshot s now <- EN.now let nowdt = DDI.toDateTime now nowd = DDT.date nowdt nowt = DDT.time nowdt nowStr = DS.joinWith "-" [ show $ fromEnum $ DDT.year nowd , show $ fromEnum $ DDT.month nowd , show $ fromEnum $ DDT.day nowd , show $ fromEnum $ DDT.hour nowt , show $ fromEnum $ DDT.minute nowt , show $ fromEnum $ DDT.second nowt ] launchAff_ $ do uploadArbitraryDataURL session id (Just $ nowStr <> "-" <> "screenshot.png") screen , text: "Screenshot" }