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 🙏

© 2025 – Pkg Stats / Ryan Hefner

ai-lead-score-poc

v1.0.3

Published

An UI library to show ai lead score

Readme

ai-lead-score-poc

A lightweight React component library to display AI-based Lead Scores and their timelines in a flexible and customizable way.

This package helps you easily show lead scores, compare multiple leads, visualize score history, and even inject lead scores into existing HTML tables — without rewriting your UI.


📦 Package Overview

ai-lead-score-poc is a React-based npm package designed to show lead score data and timeline insights for students or leads.

It works out-of-the-box with minimal setup and also gives you full freedom to customize UI components according to your design system (MUI, custom CSS, etc.).

⚠️ Important Note
For now, the apiKey is static and must be:

https://www.demoapi.com

Passing any other value will not work.
This will be made dynamic in future releases.


🚀 What Can This Package Do?

  • Show single lead score
  • Show multiple lead scores
  • Inject lead score column into any existing table
  • Display lead score timeline
  • Show timeline inside a dialog/modal
  • Support fully custom UI components

📥 Installation

npm install ai-lead-score-poc

yarn add ai-lead-score-poc

🧩 Components & Usage Details

Below are all available components with clear explanations and prop details.


1️⃣ ShowSingleLeadScore

Displays the lead score for a single student.

Props

| Prop Name | Type | Required | Description | | ----------------- | --------------- | -------- | --------------------------------- | | apiKey | string | ✅ | Must be https://www.demoapi.com | | studentId | string | ✅ | Unique student/lead ID | | CustomComponent | ComponentType | ❌ | Custom UI for rendering score |

CustomComponent Props

{
  isLoading: boolean;
  score: number;
}

Example

import { ShowSingleLeadScore } from "ai-lead-score-poc";

export default function SingleScoreExample() {
  return (
    <ShowSingleLeadScore
      apiKey="https://www.demoapi.com"
      studentId="STUDENT_123"
    />
  );
}

2️⃣ LeadScoreTimelineDialog

Shows lead score timeline inside a dialog/modal.

Props

| Prop Name | Type | Required | Description | | ----------------- | --------------- | -------- | ----------------------------------------------- | | DialogInitiator | ComponentType | ✅ | Button or element to open dialog | | TimelineDialog | ComponentType | ❌ | Custom dialog UI | | CustomTimeline | ComponentType | ❌ | Custom timeline UI | | studentId | string | ✅ | Student ID | | apiKey | string | ✅ | Static API key | | dialogTitle | string | ❌ | Dialog Header (default : Lead Score Timeline) |

DialogInitiator Props

{
  onClick: () => void;
}

TimelineDialog Props

{
  open: boolean;
  setOpen: React.Dispatch<React.SetStateAction<boolean>>;
  isLoading: boolean;
  leadScoreDetails: {
    date: string;
    score: number;
    message: string;
  }
  [];
}

CustomTimeline Props

CustomTimelineProps
{
  timelineDetails: {
    date: string;
    score: number;
    message: string;
  }[];
  isLoading?: boolean;
}

Example

import { LeadScoreTimelineDialog } from "ai-lead-score-poc";

export default function TimelineDialogExample() {
  return (
    <LeadScoreTimelineDialog
      apiKey="https://www.demoapi.com"
      studentId="STUDENT_123"
      DialogInitiator={({ onClick }) => (
        <button onClick={onClick}>View Lead Timeline</button>
      )}
    />
  );
}

3️⃣ MultipleStudentLeadScore

Displays lead scores for multiple students at once.

Props

| Prop Name | Type | Required | Description | | ----------------- | --------------- | -------- | ------------------------ | | studentIds | string[] | ✅ | List of student IDs | | apiKey | string | ✅ | Static API key | | loader | ReactElement | ❌ | Loader UI while fetching | | className | string | ❌ | Custom wrapper class | | CustomComponent | ComponentType | ❌ | Custom UI for score list |

CustomComponent Props

{
  scores: Array<{
    studentId: string;
    name: string;
    leadScore: number | null;
    email: string;
    phone: number;
  }>;
}

Example

import { MultipleStudentLeadScore } from "ai-lead-score-poc";

export default function MultipleScoreExample() {
  return (
    <MultipleStudentLeadScore
      apiKey="https://www.demoapi.com"
      studentIds={["STUDENT_1", "STUDENT_2", "STUDENT_3"]}
    />
  );
}

4️⃣ LeadScoreTimeline

Shows lead score history in different layouts like table, card, or timeline.

Props

| Prop Name | Type | Required | Description | | ------------------ | ------------------- | -------- | ------------------ | | apiKey | string | ✅ | Static API key | | studentId | string | ✅ | Student ID | | timelineType | timelineTypes | ❌ | UI type | | timelinePosition | timelinePositions | ❌ | Timeline alignment | | CustomTimeline | ComponentType | ❌ | Custom timeline UI | | classes | object | ❌ | Custom class names |

timelineTypes : "table" | "card" | "timeline" | undefined

timelinePositions : "right" | "left" | "alternate" | "alternate-reverse" | undefined

CustomTimeline Props

CustomTimelineProps
{
  timelineDetails: {
    date: string;
    score: number;
    message: string;
  }[];
  isLoading?: boolean;
}

Example

import { LeadScoreTimeline } from "ai-lead-score-poc";

export default function TimelineExample() {
  return (
    <LeadScoreTimeline
      apiKey="https://www.demoapi.com"
      studentId="STUDENT_123"
      timelineType="timeline"
      timelinePosition="alternate"
    />
  );
}

5️⃣ InjectLeadScoreTableColumn

Injects a Lead Score column into any existing HTML table using its ID.

Props

| Prop Name | Type | Required | Description | | ---------------------- | --------------- | -------- | ------------------------- | | tableId | string | ✅ | Target table ID | | studentIds | string[] | ✅ | Student IDs (row-wise) | | headerName | string | ✅ | Column header text | | apiKey | string | ✅ | Static API key | | headerInjectionIndex | number | ❌ | Injection Column position | | CustomComponent | ComponentType | ❌ | Custom cell UI |

CustomComponent Props

{
  isLoading: boolean;
  score: number;
}

Example

import { InjectLeadScoreTableColumn } from "ai-lead-score-poc";

export default function InjectColumnExample() {
  return (
    <table id="student-table">
      <thead>
        <tr>
          <th>Name</th>
          <th>Email</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>John</td>
          <td>[email protected]</td>
        </tr>
        <tr>
          <td>Jane</td>
          <td>[email protected]</td>
        </tr>
      </tbody>

      <InjectLeadScoreTableColumn
        apiKey="https://www.demoapi.com"
        tableId="student-table"
        headerName="Lead Score"
        studentIds={["STUDENT_1", "STUDENT_2"]}
        headerInjectionIndex={2}
      />
    </table>
  );
}

🧠 Summary

  • ai-lead-score-poc helps you display lead scores and insights quickly
  • Works well with existing UI and tables
  • Fully customizable components
  • Easy to integrate into any React app
  • Currently uses a static API key, which will be improved later