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-wp-components

v0.0.8

Published

A Wordpress component library for easy and flexible integration

Downloads

4

Readme

NgWordpressComponents

This is a set of simple wordpress components that provide access to wordpress data without markup.

These were originally developed to be used in Scully.io for static use.

These components (except wp-image) don't insert html markup and use templates. This way you can use whatever markup you want.

There is also a wordpress service that you can use to call API's directly.

Installing the wordpress components

npm install ng-wp-components --save

Import module to your angular module (you need to specify your wordpress url):

import { NgWpComponentsModule } from 'ng-wp-components';

@NgModule({
  ...
  imports: [
    ...
    NgWpComponentsModule.forRoot( 'https://my-wordpress-site.com' ),
  ]
})
export class Module { }

Display Wordpress Info (site name and description)

<wp-info>
  <ng-template let-info="info">
    {{ info.name }}: {{ info.description }}
  </ng-template>
</wp-info>

Display Wordpress Page by Slug

<wp-page slug="home">
  <ng-template let-page="page">
    <h1>
      {{ page.title.rendered }}
    </h1>
    <p [innerHTML]="page.content.rendered"></p>
  </ng-template>
</wp-page>

Display Wordpress Post by Slug (with image)

This example uses both wp-post and wp-image:

  <wp-post [slug]="slug">
    <ng-template let-post="post">
      <h1>
        {{ post.title.rendered }}
      </h1>
      <p [innerHTML]="post.content.rendered"></p>
      <wp-image size="medium" [mediaId]="post.featured_media"></wp-image>
    </ng-template>
  </wp-post>

Display Wordpress Image by id

Displays a medium image with an id of 10. Size is the wordpress sizes.

<wp-image size="medium" mediaId="10">
  <ng-template let-image="image" let-media="media">
    <img [src]="image.source_url" [alt]="media.alt_text" />
  </ng-template>
</wp-image>

A Wordpress Menu by id

IMPORTANT: This component requires Wordpress Plugin installed called 'WP-REST-API V2 Menus'. This will provide an API to get the menu items.

Each menu item is automatically converted to a relative link.

The wordpress URL is removed from all links for that they become relative.

<wp-menu menuId="1">
  <ng-template let-menuItem="menuItem">
    <a routerLinkActive="active"
       [routerLinkActiveOptions]="{ exact:true }"
       [routerLink]="menuItem.url">
      {{ menuItem.title }}
    </a>
  </ng-template>
</wp-menu>

because you can not have a slug in wordpress that is '' you need to set the slug of your home page to something.

The menu will automatically change these home page links to be '/'.

By default the menu will assume your home page slug is 'home'. However, you can change this by doing:

<wp-menu menuId="1" homeSlug="home-page">
  <ng-template let-menuItem="menuItem">
    <a routerLinkActive="active"
       [routerLinkActiveOptions]="{ exact:true }"
       [routerLink]="menuItem.url">
      {{ menuItem.title }}
    </a>
  </ng-template>
</wp-menu>

Display List of Wordpress Posts

All

<wp-post-list>
  <ng-template let-post="post">
    <section [id]="post.slug">
      <h2>{{ post.title.rendered }}</h2>
      <div [innerHTML]="post.excerpt.rendered"></div>
    </section>
  </ng-template>
</wp-post-list>

filtered by category id

For every post it will create a section with content:

<wp-post-list category="2">
  <ng-template let-post="post">
    <section [id]="post.slug">
      <h2>{{ post.title.rendered }}</h2>
      <div [innerHTML]="post.excerpt.rendered"></div>
    </section>
  </ng-template>
</wp-post-list>

For every post it will create a link with title linking to the slug:

<wp-post-list category="2">
  <ng-template let-post="post">
    <a routerLink="."
       [fragment]="post.slug">
      {{ post.title.rendered }}
    </a>
  </ng-template>
</wp-post-list>

ordered

You can also order your list (by default they are ordered by date desc)

<wp-post-list orderBy="date" order="desc" category="2">
  <ng-template let-post="post">
    <a routerLink="."
       [fragment]="post.slug">
      {{ post.title.rendered }}
    </a>
  </ng-template>
</wp-post-list>

limited

You can limit your list (by default they are limited to 100 which is the max allowed by Wordpress)

<wp-post-list limit="10" category="2">
  <ng-template let-post="post">
    <a routerLink="."
       [fragment]="post.slug">
      {{ post.title.rendered }}
    </a>
  </ng-template>
</wp-post-list>

paged

You can get a specific page (default is 1). In this example posts 11 to 20 will be displayed.

<wp-post-list limit="10" page="2" category="2">
  <ng-template let-post="post">
    <a routerLink="."
       [fragment]="post.slug">
      {{ post.title.rendered }}
    </a>
  </ng-template>
</wp-post-list>

A More complex example

More complex example with nested components:

The example below combines components to:

  • a post by slug (from the params)
  • an image attached to the post
  • a page by slug ("about")

post.component.ts:

import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { map } from 'rxjs/operators';
import { Observable } from 'rxjs';

@Component({
  selector: 'app-post',
  templateUrl: './post.component.html'
})
export class PostComponent implements OnInit {

  slug$: Observable<string>;

  constructor(
    private route: ActivatedRoute
  ) { }

  ngOnInit(): void {
    this.slug$ = this.route.paramMap.pipe(
      map( params => params.get('post-slug') )
    );
  }

}

post.component.html:

  <wp-post [slug]="slug$ | async">
    <ng-template let-post="post">
      <h1>
        {{ post.title.rendered }}
      </h1>
      <p [innerHTML]="post.content.rendered"></p>
      <wp-post slug="about">
        <ng-template let-about="post">
          <h2>
            {{ about.title.rendered }}
          </h2>
          <p [innerHTML]="about.content.rendered"></p>
        </ng-template>
      </wp-post>
      <wp-image size="medium" [mediaId]="post.featured_media">
        <ng-template let-image="image" let-media="media">
          <img [src]="image.source_url" [alt]="media.alt_text" />
        </ng-template>
      </wp-image>
    </ng-template>
  </wp-post>

Pagination

<wp-paginator category="1" type="posts" itemsPerPage="20">
    <ng-template let-items="items" let-pages="pages">
        <a *ngFor="let page of pages" 
           [routerLink]="[ 'item', page ]">
        {{ page }}
        </a>
    </ng-template>
</wp-paginator>

SEO

Requires Yoast plugin to be installed on Wordpress site.

Apply Yoast seo data to your page with slug 'home':

<wp-yoast slug="home" type="page"></wp-yoast>

Apply Yoast seo data to your post with slug 'home':

<wp-yoast slug="home" type="page"></wp-yoast>