-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make Live View show nodes related not just to the current tiddler #343
Comments
Hi @damscal Thanks your suggestions 👍
It may be possible that the "live view" traces the click path and everytime you click on a node, it will show neighbours of all nodes of the clickpath. There could be a reset button in the live view that resets the "traced path" so you can start a new "exploration". An additional idea would be that the rightclick context menu on the "live view" could feature an "fold/unfold" button that adds/removes a node as path step a tiddler without navigation. I will try and check how feasible this idea is with the current architecture of TiddlyMap's live view, I think it is doable, however, I cannot say yet when I find the time for implementing this.
This will be more difficult to achieve since it requires to calculate what is displayed in the map on two levels. So I would say this is currently not feasible. |
Somewhat related to #202 |
Hi @damscal please have a look if release v0.17.1 suits your needs. it introduces the "tracing" functionality that allows you to temporarily add nodes to your graph by clicking on the neighbouring nodes. Tracing can also be enabled for the "live view". More information and videos here: |
Good work there, it is quite different from what I suggested (your solution feels like browsing while the one I suggested would be more like searching / filtering), but nice addition indeed. The issue is that it does not solve the problem of scalability if for instance you have nodes with hundreds of edges each, because all of them would still be displayed, in this cases you would be forced not to use Live View as of now. So personally I'd keep this issue still open |
Hi @damscal thanks for your response. If you want a map to show all tiddlers that are opened in the story river you can create a view using the following node filter:
The expression Example: On the other hand with the new tracing functionality the idea was to be more "explorative" by showing all nodes you visit in the story river of TiddlyWiki or those nodes you visited/clicked on the map. So the more nodes you visit the larger your map becomes Example (after visiting "Integration" and "TiddlyMap Toolbar Button" tiddlers): (in the editor you select "live view" and then you activate all checkboxes in the trace menu then). If the above does not suit your needs I will keep this ticket open but I cannot promise if/when it gets implemented. |
Let's say you need to map a social network, where each node is a person and edges are friendship relations |
Thanks for this great piece of software.
I've just started learning (TW in general). As far as I understand, Live View shows nodes starting from a central one which corresponds to the selected tiddler. Setting the neighbourhood distance to 1 step shows all nodes directly related to the central one.
However I can imagine that the number of relations of one node in a real case scenario could easily go up to the hundreds or the thousands. Example: if I were to create a medical literature wiki, the number of all things directly related to, say, the liver, would be enormous and the Live View impractical to plot. Two simple ways (not alternative to each other) I could think of to solve this problem:
Are these easily implementable?
The text was updated successfully, but these errors were encountered: