npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@statiolake/coc-ui

v0.2.4

Published

VS Code-style view containers for coc.nvim extensions

Readme

coc-ui

VS Code-style workbench surfaces for coc.nvim extensions. Extensions contribute View Containers to the primary sidebar, secondary sidebar, or panel, then contribute one or more Views to each container. The active container is selected per surface; all non-hidden Views in that container remain mounted together.

The API intentionally mirrors VS Code's ViewContainer / View separation:

const container = ui.registerViewContainer({
  id: "example",
  title: "Example",
  icon: "󰏗",
  location: "primarySidebar",
});

ui.registerView({
  id: "example.items",
  containerId: "example",
  name: "Items",
  order: 1,
});

ui.createTreeView("example.items", {
  treeDataProvider,
  actions: [
    {
      id: "example.rename",
      title: "Rename",
      keys: ["r"],
      handler: (item) => item && rename(item),
    },
  ],
});

ui.registerView({
  id: "example.details",
  containerId: "example",
  name: "Details",
  order: 2,
  visibility: "collapsed",
});

ui.createTreeView("example.details", {
  treeDataProvider: detailsProvider,
});

This follows VS Code's viewsContainers and views model:

  • A workbench surface has one active View Container.
  • A View Container contains multiple ordered Views, not one active View.
  • Views start as visible, collapsed, or hidden.
  • User-chosen visible/collapsed state is restored per workspace.
  • Sidebar Views are stacked vertically. Panel Views are arranged horizontally.
  • The Activity Bar selects the active sidebar container.

registerViewContainer() and registerView() are the runtime equivalents of VS Code's viewsContainers and views contribution points. createTreeView() uses the VS Code shape: a stable View id followed by provider options.

showContainer() mounts every non-hidden View in the container. showView() selects its container, expands that View, and focuses it without closing sibling Views. Use za or double-click a View title to collapse or expand it.

Workbench surfaces have separate show/hide and close lifecycles. Hiding a surface removes its windows while preserving the active container, TreeView buffers, expansion state, and cursor position. Showing it restores that state; only an explicit container close discards the active selection.

Locations can also be shown before a ViewContainer is contributed. In that state coc-ui renders an empty workbench surface that can receive future views instead of treating the location as unavailable.

View actions populate the tree item's context menu. Optional view-local keys invoke the same action with the element under the cursor, keeping commands, menus, and keybindings as one declaration.

ui.switchPrimarySidebar, ui.switchSecondarySidebar, and ui.switchPanel provide command-driven container selection. Sidebar Activity Bar icons provide direct keyboard and mouse selection. Containers on distinct surfaces remain mounted concurrently.

Tree views retain coc.nvim's native single-click behavior. When ui.mouse.enable is enabled, right-clicking a tree item opens the actions provided by its TreeDataProvider.resolveActions implementation.

ui.pickList presents existing Coc List sources in a bounded floating picker. Non-interactive sources use coc.nvim's native fuzzy matcher for scoring, ordering, and match highlights. Interactive sources retain their own producer and filtering semantics. Picker border shape follows coc.nvim's dialog.rounded setting (rounded corners when true, square box-drawing corners when false). ui.picker.resume reloads the last source with its previous arguments and query.

When the selected item's location resolves to an existing local file and the editor is wide enough (ui.picker.preview.minColumns, default 120), the picker partitions its fixed outer rectangle into a left list pane and a framed file preview on the right. Preview eligibility is item-driven (string URI, LSP Location, or LocationWithLine), not source-name-driven. Showing or hiding the preview never changes the picker's outer size at a given editor size; below the column threshold the list and prompt occupy the full rectangle. Disable with ui.picker.preview.enable. A location with a target line is streamed until that line and retains only a bounded window around it, so targets near the end of large files remain previewable without loading the whole file into memory. Long path labels collapse unmatched hierarchy to /../; components containing fuzzy matches and their highlights remain visible.

Pressing <Tab> opens coc.nvim's native menu picker for the selected source item's actions from IList.actions. Canceling the menu leaves the floating picker, query, and selection intact. Choosing an action still honors resolveItem, default source context, persist, and reload.

View content uses coc.nvim's native TreeView renderer. coc-ui owns the workbench model, layout, Activity Bar, container lifecycle, action contributions, and common tree decoration applied to every view created through createTreeView(). Decoration adds indent guides and state-aware disclosure markers for collapsible items (TreeItem.collapsibleState), configured under ui.tree rather than per component. Access to non-public native TreeView fields used for decoration (renderedItems, nodesMap, startLnum, onDidRefrash, filtering) is isolated in a small adapter that exposes a decoration snapshot. Providers still supply TreeItem data; coc-ui does not learn component-specific tree semantics.

Every createTreeView() also follows one VS Code-compatible column layout: at each depth, collapsible disclosure markers and leaf/file icons share the same column. coc-ui enforces this by always passing disableLeafIndent: true to native window.createTreeView; CocTreeViewOptions omits that flag so components cannot opt into coc.nvim's extra leaf indentation. Actions, keybindings, filter, and other options remain contributor-controlled.

This repository is under local development and is not published yet.