GraphView
Extends
Properties
_children
_children:
Component
[]
Child Components attached to current component, will be unloaded on unloading parent component
Inherited from
_events
_events:
EventRef
[]
Events that are attached to the current component, will be detached on unloading parent component
Inherited from
_loaded
_loaded:
boolean
Whether the component and its children are loaded
Inherited from
actionsEl
actionsEl:
HTMLElement
Container of actions for the view
Inherited from
app
app:
App
Inherited from
backButtonEl
backButtonEl:
HTMLButtonElement
Back button element for changing view history
Inherited from
canDropAnywhere
canDropAnywhere:
boolean
Whether the view may be dropped anywhere in workspace
Inherited from
closeable
closeable:
boolean
Whether the leaf may close the view
Inherited from
containerEl
containerEl:
HTMLElement
Inherited from
contentEl
contentEl:
HTMLElement
Inherited from
dataEngine
dataEngine:
unknown
forwardButtonEl
forwardButtonEl:
HTMLButtonElement
Forward button element for changing view history
Inherited from
headerEl
headerEl:
HTMLElement
Header bar container of view
Inherited from
icon
icon:
string
Inherited from
iconEl
iconEl:
HTMLElement
Icon element for the view (for dragging)
Inherited from
leaf
leaf:
WorkspaceLeaf
Inherited from
moreOptionsButtonEl
moreOptionsButtonEl:
HTMLAnchorElement
Anchor button for revealing more view actions
Inherited from
navigation
navigation:
boolean
Whether or not the view is intended for navigation. If your view is a static view that is not intended to be navigated away, set this to false. (For example: File explorer, calendar, etc.) If your view opens a file or can be otherwise navigated, set this to true. (For example: Markdown editor view, Kanban view, PDF view, etc.)
Inherited from
scope
scope:
null
|Scope
Assign an optional scope to your view to register hotkeys for when the view is in focus.
Example
Default
Inherited from
titleContainerEl
titleContainerEl:
HTMLElement
Container for the title of the view
Inherited from
titleEl
titleEl:
HTMLElement
Title element for the view
Inherited from
titleParentEl
titleParentEl:
HTMLElement
Title of the parent
Inherited from
Methods
addAction()
addAction(icon, title, callback)
addAction(
icon
,title
,callback
):HTMLElement
Parameters
• icon: string
• title: string
• callback
Returns
Inherited from
addAction(icon, title, callback)
addAction(
icon
,title
,callback
):HTMLElement
Adds an action button to the header of the view
Parameters
• icon: string
The icon for the action
• title: string
The title for the action
• callback
Callback to execute on click
Returns
Inherited from
addChild()
addChild<
T
>(component
):T
Adds a child component, loading it if this component is loaded
Type Parameters
• T extends Component
Parameters
• component: T
Returns
T
Inherited from
close()
close():
Promise
<void
>
Closes the view
Returns
Promise
<void
>
Inherited from
getDisplayText()
abstract
getDisplayText():string
Returns
string
Inherited from
getEphemeralState()
getEphemeralState()
getEphemeralState():
Record
<string
,unknown
>
Returns
Record
<string
, unknown
>
Inherited from
getEphemeralState()
getEphemeralState():
object
Gets the ephemeral (non-persistent) state of the editor
Returns
object
Inherited from
getIcon()
getIcon()
getIcon():
string
Returns
string
Inherited from
getIcon()
getIcon():
string
Returns the icon name
Returns
string
Inherited from
getSideTooltipPlacement()
getSideTooltipPlacement():
undefined
|"left"
|"right"
Returns the placement of the tooltip
Returns
undefined
| "left"
| "right"
Inherited from
ItemView
.getSideTooltipPlacement
getState()
getState()
getState():
Record
<string
,unknown
>
Returns
Record
<string
, unknown
>
Inherited from
getState()
getState():
object
Returns the current state of the view
Returns
object
Inherited from
getViewType()
getViewType():
"graph"
Get the current view type
Returns
"graph"
Overrides
handleCopy()
handleCopy(
event
):void
Handle copy event on metadata editor and serialize properties
Parameters
• event: ClipboardEvent
Returns
void
Inherited from
handleCut()
handleCut(
event
):void
Handle cut event on metadata editor and serialize and remove properties
Parameters
• event: ClipboardEvent
Returns
void
Inherited from
handleDrop()
handleDrop(
event
,t
,n
):unknown
Parameters
• event: DragEvent
• t: unknown
• n: unknown
Returns
unknown
Inherited from
handlePaste()
handlePaste(
event
):void
Handle paste event of properties on metadata editor
Parameters
• event: ClipboardEvent
Returns
void
Inherited from
load()
load():
void
Load this component and its children
Returns
void
Inherited from
onClose()
onClose():
Promise
<void
>
Returns
Promise
<void
>
Inherited from
onGroupChange()
onGroupChange():
void
Returns
void
Inherited from
onHeaderMenu()
onHeaderMenu(
e
):void
Parameters
• e: unknown
Returns
void
Inherited from
onload()
onload():
void
Override this to load your component
Returns
void
Inherited from
onMoreOptions()
onMoreOptions(
event
):void
Parameters
• event: Event
Returns
void
Inherited from
onMoreOptionsMenu()
onMoreOptionsMenu(
e
):void
Parameters
• e: unknown
Returns
void
Inherited from
onOpen()
onOpen():
Promise
<void
>
Returns
Promise
<void
>
Inherited from
onOptionsChange()
onOptionsChange():
void
Updates the options from the plugin when changed in view
Returns
void
onPaneMenu()
onPaneMenu(
menu
,source
):void
Populates the pane menu.
(Replaces the previously removed onHeaderMenu
and onMoreOptionsMenu
)
Parameters
• menu: Menu
• source: string
Returns
void
Inherited from
onResize()
onResize():
void
Called when the size of this view is changed.
Returns
void
Inherited from
onTabMenu()
onTabMenu(
menu
):void
Adds the menu items to the menu
Parameters
• menu: Menu
the menu to fill
Returns
void
Inherited from
onunload()
onunload():
void
Override this to unload your component
Returns
void
Inherited from
open()
open(
parentEl
):Promise
<void
>
Opens the view
Parameters
• parentEl: Node
The node the view get attached to
Returns
Promise
<void
>
Inherited from
register()
register(
cb
):void
Registers a callback to be called when unloading
Parameters
• cb
Returns
void
Inherited from
registerDomEvent()
registerDomEvent(el, type, callback, options)
registerDomEvent<
K
>(el
,type
,callback
,options
?):void
Registers an DOM event to be detached when unloading
Type Parameters
• K extends keyof WindowEventMap
Parameters
• el: Window
• type: K
• callback
• options?: boolean
| AddEventListenerOptions
Returns
void
Inherited from
registerDomEvent(el, type, callback, options)
registerDomEvent<
K
>(el
,type
,callback
,options
?):void
Registers an DOM event to be detached when unloading
Type Parameters
• K extends keyof DocumentEventMap
Parameters
• el: Document
• type: K
• callback
• options?: boolean
| AddEventListenerOptions
Returns
void
Inherited from
registerDomEvent(el, type, callback, options)
registerDomEvent<
K
>(el
,type
,callback
,options
?):void
Registers an DOM event to be detached when unloading
Type Parameters
• K extends keyof HTMLElementEventMap
Parameters
• el: HTMLElement
• type: K
• callback
• options?: boolean
| AddEventListenerOptions
Returns
void
Inherited from
registerEvent()
registerEvent(
eventRef
):void
Registers an event to be detached when unloading
Parameters
• eventRef: EventRef
Returns
void
Inherited from
registerInterval()
registerInterval(
id
):number
Registers an interval (from setInterval) to be cancelled when unloading Use setInterval instead of setInterval to avoid TypeScript confusing between NodeJS vs Browser API
Parameters
• id: number
Returns
number
Inherited from
registerScopeEvent()
registerScopeEvent(
keymapEventHandler
):void
Parameters
• keymapEventHandler: KeymapEventHandler
Returns
void
Inherited from
removeChild()
removeChild<
T
>(component
):T
Removes a child component, unloading it
Type Parameters
• T extends Component
Parameters
• component: T
Returns
T
Inherited from
setEphemeralState()
setEphemeralState(state)
setEphemeralState(
state
):void
Parameters
• state: unknown
Returns
void
Inherited from
setEphemeralState(state)
setEphemeralState(
state
):void
Set the ephemeral (non-persistent) state of the editor
Parameters
• state: any
Returns
void
Inherited from
setState()
setState(state, result)
setState(
state
,result
):Promise
<void
>
Parameters
• state: unknown
• result: ViewStateResult
Returns
Promise
<void
>
Inherited from
setState(state, result)
setState(
state
,result
):Promise
<void
>
Parameters
• state: any
• result: ViewStateResult
Returns
Promise
<void
>
Inherited from
unload()
unload():
void
Unload this component and its children
Returns
void
Inherited from
update()
update():
void
Renders the graph
Returns
void
updateNavButtons()
updateNavButtons():
void
Updates the navigation buttons depending on the history
Returns
void