2025-04-12 13:30:24 +03:00
<!DOCTYPE html> < html class = "default" lang = "en" data-base = "../" > < head > < meta charset = "utf-8" / > < meta http-equiv = "x-ua-compatible" content = "IE=edge" / > < title > NoteContext | trilium< / title > < meta name = "description" content = "Documentation for trilium" / > < meta name = "viewport" content = "width=device-width, initial-scale=1" / > < link rel = "stylesheet" href = "../assets/style.css" / > < link rel = "stylesheet" href = "../assets/highlight.css" / > < script defer src = "../assets/main.js" > < / script > < script async src = "../assets/icons.js" id = "tsd-icons-script" > < / script > < script async src = "../assets/search.js" id = "tsd-search-script" > < / script > < script async src = "../assets/navigation.js" id = "tsd-nav-script" > < / script > < script async src = "../assets/hierarchy.js" id = "tsd-hierarchy-script" > < / script > < / head > < body > < script > document . documentElement . dataset . theme = localStorage . getItem ( "tsd-theme" ) || "os" ; document . body . style . display = "none" ; setTimeout ( ( ) => window . app ? app . showPage ( ) : document . body . style . removeProperty ( "display" ) , 500 ) < / script > < header class = "tsd-page-toolbar" > < div class = "tsd-toolbar-contents container" > < a href = "../index.html" class = "title" > trilium< / a > < div id = "tsd-toolbar-links" > < / div > < button id = "tsd-search-trigger" class = "tsd-widget" aria-label = "Search" > < svg width = "16" height = "16" viewBox = "0 0 16 16" fill = "none" aria-hidden = "true" > < use href = "../assets/icons.svg#icon-search" > < / use > < / svg > < / button > < dialog id = "tsd-search" aria-label = "Search" > < input role = "combobox" id = "tsd-search-input" aria-controls = "tsd-search-results" aria-autocomplete = "list" aria-expanded = "true" autocapitalize = "off" autocomplete = "off" placeholder = "Search the docs" maxLength = "100" / > < ul role = "listbox" id = "tsd-search-results" > < / ul > < div id = "tsd-search-status" aria-live = "polite" aria-atomic = "true" > < div > Preparing search index...< / div > < / div > < / dialog > < a href = "#" class = "tsd-widget menu" id = "tsd-toolbar-menu-trigger" data-toggle = "menu" aria-label = "Menu" > < svg width = "16" height = "16" viewBox = "0 0 16 16" fill = "none" aria-hidden = "true" > < use href = "../assets/icons.svg#icon-menu" > < / use > < / svg > < / a > < / div > < / header > < div class = "container container-main" > < div class = "col-content" > < div class = "tsd-page-title" > < ul class = "tsd-breadcrumb" aria-label = "Breadcrumb" > < li > < a href = "../modules/Frontend_Script_API.html" > Frontend Script API< / a > < / li > < li > < a href = "../modules/Frontend_Script_API._internal_.html" > < internal> < / a > < / li > < li > < a href = "" aria-current = "page" > NoteContext< / a > < / li > < / ul > < h1 > Class NoteContext< / h1 > < / div > < section class = "tsd-panel tsd-comment" > < div class = "tsd-comment tsd-typography" > < p > Abstract class for all components in the Trilium's frontend.< / p >
< p > Contains also event implementation with following properties:< / p >
< ul >
< li > event / command distribution is synchronous which among others mean that events are well-ordered - event
which was sent out first will also be processed first by the component< / li >
< li > execution of the event / command is asynchronous - each component executes the event on its own without regard for
other components.< / li >
< li > although the execution is async, we are collecting all the promises, and therefore it is possible to wait until the
event / command is executed in all components - by simply awaiting the < code > triggerEvent()< / code > .< / li >
< / ul >
2025-04-13 18:59:52 +03:00
< / div > < div class = "tsd-comment tsd-typography" > < / div > < / section > < section class = "tsd-panel tsd-hierarchy" data-refl = "5957" > < h4 > Hierarchy (< a href = "../hierarchy.html#Frontend Script API.<internal>.NoteContext" > View Summary< / a > )< / h4 > < ul class = "tsd-hierarchy" > < li class = "tsd-hierarchy-item" > < a href = "Frontend_Script_API._internal_.default.html" class = "tsd-signature-type tsd-kind-class" > default< / a > < ul class = "tsd-hierarchy" > < li class = "tsd-hierarchy-item" > < span class = "tsd-hierarchy-target" > NoteContext< / span > < / li > < / ul > < / li > < / ul > < / section > < section class = "tsd-panel" > < h4 > Implements< / h4 > < ul class = "tsd-hierarchy" > < li > < a href = "../types/Frontend_Script_API._internal_.EventListener.html" class = "tsd-signature-type tsd-kind-type-alias" > EventListener< / a > < span class = "tsd-signature-symbol" > < < / span > < span class = "tsd-signature-type" > " entitiesReloaded" < / span > < span class = "tsd-signature-symbol" > > < / span > < / li > < / ul > < / section > < aside class = "tsd-sources" > < ul > < li > Defined in < a href = "https://github.com/TriliumNext/Notes/blob/84c2ebd7f3245ef3f6cddc8669bb5117079e316c/src/public/app/components/note_context.ts#L21" > src/public/app/components/note_context.ts:21< / a > < / li > < / ul > < / aside > < section class = "tsd-panel-group tsd-index-group" > < section class = "tsd-panel tsd-index-panel" > < details class = "tsd-index-content tsd-accordion" open > < summary class = "tsd-accordion-summary tsd-index-summary" > < svg width = "16" height = "16" viewBox = "0 0 16 16" fill = "none" aria-hidden = "true" > < use href = "../assets/icons.svg#icon-chevronSmall" > < / use > < / svg > < h5 class = "tsd-index-heading uppercase" > Index< / h5 > < / summary > < div class = "tsd-accordion-details" > < section class = "tsd-index-section" > < h3 class = "tsd-index-heading" > Constructors< / h3 > < div class = "tsd-index-list" > < a href = "#constructor" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Constructor" > < use href = "../assets/icons.svg#icon-512" > < / use > < / svg > < span > constructor< / span > < / a >
2025-04-12 13:30:24 +03:00
< / div > < / section > < section class = "tsd-index-section" > < h3 class = "tsd-index-heading" > Properties< / h3 > < div class = "tsd-index-list" > < a href = "#_position" class = "tsd-index-link tsd-is-inherited" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Property" > < use href = "../assets/icons.svg#icon-1024" > < / use > < / svg > < span > _position< / span > < / a >
< a href = "#widget" class = "tsd-index-link tsd-is-inherited" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Property" > < use href = "../assets/icons.svg#icon-1024" > < / use > < / svg > < span > $widget< / span > < / a >
< a href = "#children" class = "tsd-index-link tsd-is-inherited" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Property" > < use href = "../assets/icons.svg#icon-1024" > < / use > < / svg > < span > children< / span > < / a >
< a href = "#componentid" class = "tsd-index-link tsd-is-inherited" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Property" > < use href = "../assets/icons.svg#icon-1024" > < / use > < / svg > < span > component< wbr / > Id< / span > < / a >
< a href = "#hoistednoteid" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Property" > < use href = "../assets/icons.svg#icon-1024" > < / use > < / svg > < span > hoisted< wbr / > Note< wbr / > Id< / span > < / a >
< a href = "#initialized" class = "tsd-index-link tsd-is-inherited" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Property" > < use href = "../assets/icons.svg#icon-1024" > < / use > < / svg > < span > initialized< / span > < / a >
< a href = "#mainntxid" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Property" > < use href = "../assets/icons.svg#icon-1024" > < / use > < / svg > < span > main< wbr / > Ntx< wbr / > Id< / span > < / a >
< a href = "#noteid" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Property" > < use href = "../assets/icons.svg#icon-1024" > < / use > < / svg > < span > note< wbr / > Id?< / span > < / a >
< a href = "#notepath" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Property" > < use href = "../assets/icons.svg#icon-1024" > < / use > < / svg > < span > note< wbr / > Path?< / span > < / a >
< a href = "#ntxid" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Property" > < use href = "../assets/icons.svg#icon-1024" > < / use > < / svg > < span > ntx< wbr / > Id< / span > < / a >
< a href = "#parent" class = "tsd-index-link tsd-is-inherited" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Property" > < use href = "../assets/icons.svg#icon-1024" > < / use > < / svg > < span > parent?< / span > < / a >
< a href = "#parentnoteid" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Property" > < use href = "../assets/icons.svg#icon-1024" > < / use > < / svg > < span > parent< wbr / > Note< wbr / > Id?< / span > < / a >
< a href = "#viewscope" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Property" > < use href = "../assets/icons.svg#icon-1024" > < / use > < / svg > < span > view< wbr / > Scope?< / span > < / a >
< / div > < / section > < section class = "tsd-index-section" > < h3 class = "tsd-index-heading" > Accessors< / h3 > < div class = "tsd-index-list" > < a href = "#note" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Accessor" > < use href = "../assets/icons.svg#icon-262144" > < / use > < / svg > < span > note< / span > < / a >
< a href = "#notepatharray" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Accessor" > < use href = "../assets/icons.svg#icon-262144" > < / use > < / svg > < span > note< wbr / > Path< wbr / > Array< / span > < / a >
< a href = "#position" class = "tsd-index-link tsd-is-inherited" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Accessor" > < use href = "../assets/icons.svg#icon-262144" > < / use > < / svg > < span > position< / span > < / a >
< a href = "#sanitizedclassname" class = "tsd-index-link tsd-is-inherited" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Accessor" > < use href = "../assets/icons.svg#icon-262144" > < / use > < / svg > < span > sanitized< wbr / > Class< wbr / > Name< / span > < / a >
< / div > < / section > < section class = "tsd-index-section" > < h3 class = "tsd-index-heading" > Methods< / h3 > < div class = "tsd-index-list" > < a href = "#callmethod" class = "tsd-index-link tsd-is-inherited" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > call< wbr / > Method< / span > < / a >
< a href = "#child" class = "tsd-index-link tsd-is-inherited" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > child< / span > < / a >
< a href = "#entitiesreloadedevent" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > entities< wbr / > Reloaded< wbr / > Event< / span > < / a >
< a href = "#getcodeeditor" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > get< wbr / > Code< wbr / > Editor< / span > < / a >
< a href = "#getcontentelement" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > get< wbr / > Content< wbr / > Element< / span > < / a >
< a href = "#getmaincontext" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > get< wbr / > Main< wbr / > Context< / span > < / a >
< a href = "#getnavigationtitle" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > get< wbr / > Navigation< wbr / > Title< / span > < / a >
< a href = "#getpojostate" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > get< wbr / > Pojo< wbr / > State< / span > < / a >
< a href = "#getresolvednotepath" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > get< wbr / > Resolved< wbr / > Note< wbr / > Path< / span > < / a >
< a href = "#getsubcontexts" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > get< wbr / > Sub< wbr / > Contexts< / span > < / a >
< a href = "#gettexteditor" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > get< wbr / > Text< wbr / > Editor< / span > < / a >
< a href = "#gettypewidget" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > get< wbr / > Type< wbr / > Widget< / span > < / a >
< a href = "#handleevent" class = "tsd-index-link tsd-is-inherited" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > handle< wbr / > Event< / span > < / a >
< a href = "#handleeventinchildren" class = "tsd-index-link tsd-is-inherited" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > handle< wbr / > Event< wbr / > In< wbr / > Children< / span > < / a >
< a href = "#hasnotelist" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > has< wbr / > Note< wbr / > List< / span > < / a >
< a href = "#isactive" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > is< wbr / > Active< / span > < / a >
< a href = "#isempty" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > is< wbr / > Empty< / span > < / a >
< a href = "#ismaincontext" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > is< wbr / > Main< wbr / > Context< / span > < / a >
< a href = "#isreadonly" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > is< wbr / > Read< wbr / > Only< / span > < / a >
< a href = "#resetviewscope" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > reset< wbr / > View< wbr / > Scope< / span > < / a >
< a href = "#savetorecentnotes" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > save< wbr / > To< wbr / > Recent< wbr / > Notes< / span > < / a >
< a href = "#setempty" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > set< wbr / > Empty< / span > < / a >
< a href = "#sethoistednoteid" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > set< wbr / > Hoisted< wbr / > Note< wbr / > Id< / span > < / a >
< a href = "#sethoistednoteifneeded" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > set< wbr / > Hoisted< wbr / > Note< wbr / > If< wbr / > Needed< / span > < / a >
< a href = "#setnote" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > set< wbr / > Note< / span > < / a >
< a href = "#setparent" class = "tsd-index-link tsd-is-inherited" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > set< wbr / > Parent< / span > < / a >
< a href = "#timeout" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > timeout< / span > < / a >
< a href = "#triggercommand" class = "tsd-index-link tsd-is-inherited" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > trigger< wbr / > Command< / span > < / a >
< a href = "#triggerevent" class = "tsd-index-link tsd-is-inherited" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > trigger< wbr / > Event< / span > < / a >
< a href = "#unhoist" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > unhoist< / span > < / a >
< a href = "#generatentxid" class = "tsd-index-link" > < svg class = "tsd-kind-icon" viewBox = "0 0 24 24" aria-label = "Method" > < use href = "../assets/icons.svg#icon-2048" > < / use > < / svg > < span > generate< wbr / > Ntx< wbr / > Id< / span > < / a >
2025-04-13 18:59:52 +03:00
< / div > < / section > < / div > < / details > < / section > < / section > < details class = "tsd-panel-group tsd-member-group tsd-accordion" open > < summary class = "tsd-accordion-summary" data-key = "section-Constructors" > < svg width = "20" height = "20" viewBox = "0 0 24 24" fill = "none" aria-hidden = "true" > < use href = "../assets/icons.svg#icon-chevronDown" > < / use > < / svg > < h2 > Constructors< / h2 > < / summary > < section > < section class = "tsd-panel tsd-member" > < h3 class = "tsd-anchor-link" id = "constructor" > < span > constructor< / span > < a href = "#constructor" aria-label = "Permalink" class = "tsd-anchor-icon" > < svg viewBox = "0 0 24 24" aria-hidden = "true" > < use href = "../assets/icons.svg#icon-anchor" > < / use > < / svg > < / a > < / h3 > < ul class = "tsd-signatures" > < li class = "" > < div class = "tsd-signature tsd-anchor-link" id = "constructornotecontext" > < span class = "tsd-signature-keyword" > new< / span > < span class = "tsd-kind-constructor-signature" > NoteContext< / span > < span class = "tsd-signature-symbol" > (< / span > < br / > < span class = "tsd-kind-parameter" > ntxId< / span > < span class = "tsd-signature-symbol" > ?:< / span > < span class = "tsd-signature-type" > null< / span > < span class = "tsd-signature-symbol" > |< / span > < span class = "tsd-signature-type" > string< / span > < span class = "tsd-signature-symbol" > ,< / span > < br / > < span class = "tsd-kind-parameter" > hoistedNoteId< / span > < span class = "tsd-signature-symbol" > ?:< / span > < span class = "tsd-signature-type" > string< / span > < span class = "tsd-signature-symbol" > ,< / span > < br / > < span class = "tsd-kind-parameter" > mainNtxId< / span > < span class = "tsd-signature-symbol" > ?:< / span > < span class = "tsd-signature-type" > null< / span > < span class = "tsd-signature-symbol" > |< / span > < span class = "tsd-signature-type" > string< / span > < span class = "tsd-signature-symbol" > ,< / span > < br / > < span class = "tsd-signature-symbol" > )< / span > < span class = "tsd-signature-symbol" > :< / span > < a href = "" class = "tsd-signature-type tsd-kind-class" > NoteContext< / a > < a href = "#constructornotecontext" aria-label = "Permalink" class = "tsd-anchor-icon" > < svg viewBox = "0 0 24 24" aria-hidden = "true" > < use href = "../assets/icons.svg#icon-anchor" > < / use > < / svg > < / a > < / div > < div class = "tsd-description" > < div class = "tsd-parameters" > < h4 class = "tsd-parameters-title" > Parameters< / h4 > < ul class = "tsd-parameter-list" > < li > < span > < span class = "tsd-kind-parameter" > ntxId< / span > : < span class = "tsd-signature-type" > null< / span > < span class = "tsd-signature-symbol" > |< / span > < span class = "tsd-signature-type" > string< / span > < span class = "tsd-signature-symbol" > = null< / span > < / span > < / li > < li > < span > < span class = "tsd-kind-parameter" > hoistedNoteId< / span > : < span class = "tsd-signature-type" > string< / span > < span class = "tsd-signature-symbol" > = " root" < / span > < / span > < / li > < li > < span > < span class = "tsd-kind-parameter" > mainNtxId< / span > : < span class = "tsd-signature-type" > null< / span > < span class = "tsd-signature-symbol" > |< / span > < span class = "tsd-signature-type" > string< / span > < span class = "tsd-signature-symbol" > = null< / span > < / span > < / li > < / ul > < / div > < h4 class = "tsd-returns-title" > Returns < a href = "" class = "tsd-signature-type tsd-kind-class" > NoteContext< / a > < / h4 > < aside class = "tsd-sources" > < p > Overrides < a href = "Frontend_Script_API._internal_.default.html" > default< / a > .< a href = "Frontend_Script_API._internal_.default.html#constructor" > constructor< / a > < / p > < ul > < li > Defined in < a href = "https://github.com/TriliumNext/Notes/blob/84c2ebd7f3245ef3f6cddc8669bb5117079e316c/src/public/app/components/note_context.ts#L31" > src/public/app/components/note_context.ts:31< / a > < / li > < / ul > < / aside > < / div > < / li > < / ul > < / section > < / section > < / details > < details class = "tsd-panel-group tsd-member-group tsd-accordion" open > < summary class = "tsd-accordion-summary" data-key = "section-Properties" > < svg width = "20" height = "20" viewBox = "0 0 24 24" fill = "none" aria-hidden = "true" > < use href = "../assets/icons.svg#icon-chevronDown" > < / use > < / svg > < h2 > Properties< / h2 > < / summary > < section > < section class = "tsd-panel tsd-member tsd-is-inherited" > < h3 class = "tsd-anchor-link" id = "_position" > < span > _position< / span > < a href = "#_position" aria-label = "Permalink" class = "tsd-anchor-icon" > < svg viewBox = "0 0 24 24" aria-hidden = "true" > < use href = "../assets/icons.svg#icon-anchor" > < / use > < / svg > < / a > < / h3 > < div class = "tsd-signature" > < sp
2025-04-12 13:30:24 +03:00
< p > Do note that retrieving the content element needs to be handled by the type widget, which is the one which
provides the content element by listening to the < code > executeWithContentElement< / code > event. Not all note types support
this.< / p >
< p > If no content could be determined < code > null< / code > is returned instead.< / p >
2025-04-13 18:59:52 +03:00
< / div > < h4 class = "tsd-returns-title" > Returns < span class = "tsd-signature-type" > Promise< / span > < span class = "tsd-signature-symbol" > < < / span > < span class = "tsd-signature-type" > JQuery< / span > < span class = "tsd-signature-symbol" > < < / span > < span class = "tsd-signature-type" > HTMLElement< / span > < span class = "tsd-signature-symbol" > > < / span > < span class = "tsd-signature-symbol" > > < / span > < / h4 > < div class = "tsd-comment tsd-typography" > < / div > < aside class = "tsd-sources" > < ul > < li > Defined in < a href = "https://github.com/TriliumNext/Notes/blob/84c2ebd7f3245ef3f6cddc8669bb5117079e316c/src/public/app/components/note_context.ts#L332" > src/public/app/components/note_context.ts:332< / a > < / li > < / ul > < / aside > < / div > < / li > < / ul > < / section > < section class = "tsd-panel tsd-member" > < h3 class = "tsd-anchor-link" id = "getmaincontext" > < span > get< wbr / > Main< wbr / > Context< / span > < a href = "#getmaincontext" aria-label = "Permalink" class = "tsd-anchor-icon" > < svg viewBox = "0 0 24 24" aria-hidden = "true" > < use href = "../assets/icons.svg#icon-anchor" > < / use > < / svg > < / a > < / h3 > < ul class = "tsd-signatures" > < li class = "" > < div class = "tsd-signature tsd-anchor-link" id = "getmaincontext-1" > < span class = "tsd-kind-call-signature" > getMainContext< / span > < span class = "tsd-signature-symbol" > ()< / span > < span class = "tsd-signature-symbol" > :< / span > < a href = "" class = "tsd-signature-type tsd-kind-class" > NoteContext< / a > < a href = "#getmaincontext-1" aria-label = "Permalink" class = "tsd-anchor-icon" > < svg viewBox = "0 0 24 24" aria-hidden = "true" > < use href = "../assets/icons.svg#icon-anchor" > < / use > < / svg > < / a > < / div > < div class = "tsd-description" > < div class = "tsd-comment tsd-typography" > < p > See docs for isMainContext() for better explanation.< / p >
< / div > < h4 class = "tsd-returns-title" > Returns < a href = "" class = "tsd-signature-type tsd-kind-class" > NoteContext< / a > < / h4 > < div class = "tsd-comment tsd-typography" > < / div > < aside class = "tsd-sources" > < ul > < li > Defined in < a href = "https://github.com/TriliumNext/Notes/blob/84c2ebd7f3245ef3f6cddc8669bb5117079e316c/src/public/app/components/note_context.ts#L146" > src/public/app/components/note_context.ts:146< / a > < / li > < / ul > < / aside > < / div > < / li > < / ul > < / section > < section class = "tsd-panel tsd-member" > < h3 class = "tsd-anchor-link" id = "getnavigationtitle" > < span > get< wbr / > Navigation< wbr / > Title< / span > < a href = "#getnavigationtitle" aria-label = "Permalink" class = "tsd-anchor-icon" > < svg viewBox = "0 0 24 24" aria-hidden = "true" > < use href = "../assets/icons.svg#icon-anchor" > < / use > < / svg > < / a > < / h3 > < ul class = "tsd-signatures" > < li class = "" > < div class = "tsd-signature tsd-anchor-link" id = "getnavigationtitle-1" > < span class = "tsd-kind-call-signature" > getNavigationTitle< / span > < span class = "tsd-signature-symbol" > ()< / span > < span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-type" > Promise< / span > < span class = "tsd-signature-symbol" > < < / span > < span class = "tsd-signature-type" > null< / span > < span class = "tsd-signature-symbol" > |< / span > < span class = "tsd-signature-type" > string< / span > < span class = "tsd-signature-symbol" > > < / span > < a href = "#getnavigationtitle-1" aria-label = "Permalink" class = "tsd-anchor-icon" > < svg viewBox = "0 0 24 24" aria-hidden = "true" > < use href = "../assets/icons.svg#icon-anchor" > < / use > < / svg > < / a > < / div > < div class = "tsd-description" > < h4 class = "tsd-returns-title" > Returns < span class = "tsd-signature-type" > Promise< / span > < span class = "tsd-signature-symbol" > < < / span > < span class = "tsd-signature-type" > null< / span > < span class = "tsd-signature-symbol" > |< / span > < span class = "tsd-signature-type" > string< / span > < span class = "tsd-signature-symbol" > > < / span > < / h4 > < aside class = "tsd-sources" > < ul > < li > Defined in < a href = "https://github.com/TriliumNext/Notes/blob/84c2ebd7f3245ef3f6cddc8669bb5117079e316c/src/public/app/components/note_context.ts#L365" > src/public/app/components/note_context.ts:365< / a > < / li > < / ul > < / aside > < / div > < / li > < / ul > < / section > < section class = "tsd-panel tsd-member" > < h3 class = "tsd-anchor-link" id = "getpojostate" > < span > get< wbr / > Pojo< wbr / > State< / span > < a href = "#getpojostate" aria-label = "Permalink" class = "tsd-anchor-icon" > < svg viewBox = "0 0 24 24" aria-hidden = "true" > < use href = "../assets/icons.svg#icon-anchor" > < / use > < / svg > < / a > < / h3 > < ul class = "tsd-signatures" > < li class = "" > < div class = "tsd-signature tsd-anchor-link" id = "getpojostate-1" > < span class = "tsd-kind-call-signature" > getPojoState< / span > < span class = "tsd-signature-symbol" > ()< / span > < span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-symbol" > |< / span > < span class = "tsd-signature-type" > null< / span > < br / > < span class = "tsd-signature-symbol" > |< / span > < span class = "tsd-signature-symbol" > {< / span > < br / > < span class = "tsd-kind-property" > active< / span > < span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-type" > boolean< / span > < span class = "tsd-signature-symbol" > ;< / span > < br / > < span class = "tsd-kind-property" > hoistedNoteId< / span > < span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-type" > string< / span > < span class = "tsd-signature-symbol" > ;< / span > < br / > < span class = "tsd-kind-property" > mainNtxId< / span > < span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-type" > null< / span > < br / > < span class = "tsd-signature-symbol" > |< / span > < span class = "tsd-signature-type" > string< / span > < span class = "tsd-signature-symbol" > ;< / span > < br / > < span class = "tsd-kind-property" > notePath< / span > < span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-type" > undefined< / span > < span class = "tsd-signature-symbol" > |< / span > < span class = "tsd-signature-type" > null< / span > < span class = "tsd-signature-symbol" > |< / span > < span class = "tsd-signature-type" > string< / span > < span class = "tsd-signature-symbol" > ;< / span > < br / > < span class = "tsd-kind-property" > ntxId< / span > < span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-type" > null< / span > < span class = "tsd-signature-symbol" > |< / span > < span
2025-04-12 13:30:24 +03:00
Imagine you have a tab with 3 splits, each showing notes A, B, C (in this order).
In such a scenario, A context is the main context (also representing the tab as a whole), and B, C are the children
of context A.< / p >
< / div > < h4 class = "tsd-returns-title" > Returns < span class = "tsd-signature-type" > boolean< / span > < / h4 > < p > true if the context is main (= tab)< / p >
2025-04-13 18:59:52 +03:00
< div class = "tsd-comment tsd-typography" > < / div > < aside class = "tsd-sources" > < ul > < li > Defined in < a href = "https://github.com/TriliumNext/Notes/blob/84c2ebd7f3245ef3f6cddc8669bb5117079e316c/src/public/app/components/note_context.ts#L136" > src/public/app/components/note_context.ts:136< / a > < / li > < / ul > < / aside > < / div > < / li > < / ul > < / section > < section class = "tsd-panel tsd-member" > < h3 class = "tsd-anchor-link" id = "isreadonly" > < span > is< wbr / > Read< wbr / > Only< / span > < a href = "#isreadonly" aria-label = "Permalink" class = "tsd-anchor-icon" > < svg viewBox = "0 0 24 24" aria-hidden = "true" > < use href = "../assets/icons.svg#icon-anchor" > < / use > < / svg > < / a > < / h3 > < ul class = "tsd-signatures" > < li class = "" > < div class = "tsd-signature tsd-anchor-link" id = "isreadonly-1" > < span class = "tsd-kind-call-signature" > isReadOnly< / span > < span class = "tsd-signature-symbol" > ()< / span > < span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-type" > Promise< / span > < span class = "tsd-signature-symbol" > < < / span > < span class = "tsd-signature-type" > null< / span > < span class = "tsd-signature-symbol" > |< / span > < span class = "tsd-signature-type" > boolean< / span > < span class = "tsd-signature-symbol" > |< / span > < span class = "tsd-signature-type" > 0< / span > < span class = "tsd-signature-symbol" > > < / span > < a href = "#isreadonly-1" aria-label = "Permalink" class = "tsd-anchor-icon" > < svg viewBox = "0 0 24 24" aria-hidden = "true" > < use href = "../assets/icons.svg#icon-anchor" > < / use > < / svg > < / a > < / div > < div class = "tsd-description" > < h4 class = "tsd-returns-title" > Returns < span class = "tsd-signature-type" > Promise< / span > < span class = "tsd-signature-symbol" > < < / span > < span class = "tsd-signature-type" > null< / span > < span class = "tsd-signature-symbol" > |< / span > < span class = "tsd-signature-type" > boolean< / span > < span class = "tsd-signature-symbol" > |< / span > < span class = "tsd-signature-type" > 0< / span > < span class = "tsd-signature-symbol" > > < / span > < / h4 > < div class = "tsd-comment tsd-typography" > < / div > < aside class = "tsd-sources" > < ul > < li > Defined in < a href = "https://github.com/TriliumNext/Notes/blob/84c2ebd7f3245ef3f6cddc8669bb5117079e316c/src/public/app/components/note_context.ts#L245" > src/public/app/components/note_context.ts:245< / a > < / li > < / ul > < / aside > < / div > < / li > < / ul > < / section > < section class = "tsd-panel tsd-member" > < h3 class = "tsd-anchor-link" id = "resetviewscope" > < span > reset< wbr / > View< wbr / > Scope< / span > < a href = "#resetviewscope" aria-label = "Permalink" class = "tsd-anchor-icon" > < svg viewBox = "0 0 24 24" aria-hidden = "true" > < use href = "../assets/icons.svg#icon-anchor" > < / use > < / svg > < / a > < / h3 > < ul class = "tsd-signatures" > < li class = "" > < div class = "tsd-signature tsd-anchor-link" id = "resetviewscope-1" > < span class = "tsd-kind-call-signature" > resetViewScope< / span > < span class = "tsd-signature-symbol" > ()< / span > < span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-type" > void< / span > < a href = "#resetviewscope-1" aria-label = "Permalink" class = "tsd-anchor-icon" > < svg viewBox = "0 0 24 24" aria-hidden = "true" > < use href = "../assets/icons.svg#icon-anchor" > < / use > < / svg > < / a > < / div > < div class = "tsd-description" > < h4 class = "tsd-returns-title" > Returns < span class = "tsd-signature-type" > void< / span > < / h4 > < aside class = "tsd-sources" > < ul > < li > Defined in < a href = "https://github.com/TriliumNext/Notes/blob/84c2ebd7f3245ef3f6cddc8669bb5117079e316c/src/public/app/components/note_context.ts#L358" > src/public/app/components/note_context.ts:358< / a > < / li > < / ul > < / aside > < / div > < / li > < / ul > < / section > < section class = "tsd-panel tsd-member" > < h3 class = "tsd-anchor-link" id = "savetorecentnotes" > < span > save< wbr / > To< wbr / > Recent< wbr / > Notes< / span > < a href = "#savetorecentnotes" aria-label = "Permalink" class = "tsd-anchor-icon" > < svg viewBox = "0 0 24 24" aria-hidden = "true" > < use href = "../assets/icons.svg#icon-anchor" > < / use > < / svg > < / a > < / h3 > < ul class = "tsd-signatures" > < li class = "" > < div class = "tsd-signature tsd-anchor-link" id = "savetorecentnotes-1" > < span class = "tsd-kind-call-signature" > saveToRecentNotes< / span > < span class = "tsd-signature-symbol" > (< / span > < span class = "tsd-kind-parameter" > resolvedNotePath< / span > < span class = "tsd-signature-symbol" > :< / span > < span class = "tsd-signature-type" > string< / span > < span class = "tsd-signature-symbol" > )< / span > < span class = "tsd-signatu