Code Monkey home page Code Monkey logo

ack-angular's Introduction

ack-angular

Extra special directives, components, providers and pipes to aide in tackling everyday interface development needs in Angular. Demos and Examples here

hire me npm version npm downloads Dependency Status

Source Repository : src branch here

Table of Contents

Install

npm install --save-dev web-animations-js ack-x ack-angular-fx ack-angular

Importing into Project

ack-angular uses file based imports, importing the index does nothing.

Import Samples

Various Import Examples

import { pipes, components } from "ack-angular"

//save as above
import { declarations as pipes } from "ack-angular/pipes"
import { declarations as components } from "ack-angular/declarations"

Dependency Based Import Examples

If you attempt to import any of the following, certain dependencies must have already been installed.

check dependency map

//requires @angular/router imports
import { RouteReporter } from "ack-angular/RouteReporter.directive"
import { RouteWatchReporter } from "ack-angular/RouteWatchReporter"

Dependency Map

If you import the following files, make sure you have installed it's dependencies

You can ignore all of this if you used ack-webpack to install jsDependencies

  • ack-angular/RouteReporter.directive.ts
    • Import Example : import { RouteReporter } from "ack-angular/RouteReporter.directive"
    • Dependency Install npm install @angular/router --save-dev
  • ack-angular/RouteWatchReporter.ts
    • Import Example : import { RouteWatchReporter } from "ack-angular/RouteWatchReporter"
    • Dependency Install npm install @angular/router --save-dev

The Extended Documentation may help bring further understanding as to what is required and when to import dependencies

Components

Directives and Components making development life more joyful

Common Components

Include one file and access several

import { pipes as ackPipes , components as ackComps } from "ack-angular/declarations";
import { NgModule } from '@angular/core';

@NgModule({
  declarations:[...ackComps, ...ackPipes]
})

Complex Components

Components that have additional dependencies or restrictions

route-reporter

A directive that exposes @angular/router metadata for use in a component template

import { RouterModule } from '@angular/router';
import { RouteWatchReporter } from "ack-angular/RouteWatchReporter"
import { RouteReporter } from "ack-angular/RouteReporter.directive"
import { NgModule } from '@angular/core';

@NgModule({
  imports:[ RouterModule.forRoot() ]
})

Work on This Project

Everything in this topic is run in an command prompt terminal

Clone project source files

git clone -b src https://github.com/AckerApple/ack-angular

Building Example

Install example dependencies

npm run build

Dev Project Watching

npm run watch

Publish Package

Before publishing, update the package version number in:

  • package.json
  • ack-angular/package.json

After running the build command:

  • git push /ack-angular to master branch
  • npm publish ack-angular folder
  • git push /example/www/ to gh-pages branch
  • git push / to src branch

Resources

ack-angular's People

Contributors

ackerapple avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

ack-angular's Issues

Remove ref and refChange from components

Just learned Angular now has a built in way to reference component template classes.

Instead of something like <custom-tag [(ref)]="component"></custom-tag> you can do <custom-tag #component></custom-tag>

ack-modal better close icon control

Sometimes icon shows when no close observer. Meaning, modal does not allow to have a close button, yet one shows.

Also rename (onClose) to (close) ... This is a breaking change

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.