w3c / webextensions

Charter and administrivia for the WebExtensions Community Group (WECG)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`sidePanel` API: support "one instance per tab" in `openPanelOnActionClick`

fregante opened this issue · comments

The default behavior of the sidePanel API seems to be to share a single document per window. You open the sidebar and it persists while switching tabs. ⚠️

This is great for "global" extensions or those that have a UI with limited complexity (i.e. they don't require fetching and displaying data based on the current page)

However in our extension the sidebar shows content related to the current page/contentScript, so we'd rather have a dedicated sidebar per tab. This means we prefer the sidebar to disappear when switching to tabs that don't need it.

The good news

Chrome actually already allows "one sidebar instance per tab", but it requires calling setOptions on every tab, with some complexity and drawbacks.

🖼️ Demo gif

all

Proposal

chrome.sidePanel.setPanelBehavior({
	openPanelOnActionClick: true,
+	linkToTab: true,
});

Current solution

void chrome.sidePanel.setPanelBehavior({ openPanelOnActionClick: false });

// Disable by default, so that it can be enabled on a per-tab basis
void chrome.sidePanel.setOptions({
  enabled: false,
});

chrome.action.onClicked.addListener(async (tab) => {
  // Simultaneously define, enable, and open the side panel
  void chrome.sidePanel.setOptions({
    enabled: true,

    // Link to tab
    tabId,

    // Help sidebar.html know which tab it's connected to
    path: "sidebar.html?tabId=" + tab.id,
  });
  await chrome.sidePanel.open({ tabId });
});

Drawbacks for the current solution

This is somewhat feasible but it comes with some drawbacks and complexity:

  • to create one-sidepanel-per-tab, we can't use the native openPanelOnActionClick: true
  • we have to listen to the action.onClick event and manually open the sidebar
  • there is no way to easily determine whether the sidePanel is open and therefore should closed
    • this is an issue because open() must come immediately, in order not to lose the "user gesture", so doing async work ("should open or close it?") might delay this just enough to break it
  • there's no sidePanel.close() API, so to close the sidebar in a tab, you'd have to set enabled: false, which removes it from the dropdown
  • there's no sidePanel.onOpen event, so the logic must either be in action.onClick or in the sidePanel document itself

Did you try chrome.tabs.onActivated inside the side panel and add/remove DOM elements or toggle visibility accordingly? If it doesn't flicker, the overall memory consumption would be less by ~20MB per tab probably. As for the other issues you mentioned, they should be fixed anyway regardless of this proposal.

I think you're referring to having one sidebar instance and then changing its content depending on the tab.

It can work in some cases but here preserving the state between tab changes can be difficult; the side panel here contains a complex app (think multi-step forms, iframes, etc) that can't be easily unloaded and restored without side effects.

AFAIK it should be possible. Which side effects specifically?

Which side effects specifically?

What happens when you remove these elements from the DOM:

  • iframe
  • audio
  • video
  • img

Removing/reattaching them on tab change will trigger HTTP requests and it will lose state, e.g. navigation in the iframe. These are just the most prominent examples and not an exhaustive list.

AFAIK it should be possible

It is possible, but it moves the complexity to the app itself, for example in a React app you'd have to specifically try to preserve the entire DOM for every relevant tab.

Even for simple sidebars, having a dedicated document/instance per tab greatly simplifies management.

Since having multiple sidebars is already possible, I'd always prefer that over having to deal with tab/content changes.

Well, don't remove them, simply toggle their visibility. I don't see anything complex in having multiple apps in one document.

You can also put the entire app inside an iframe to isolate the globals/whatever and have an iframe per tab, then toggle the iframe visibility. You'll be able to reuse resources and data between all of them through parent, so it'll consume less resources than separate pages.

But if your proposal is easy to implement for browser makers I agree it makes sense for the sake of consistency of the API.

Let's stick to the proposal, because that solution is in no way better than just loading dedicated sidebars (which already works, without altering the app)

Also what you're suggesting just doesn't match the requirement: the sidebar must close when switching to tab that didn't open it.

  • there's no sidePanel.close() API, so to close the sidebar in a tab, you'd have to set enabled: false, which removes it from the dropdown

Have you tried calling window.close() inside the side panel window?

@dotproto That's really useful, thanks! I opened a dedicated issue for that: