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 🙏

© 2024 – Pkg Stats / Ryan Hefner

ng-gd

v0.3.2

Published

The easy way to manage the canvas. Support object and clicks events to the objects This library was generated with [Angular CLI](https://github.com/angular/angular-cli) Angular 17

Downloads

16

Readme

NgGd

The easy way to manage the canvas. Support object and clicks events to the objects This library was generated with Angular CLI Angular 17

Build

Run ng build ng-gd to build the lib. The build artifacts will be stored in the dist/ directory.

Publishing

After building your library with ng build ng-gd, go to the dist folder cd dist/ng-gd and run npm publish.

Versions

| Library version | Angular | | ------------------- | ----------- | | 3.0.2 | 18.2 | | 3.0.0 | 18 | | 2.0.8 | 17 | | 2.0.0 | 15, 15.2 |

*Feature shadow in objects.

Usage

install the lib

npm i ng-gd

declare in a module program

import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";

import { AppComponent } from "./app.component";
import { NgGdService } from "ng-gd";

@NgModule({
  declarations: [AppComponent],
  imports: [BrowserModule],
  providers: [NgGdService],
  bootstrap: [AppComponent],
})
export class AppModule {}

create a canvas in html

<canvas #canvas width="640" height="480"></canvas>

declare vars in your component class and call the lib;

import {
  NgGdService,
  Point,
  NodeObject,
} from 'ng-gd';

export class App implements OnInit {
gd = inject(NgGdService);
private ctx!: CanvasRenderingContext2D;
@ViewChild('canvas', { static: true }) canvas!: ElementRef<HTMLCanvasElement>;
}

ngOnInit(): void {
    this.ctx = this.canvas.nativeElement.getContext('2d')!;
    this.gd.start(640,480);
    this.gd.setDarkMode();
    this.gd.addNode({ x: 150, y: 150 }, "one", "this is the node one", false, 10, 10);
    this.gd.clear(this.ctx);
    this.gd.draw(this.ctx);
}

If you have problems with go another page and return use after view init for refresh.

Demo objects in stackblitz

Demo charts in stackblitz

Demo chart with map function in stackblitz

Demo ZOrder in GitHub

Demo ZOrder in stackblitz

List gd service commands

start(width: number, height: number) Start gd lib required for start.

getLabels(): Get all labels.

findLabelByText(text: string):LabelObject Get a label for your text.

findByName(text: string): ArcObject | CandlestickObject | CircleObject | ConnectionObject | LabelObject | LineChartObject | ShapeObject Find a object by name assign the name of the object first.

getConnections() Get all connections.

getNodes() Get all nodes.

castingMultiplesSides(id: number) Get a multiples sides object with id number.

castingLine(id:number) Get a line Object.

castingRectangle(id: number) Get a rectangle object.

castingCircle(id: number) Get a circle object.

castingNode(id:number) Get a node object.

castingLabel(id: number) Get a label object.

castingConnection(id: number) Get connection object.

casting(id) Get a any object with casting.

getMousePoint(ctx: CanvasRenderingContext2D, x: number, y: number) Return a position the mouse.

setDarkMode() Change the background color to black and ink white.

setLightMode() Change the background color to white and ink black.

canvasSetSize(width: number, height: number) Change canvas size for the library not the canvas.

resetMouse() Reset last position.

clear(ctx: CanvasRenderingContext2D) Clear the canvas.

clearObjects() Delete all objects in the library.

addCandleChart(point: Point, candleStick: Candlestick[], width: number, height: number, bullColor: string | CanvasGradient | CanvasPattern, bearColor: string | CanvasGradient | CanvasPattern, distance: number) Create a candle chart.

addPieChart(ctx: CanvasRenderingContext2D, point: Point, size: number, values: number[], color: (string | CanvasGradient | CanvasPattern)[], distance: number, start?: number, labels?: string[]) Create a pie chart.

addGraphBars(ctx: CanvasRenderingContext2D, point: Point, width: number, values: number[], color: (string | CanvasGradient | CanvasPattern)[], distance: number) Create graph bars.

addLineChart(point: Point, values: number[], dist: number, color : string| CanvasGradient | CanvasPattern,marks?:boolean): LineChartObject Create a line for chart.

addAxisY(ctx: CanvasRenderingContext2D, point: Point, dist: number, steps: number, labels: string[], fontSize: number, angleGrades?: number, distance?: number,adjustLabel?:Point[]) Create a y axis.

addAxisX(ctx: CanvasRenderingContext2D, point: Point, dist: number, steps: number, labels: string[], fontSize: number, angleGrades?: number, distance?: number,adjustLabel?:Point[]) Create a x axis.

addCandleStick(point: Point, candleStick: Candlestick, width: number, height: number, bullColor: string | CanvasGradient | CanvasPattern, bearColor: string | CanvasGradient | CanvasPattern): Candle_stick Create a candle stick.

addMultiplesSides(point: Point, sides: number, radius: number, color?: string| CanvasGradient | CanvasPattern, borderColor?: string | CanvasGradient | CanvasPattern) Create a figure with 5 sides minimum.

addTriangle(first: Point, second: Point, third: Point, color?: string, borderColor?: string,shadow?:boolean) Create a triangle.

addCircle(point: Point, radius: number, color?: string, borderColor?: string,shadow?:boolean) Create a circle.

addRectangle(point: Point, width: number, height: number, angle:number,color?: string, borderColor?: string,shadow?:boolean) Create a rectangle.

addNode(point: Point, name: string, description?: string, net?: boolean, angleLabel?: number, distanceLabel?: number,shadow?:boolean) Add node.

addConnection(point: Point, toPoint: Point, color?: string| CanvasGradient | CanvasPattern, label?: string,shadow?:boolean) Create a connection.

addLine(point: Point, toPoint: Point, steps?: number, color?:(string| CanvasGradient | CanvasPattern)) Create a line steps mark the line like rule.

addLabel(point: Point, text: string, fontSize: number, angle: number,shadow?:boolean) Create a label.

addArc(x: number, y: number, size: number, beginGrades: number, endGrades: number, color?: string| CanvasGradient | CanvasPattern, borderColor?: string| CanvasGradient | CanvasPattern,shadow?:boolean): ArcObject Create a arc object

click(ctx: CanvasRenderingContext2D, event: MouseEvent):{ shape: ShapeObject, action: string } Return a array all objects are clicked with mouse order for ZOrder. Possible events off object.

inPoint Object are clicked.

Line and connection private events

inPointXY Object clicked in first point.

inPointToXY Object clicked in second point.

inRectangle Object clicked in the line.

getClicks() Return a list created for click function speed reasons.

draw(ctx: CanvasRenderingContext2D) Draw all objects.

zoomInPoint(ctx: CanvasRenderingContext2D, x: number, y: number, zoom: number) Zoom in x,y position.

getItem(id:number) Return a object with casting to ShapeObject.

Object properties all object are derived the class ShapeObject.

x:position x. y:position y.

color Object color gd support string,patterns or gradients;

visible Toggle object to visible you turn false the object not draw.

type Variable with string class of the object the easy way to obtain the type class the one object.

possibles values are

label

node

connection

rectangle

circle

triangle

multiplesSides

line

arc

lineChart

candleStick

Objects common functions

drawShape(ctx: CanvasRenderingContext2D) Draw the object in the canvas.

inverseShape(ctx: CanvasRenderingContext2D) Draw the object with background color.

inPoint(x: number, y: number) Return true if the object is in position x,y.

move(x:number,y:number) Move the object to new position.

moveMouse(ctx: CanvasRenderingContext2D, event: MouseEvent) Move the object to mouse position.

Additional functions for LineObject and ConnectionObject

inPointXY(x: number, y: number): boolean If the mouse is over the first point the line or connection.

inPointToXY(x: number, y: number): boolean If the mouse is over the second point the line or connection.

inRectangle(x: number, y: number): boolean If the mouse is over the line.

moveMouseXY(ctx: CanvasRenderingContext2D, event: MouseEvent) Mouse move the first point to new position.

moveMouseToXY(ctx: CanvasRenderingContext2D, event: MouseEvent) Mouse move the second point to new position.

Objects level

toFront() Move the object to fist plane over all objects.

toTop() Move the object to first plane.

toBack() Move the object to last plane.

nextZOrder() Move the object one plane to front.

backZOrder() Move the object one plane to back.

Service renumber is for not let plane withouts objects. for sample .

this.gd.renumberZOrder()

Auxiliary functions.

map(number: number, startInput: number, stopInput: number, startOutput: number, stopOutput: number): number This function is for change range of values for example if you need translate 33 in percentage to grades use this.gd.map(33,0,100,0,360)

move(point: Point, angle: number, distance: number): Point Move point angle and distance.

toRadians(grades: number): number Return degrees in radians.

toDegrees(radian: number): number Return radians in degrees.

distance(from:Point,to:Point):number Distance between two points.

angle(from:Point,to:Point):number Angle from point to point.

For help send email to:[email protected] or:Likedin