You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

ngx-annotate-text

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-annotate-text

An Angular component library for interactively highlighting / annotating parts of text.

0.1.0
Source
npmnpm
Version published
Weekly downloads
609
7.6%
Maintainers
1
Weekly downloads
 
Created
Source

ngx-annotate-text

An Angular component library for interactively highlighting / annotating parts of text.

Screenshot

Features

  • :raised_hand: Interactively mark entities such as cities, numbers, dates, etc.
  • :x: Remove annotations / marked entities.
  • :tada: Purely based on CSS. No magic, no canvas, and no SVGs.

Demo

For the demo application, please see the Angular app in ./src/app/. Screen recording:

Usage

  • Install the NPM package:

    npm install ngx-annotate-text
    
  • Import the Angular module NgxAnnotateTextModule:

    import { BrowserModule } from '@angular/platform-browser';
    import { NgModule } from '@angular/core';
    
    import { AppComponent } from './app.component';
    import { NgxAnnotateTextModule } from 'ngx-annotate-text';
    
    @NgModule({
      declarations: [
        AppComponent
      ],
      imports: [
        BrowserModule,
        NgxAnnotateTextModule,
      ],
      providers: [],
      bootstrap: [AppComponent]
    })
    export class AppModule { }
    
  • Add the component ngx-annotate-text to your template:

    <ngx-annotate-text
    	[(annotations)]="annotations"
     	[removable]="true"
    	[text]="text"
    	annotationClass="my-annotation"
    	#annotateText>
    </ngx-annotate-text>
    
  • Create properties in your component class for the text to be annotated and an (empty) array of annotations:

    import { Component, ViewChild } from '@angular/core';
    import { Annotation, NgxAnnotateTextComponent } from 'ngx-annotate-text';
    
    @Component({
      selector: 'app-root',
      templateUrl: './app.component.html',
      styleUrls: ['./app.component.css']
    })
    export class AppComponent {
    
      text: string = 'On August 1, we went on vacation to Barcelona, Spain. Our flight took off at 11:00 am.';
    
      annotations: Annotation[] = [
        new Annotation(3, 11, 'Date', '#0069d9'),
        new Annotation(36, 45, 'City', '#dc3545'),
        new Annotation(47, 52, 'Country', '#28a745'),
        new Annotation(77, 85, 'Time', '#5a6268'),
      ];
    
    }
    

API - NgxAnnotateText

Inputs

InputDescriptionTypeDefault value
annotationsRepresents the parts of the given text which shall be annotated.Annotation[][]
annotationClassAn optional CSS class applied to all elements which wrap the annotated parts of the given text.string
removableDetermines whether annotations shall have a small button in the top right corner so that the user can remove an annotation.booleantrue
textThe text which shall be displayed and annotated.string

Outputs

OutputDescriptionType
annotationsChangeEmits the list of existing annotations after an element has been removed by the user.EventEmitter<Annotation[]>

Methods

MethodDescriptionReturn type
getCurrentTextSelectionReturns the start index and end index of the currently selected text range. Returns undefined if no text is currently selected.ISelection

Development

Build

Run ng build ngx-annotate-text to build the project. The build artifacts will be stored in the dist/ directory.

Run linting tools

Run ng lint ngx-annotate-text to execute TSLint.

Running unit tests

Run ng test ngx-annotate-text --code-coverage to execute the unit tests via Karma. Don't forget to set the environment variable for where to find Chrome / Chromium like so: export CHROME_BIN=/snap/bin/chromium.

Publish library as an npm package

ng build ngx-annotate-text --prod
cd dist/ngx-annotate-text
npm publish

Development server

Build the library in watch mode:

ng build ngx-annotate-text --watch

Run the Angular dev server:

ng serve --open

Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

Keywords

Angular

FAQs

Package last updated on 14 Feb 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.