nativescript-ng2-cli-magic
v1.0.0
Published
Magically integrate in Angular2 web app with NativeScript.
Downloads
10
Readme
Magically drop a NativeScript app into your existing Angular2 web application and reuse all your code.*
You will be adding NativeScript views, but you already knew that.
- Only works for projects generated by angular-cli
- Largely inspired by the original module nativescript-ng2-magic created by Nathan Walker
Install
npm i nativescript-ng2-cli-magic --save
Usage
- Use
Component
fromnativescript-ng2-cli-magic
instead of@angular/core
. Why? - Create NativeScript views ending with
.tns.html
(and/or styles ending with.tns.css
) for each of your component's. How? - Run your truly native mobile app with NativeScript!
Example
A sample root component, app.component.ts:
import {Component} from 'nativescript-ng2-cli-magic';
@Component({
selector: 'app',
templateUrl: './app.component.html'
})
export class AppComponent {}
Run for first time!
You will need to have fully completed steps 1 and 2 above.
Run your app in the iOS Simulator with:
npm run start.ios
Run your app in an Android emulator with:
npm run start.android
Welcome to the wonderfully magical world of NativeScript!
How to create NativeScript views
Based on our example above, assume app.component.html
looks like this:
<main>
<div>This is my root component</div>
</main>
You would then create a new file in app.component.tns.html
like this:
<StackLayout>
<Label text="This is my root component"></Label>
</StackLayout>
You can also use platform specific views if desired with the platformSpecific
Component metadata:
import {Component} from 'nativescript-ng2-cli-magic';
@Component({
selector: 'app',
templateUrl: './app.component.html',
platformSpecific: true
})
export class AppComponent {}
Then you could create separate views for iOS and Android:
app.component.ios.html
app.component.android.html
You can learn more about NativeScript view options here.
You can also install helpful view snippets for VS Code here or Atom Editor here.
You can learn more here about how this setup works and why.
Why different Component?
Component
from nativescript-ng2-cli-magic
is identical to Component
from @angular/core
, except it automatically uses NativeScript views when your app runs in a NativeScript mobile app.
The library provides a custom Decorator
under the hood.
Feel free to check it out here and it uses a utility here.
You can see more elaborate use cases of this magic with angular2-seed-advanced.
Special Note About AoT
Currently you cannot use custom component decorators with AoT compilation. This may change in the future but for now you can use this pattern for when you need to create AoT builds for the web:
import { Component } from '@angular/core';
// just comment this out and use Component from 'angular/core'
// import { Component } from 'nativescript-ng2-cli-magic';
@Component({
// etc.
After doing the above, running AoT build will succeed. :)
The Component from nativescript-ng2-cli-magic
does the auto templateUrl
switching to use {N} views when running in the {N} app therefore you don't need it when creating AoT builds for the web. However just note that when going back to run your {N} app, you should comment back in the Component
from nativescript-ng2-cli-magic
. Again this temporary inconvenience may be unnecessary in the future.