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

@pie-players/pie-tool-tts-inline

v0.1.5

Published

Inline TTS (Text-to-Speech) tool component for PIE Players Assessment Toolkit.

Readme

@pie-players/pie-tool-tts-inline

Inline TTS (Text-to-Speech) tool component for PIE Players Assessment Toolkit.

Overview

pie-tool-tts-inline is a web component that renders a Material Design speaker icon button for triggering TTS playback. Unlike floating modal tools, this component renders inline at its natural position in the DOM (typically in headers).

Features

  • Material Design speaker icon (🔊)
  • Registers with ToolCoordinator for lifecycle management
  • Integrates with TTSService for QTI 3.0 catalog-based TTS
  • Size variants: sm, md, lg
  • Visual feedback during speaking (pulse animation)
  • Full accessibility support (ARIA labels, keyboard navigation)
  • Coordinator-controlled visibility via CSS display property

Installation

bun add @pie-players/pie-tool-tts-inline

Usage

import '@pie-players/pie-tool-tts-inline';
import { TTSService, BrowserTTSProvider, ToolCoordinator } from '@pie-players/pie-assessment-toolkit';

// Initialize services
const ttsService = new TTSService();
await ttsService.initialize(new BrowserTTSProvider());
const toolCoordinator = new ToolCoordinator();

// Create element
const ttsButton = document.createElement('pie-tool-tts-inline');
ttsButton.setAttribute('tool-id', 'tts-passage-1');
ttsButton.setAttribute('catalog-id', 'passage-1');
ttsButton.setAttribute('size', 'md');

// Bind services as JavaScript properties (not HTML attributes)
ttsButton.ttsService = ttsService;
ttsButton.coordinator = toolCoordinator;

// Coordinator controls visibility
toolCoordinator.showTool('tts-passage-1');

With Svelte

<script>
  import '@pie-players/pie-tool-tts-inline';
  import { ZIndexLayer } from '@pie-players/pie-assessment-toolkit';

  let ttsToolElement;

  $effect(() => {
    if (ttsToolElement && toolCoordinator) {
      ttsToolElement.ttsService = ttsService;
      ttsToolElement.coordinator = toolCoordinator;

      if (ttsService) {
        toolCoordinator.showTool('tts-passage-1');
      }
    }
  });
</script>

<div class="header">
  <h3>Passage Title</h3>
  <pie-tool-tts-inline
    bind:this={ttsToolElement}
    tool-id="tts-passage-1"
    catalog-id="passage-1"
    size="md"
  ></pie-tool-tts-inline>
</div>

Props

HTML Attributes

  • tool-id - Unique identifier for tool registration (default: 'tts-inline')
  • catalog-id - QTI 3.0 accessibility catalog ID for SSML lookup (default: '')
  • language - Language code for TTS (default: 'en-US')
  • size - Icon size: 'sm' (1.5rem), 'md' (2rem), or 'lg' (2.5rem) (default: 'md')

JavaScript Properties

  • ttsService - ITTSService instance (required)
  • coordinator - IToolCoordinator instance (optional, for visibility management)

Behavior

  1. Tool Registration: Registers with ToolCoordinator on mount using the provided tool-id
  2. Text Extraction: Finds nearest .passage-content or .item-content container
  3. TTS Trigger: Calls ttsService.speak(text, { catalogId, language })
  4. Catalog Resolution: TTSService checks for SSML in accessibility catalogs (priority order):
    • Extracted catalogs (from embedded SSML) - auto-generated by section player
    • Item-level catalogs (manually authored)
    • Assessment-level catalogs (manually authored)
    • Plain text fallback (browser TTS)
  5. Visual Feedback: Pulse animation while speaking, disabled state
  6. Cleanup: Unregisters from coordinator on unmount

SSML Extraction Integration

When used with the section player, this tool automatically benefits from SSML extraction:

Author embeds SSML in content:

<div>
  <speak>Solve <prosody rate="slow">x squared plus two</prosody>.</speak>
  <p>Solve x² + 2 = 0</p>
</div>

Section player extracts SSML at runtime:

  • Generates catalog with ID like auto-prompt-q1-0
  • Adds data-catalog-id="auto-prompt-q1-0" to visual content
  • Registers catalog with AccessibilityCatalogResolver

Tool uses extracted catalog:

  • User clicks TTS button in header
  • Tool calls ttsService.speak(text, { catalogId: 'auto-prompt-q1-0' })
  • TTSService finds SSML in extracted catalogs
  • Speaks with proper math pronunciation and pacing

Result: Authors get high-quality TTS without maintaining separate catalog files.

Styling

The component uses inline styles and doesn't require external CSS. The button is transparent by default with hover effects:

  • Normal: Gray icon, transparent background
  • Hover: Purple icon, light gray background
  • Speaking: Purple icon, blue tinted background with pulse animation
  • Disabled: Reduced opacity, no pointer

Architecture

This tool follows the PIE Assessment Toolkit tool pattern:

  • Always rendered in DOM at natural position
  • ToolCoordinator controls visibility via showTool()/hideTool() (CSS display property)
  • Registers with ZIndexLayer.TOOL for proper layering
  • Services passed as JavaScript properties (objects can't be HTML attributes)

Example

See the complete working demo at packages/section-player/demos/tts-integration-demo.html.

License

MIT