I'd like to build a SharePoint Framework extension that, when active, changes the current navigation (typically the links on the left side of the page).
The current docs for SPFx Extensions don't list any hooks or methods specific to navigation in BaseExtension, so the best approach I can come up with is to run some jQuery in onInit
, which seems not only hacky, but error-prone, since I'd be manipulating parts of the DOM managed by React.js. I'd like to know if there's a better approach or more targeted APIs.