Giter Club home page Giter Club logo

pathom-viz's Introduction

Pathom Viz

Pathom viz is a set of visualization tools to support the development and inspection of Graph API’s built with the Pathom library.

1. Standalone App

The standalone app is the easiest way to use Pathom Viz.

1.1. Download the app

A download of binaries is available at the releases page.

Note: On Linux, you may receive the error message libappindicator3-1 but it is not installable when installing Pathom viz. To rectify:

wget http://ftp.us.debian.org/debian/pool/main/libi/libindicator/libindicator3-7_0.5.0-4_amd64.deb
wget http://ftp.us.debian.org/debian/pool/main/liba/libappindicator/libappindicator3-1_0.4.92-7_amd64.deb
sudo apt install ./libindicator3-7_0.5.0-4_amd64.deb
sudo apt install ./libappindicator3-1_0.4.92-7_amd64.deb

1.2. Building the app

If you want to develop the app:

bb app:dev
cd shells/electron
npm install
npx electron .

If you get a failure to start with the message: GPU process isn’t usable. Goodbye.

use:

npx electron . --disable-gpu-sandbox
```

If you want to run locally with prod performance, do the same replacing
`./scripts/dev-electron` with `./scripts/build-electron`.

=== Creating Electron app

To package the app, do the following:

[source]
/script/build-electron

cd shells/electron npm run pack

The builds will be available at the `dist` directory.

== Embed

Pathom Viz Embed is an effortless way to include Pathom components in any web-based interface.

This is similar to what a Youtube or Vimeo embed works. You put an iframe and send some data to it.

The base URL for the embed is `https://pathom-viz.wsscode.com/embed.html`.
The interface to communicate is a configuration map, here is a configuration example to open the planner explorer:

[source,clojure]

{:pathom.viz.embed/component-name :pathom.viz.embed.component/planner-explorer

:pathom.viz.embed/component-props
{:com.wsscode.pathom3.connect.indexes/index-oir
 {:a {{} #{a}}
  :b {{:g {}} #{b}}
  :c {{} #{c}}
  :e {{} #{e e1}}
  :f {{:e {}} #{f}}
  :g {{:c {} :f {}} #{g}}
  :h {{:a {} :b {}} #{h}}}
:edn-query-language.core/query
[:h]}}
To send this data to the embed, there are two ways.

=== Data via Query Params

You can encode using URL Encoding and send via `msg` query param, for example:

[source,html]
You can link:https://pathom-viz.wsscode.com/embed.html?msg=%7B%3Apathom.viz.embed%2Fcomponent-name%0A%20%3Apathom.viz.embed.component%2Fplanner-explorer%0A%0A%20%3Apathom.viz.embed%2Fcomponent-props%0A%20%7B%3Acom.wsscode.pathom3.connect.indexes%2Findex-oir%0A%20%20%7B%3Aa%20%7B%7B%7D%20%23%7Ba%7D%7D%0A%20%20%20%3Ab%20%7B%7B%3Ag%20%7B%7D%7D%20%23%7Bb%7D%7D%0A%20%20%20%3Ac%20%7B%7B%7D%20%23%7Bc%7D%7D%0A%20%20%20%3Ae%20%7B%7B%7D%20%23%7Be%20e1%7D%7D%0A%20%20%20%3Af%20%7B%7B%3Ae%20%7B%7D%7D%20%23%7Bf%7D%7D%0A%20%20%20%3Ag%20%7B%7B%3Ac%20%7B%7D%20%3Af%20%7B%7D%7D%20%23%7Bg%7D%7D%0A%20%20%20%3Ah%20%7B%7B%3Aa%20%7B%7D%20%3Ab%20%7B%7D%7D%20%23%7Bh%7D%7D%7D%0A%0A%20%20%3Aedn-query-language.core%2Fquery%0A%20%20%5B%3Ah%5D%7D%7D[navigate and try it].

=== Data via `postMessage`

The URL data is convenient, but it is also limited in the size of the message. Each browser
may have different higher limits. Pathom data can get quite large, and those limits
are not enough in many cases.

To provide an alternative without such limitations, Pathom Viz also accepts data using
the link:https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage[window messaging].

To use this, you must wait for the frame to load and use `window.postMessage` using
the following format:

[source,clojure]

(.postMessage window #js {:event "pathom-viz-embed" :payload (pr-str message)} "*")

Here is a complete example putting all together:

[source,html]

<html> <head> <style> #pathomFrame { margin: 0 auto; width: 800px; height: 600px; } </style> </head> <body> <!-- Create the iframe -→ <iframe src="" id="pathomFrame" frameborder="0"></iframe> <script> // get a hold on the node reference const frame = document.getElementById("pathomFrame");

// on load, send message
frame.onload = function () {
  frame.contentWindow.postMessage({
    event: "pathom-viz-embed",
    payload: "#:pathom.viz.embed{:component-name :pathom.viz.embed.component/planner-explorer, :component-props {:com.wsscode.pathom3.connect.indexes/index-oir {:a {{} #{a}}, :b {{:g {}} #{b}}, :c {{} #{c}}, :e {{} #{e1 e}}, :f {{:e {}} #{f}}, :g {{:c {}, :f {}} #{g}}, :h {{:a {}, :b {}} #{h}}}, :edn-query-language.core/query [:h]}}"
  }, "*");
}
      // trigger the load start
      frame.src = "https://pathom-viz.wsscode.com/embed.html";
    </script>
  </body>
</html>
=== Available Components

At this moment, for public usage, only the Planner Explorer is available. More components
will come soon. Keep an eye on the issues to track their development.

== Usage docs

Find usage docs at https://roamresearch.com/#/app/wsscode/page/RG9C93Sip.

== Support

Get support at #pathom channel in Clojurians Slack.

pathom-viz's People

Contributors

dependabot[bot] avatar dvingo avatar jeroenvandijk avatar jlesquembre avatar littleli avatar markaddleman avatar wilkerlucio avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.