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

ngx-hm-dnd

v0.0.3

Published

[See ngx-hm-dnd in action!](https://github.com/SHANG-TING/ngx-hm-dnd/tree/bookCategory)

Downloads

6

Readme

NgxHmDnd/BookCateogry

See ngx-hm-dnd in action!

Installation


install package

npm install --save ngx-hm-dnd

Usage


import module:

import { NgxHmDndModule } from 'ngx-hm-dnd';

@NgModule({
  imports: [...something..., NgxHmDndModule],
  ...
})
export class YourModule {}

Examples


app.component.html

<nav id="nav">
  <ul [ngxHmDnd]="'group-1'" [sourceData]="bookCategory" [enable]="false">
    <li *ngFor="let category of bookCategory; let i = index;"
      [ngClass]="{'selected': selectedIndex === i}"
      (click)="selectedIndex = i">
      <a>{{ category.name }}</a>
    </li>
  </ul>
</nav>

<div *ngIf="bookCategory[selectedIndex].books.length > 0" style="padding-top: 90px;">
    <div *ngIf="display" class="image-wrapper"
      [ngxHmDnd]="'group-1'" [sourceData]="bookCategory[selectedIndex].books" (complete)="complete($event)">
      <div class="image-item insta-page"
        *ngFor="let book of bookCategory[selectedIndex].books; let i = index;"
        [attr.sortEnable]="!book.checked"
        [ngClass]="{'selected': book.checked}"
        (click)="book.checked = !book.checked" >
         <a class="image insta-image">
           <img alt="image" [src]="book.path" />
          </a>
       </div>
    </div>
  {{ bookCategory[selectedIndex].books | json }}
</div>

app.component.ts

import { Component } from '@angular/core';
import { IComplete } from 'ngx-hm-dnd';

export class AppComponent {
  private _selectedIndex = 0;
  get selectedIndex(): number {
    return this._selectedIndex;
  }
  set selectedIndex(val: number) {
    if (this._selectedIndex !== val) {
      this._selectedIndex = val;
      this.display = false;
      setTimeout(() => {
        this.display = true;
      }, 0);
    }
  }
  display = true;
  bookCategory = [
    {
      name: 'Book Category 1',
      books: [
        { name: 'Book 1', checked: false, path: 'https://cdn.scotch.io/scotchy-uploads/2015/12/ng-forward-logo.png' },
        { name: 'Book 2', checked: false, path: 'https://www.primefaces.org/wp-content/uploads/2016/10/primeng.png' },
        { name: 'Book 3', checked: false, path: 'https://angularair.com/logo.png' },
        {
          name: 'Book 4', checked: false,
          path: 'https://mdbootstrap.com/wp-content/themes/mdbootstrap4/content/angular/tutorials/main/img/3.png'
        },
        { name: 'Book 5', checked: false, path: 'https://www.infopulse.com/files/images/Angular-20170712-300x300.png' },
        {
          name: 'Book 6', checked: false,
          path: 'https://resources.cloud.genuitec.com/wp-content/uploads/2018/01/authenticationangular-blog.png'
        },
      ]
    },
    {
      name: 'Book Category 2',
      books: [
        { name: 'Book 7', checked: false, path: 'https://cdn-images-1.medium.com/max/1600/0*1rMayMgSu9dxFXuU.png' },
        { name: 'Book 8', checked: false, path: 'https://frontendmasters.com/assets/angular-app-dev-300x300.png' },
      ]
    },
    {
      name: 'Book Category 3',
      books: [
        { name: 'Book 9', checked: false, path: 'https://www.infopulse.com/files/images/angular-2-sharepoint-integration-round.png' },
        { name: 'Book 10', checked: false, path: 'https://www.mobileacademy.ro/wp-content/uploads/2018/01/ionic-angular-300.jpg' }
      ]
    }
  ];

  complete($event: IComplete) {
    const temp = $event.from.data[$event.from.selectedIndex];
    if (temp.checked) {
      const checkedBooks = $event.from.data.filter(x => x.checked);
      checkedBooks.forEach(checkedBook => {
        $event.from.data.splice($event.from.data.indexOf(checkedBook), 1);
        checkedBook.checked = false;
        $event.to.data[$event.to.selectedIndex].books.push(checkedBook);
      });
    } else {
      $event.from.data.splice($event.from.selectedIndex, 1);
      $event.to.data[$event.to.selectedIndex].books.push(temp);
    }
    this.selectedIndex = $event.to.selectedIndex;
  }
}

app.component.scss

$insta-wrapper-max-width: 965px;
$insta-wrapper-min-height: 100px;
$height: 100%;
$width: 100%;
$transition: all .17s cubic-bezier(.4, 0, 1, 1);

.image-wrapper {
  box-sizing: border-box;
  display: flex;
  flex-flow: row wrap;
  flex-grow: 1;
  justify-content: space-around;
  margin: 0 auto 30px;
  max-width: $insta-wrapper-max-width;
  min-height: $insta-wrapper-min-height;
  position: relative;
  width: $width;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@for $i from 1 through 10 {
  .image-item {
    // 動畫效果
    animation: slide-item .3s ease forwards;
    // transform: translateY(250px);
    // visibility: hidden;

    box-sizing: border-box;
    flex: 1 0 33%;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    width: $width;

    // 改善畫面選取效能
    touch-action: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

    &:nth-child(#{$i}) {
      animation-delay: (#{$i * .1s});
    }
  }

  .insta-page {
    padding: 10px;
  }
  .selected {
    background-color: yellow;
  }
}

.image {
  display: block;
  position: relative;
  transition: $transition;
  width: $width;
  // 防止圖片被抓起來
  pointer-events: none;

  img {
    display: block;
    max-width: $width;
  }
}

@keyframes slide-item {
  60% {
    transform: translateY(-10px);
  }

  100% {
    // opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}

@keyframes fadeIn {

  0% {
    transform: translateX(-150px);
  }

  100% {
    transform: translateX(0);
  }
}


nav {
  position: fixed;
  width: 100%;
  top: 0;
  background: #dd1d8d;
  -webkit-transition: all 650ms cubic-bezier(0.22, 1, 0.25, 1);
  transition: all 650ms cubic-bezier(0.22, 1, 0.25, 1);
  z-index: 3;
  &before {
    content: "";
    display: block;
    position: absolute;
    background: rgba(0, 0, 0, 0.27);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  ul {
    position: relative;
    margin: 0;
    z-index: 2;
    text-transform: uppercase;
    text-align: center;
    li {
      display: inline-block;
      padding: 1.35em 0;
      margin-right: 3em;
      font-size: 0.9em;

      // 改善畫面選取效能
      touch-action: none;
      user-select: none;
      -webkit-user-drag: none;
      -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
      a {
        margin: 0 25px;
        text-decoration: none;
        color: #fff;
        font-size: 0.9em;
        // 防止文字被選取
        pointer-events: none;
      }
    }
    li.selected {
      background-color: #b61c1c;
      opacity: 0.7;
    }
  }
}

View more examples

Configuration (Input)


| Argument | Required | Default value | Type | Location | Description | | ----------------- | -------- | ------------- | --------- | ----------------- | ------------------------------- | | ngx-hm-dnd | no | none | string | container | 可以定義群組名稱來限制可排序的區域 | | source-data | no | [] | any[] | container | 需要雙向綁定的資料 | | enable | no | true | boolean | container | 此區域是否啟動排序功能 | | attr.sortEnable | no | true | boolean | container-items | 此項目是否啟動排序功能 |

Methods (Output)


| Method | Location | Description | | ---------- | --------- | ----------- | | complete | container | 取得目前被移動的element、雙向綁定的資料,以及移動至目標的element、雙向綁定的資料 |

Collaborators

| |
|-| | @SHANG-TING |

Related projects