felixhayashi / TW5-TiddlyMap

Map drawing and topic visualization for your wiki
http://tiddlymap.org
BSD 2-Clause "Simplified" License
857 stars 132 forks source link

Add more palantir-like feature #372

Closed linonetwo closed 2 years ago

linonetwo commented 4 years ago

Please see this article about Palantir's product https://mp.weixin.qq.com/s?__biz=MzAxNTgzMDI5MA==&mid=2650663338&idx=1&sn=d1205e873f1be3e7266c1a44d3d4b840&chksm=83f755d7b480dcc1ea976052caaa01fd710853aff55839c8856a66c695ef4df910c2b3a00d71&mpshare=1&scene=1&srcid=0812WogJ7ByJQs6RCOCz6Rz1&sharer_sharetime=1597238580734&sharer_shareid=45862499950c225ae58bd2f32e816f4e#rd

It will be cool to seee tiddlymap to be like this!

felixhayashi commented 4 years ago

Hi @linonetwo, under the hood TiddlyMap already provides several javascript functions that allow you to traverse tiddler relations, despite that, I do not plan to add any GUI-based analytical tools, it would be too much work.

Javascript example:

var myView = new $tm.ViewAbstraction("All Tasks");
var graph = $tm.adapter.getGraph({ view: myView });
var mySet = [Object.values(graph.nodes)[0].tRef]
$tm.adapter.getNeighbours(mySet, { steps: 1 })

2020-09-16_17:18:07

flibbles commented 2 years ago

I'm going to close this.

linonetwo commented 2 years ago

We may explore it in https://github.com/tiddly-gittly/tw-echarts , as echarts has more interaction example to learn from, than the visjs