Sean Levy
Member since Feb 12, 2016
- Profile: /members/13053-sean-levy.htm
- URL: http://digitalsignage.com
- Comments: 27
Recent Blog Comments By Sean Levy
-
Using Animation Callbacks When Animation Transitions Are Interrupted In Angular 2.4.4
Posted on Feb 2, 2017 at 6:14 PM
Hi Ben I think you will like this: https://www.youtube.com/watch?v=oV8b-rlyMdI&spfreload=10 Angular 2 Kitchen sink: http://ng2.javascriptninja.io and source@ https://github.com/born2net/Angular-kitchen-sink Regards, Sean... read more »
-
Adding Custom Typings Files (*.d.ts) In An Angular 2 TypeScript Application
Posted on Nov 4, 2016 at 9:24 AM
right on... In an effort to gain deeper knowledge into Angular 2 I wish someone would create an in depth explanation / tutorial on the underlying structure of components, directives and their containers and views. As per the docs: The component's container can contain two kinds of Views. Host View... read more »
-
Adding Custom Typings Files (*.d.ts) In An Angular 2 TypeScript Application
Posted on Oct 28, 2016 at 2:25 PM
You can also bypass all that just import your .d.ts directly. What I do is dump all my TS "shut-ups" into one file called app.d.ts and in my main file App.ts I load it directly via: ///<reference path="../typings/app.d.ts" /> You can see my app.d.ts at: https://github.c... read more »
-
The User Experience (UX) Of Email As An Application Platform Interface
Posted on Oct 7, 2016 at 2:14 PM
Hi Ben, not related to this post. please review my video: https://www.youtube.com/watch?v=bEkPEnudm7s&feature=youtu.be I think you will appreciate it as it gives you the best of all worlds, typed redux store... let me know what you think Angular 2 Kitchen sink: http://ng2.javascriptninja.io... read more »
-
Experimenting With Conditional Enter-Leave Animations In Angular 2 RC 6
Posted on Sep 16, 2016 at 9:10 AM
I see, tx!!!... read more »
-
Experimenting With Conditional Enter-Leave Animations In Angular 2 RC 6
Posted on Sep 13, 2016 at 11:20 PM
That actually would make for a great post, how to make the router simply fade in and fade out outlets as a default behavior...... read more »
-
Possible Bug With Nested Animation Transitions In Angular 2 RC 6
Posted on Sep 11, 2016 at 3:10 PM
I recommend you post this to: https://gitter.im/angular/angular specifically to @alxhub (I posted to him as well, he is one of the ng2 gurus) in any case I am not sure if are familiar with gitter site, but it is THE place to ask Q's on ng2, like this post! Regards... read more »
-
Experimenting With Conditional Enter-Leave Animations In Angular 2 RC 6
Posted on Sep 11, 2016 at 10:21 AM
Great stuff as always... I just changed to the sugar version of *ngFor https://github.com/born2net/ng2Boilerplate/blob/master/src/comps/app2/notes/AnimateCards.ts Angular 2 Kitchen sink: http://ng2.javascriptninja.io and source@ https://github.com/born2net/ng2Boilerplate Regards, Sean... read more »
-
Creating A Custom ErrorHandler In Angular 2 RC 6
Posted on Sep 6, 2016 at 2:54 PM
got it, tx!!!... read more »
-
Creating A Custom ErrorHandler In Angular 2 RC 6
Posted on Sep 6, 2016 at 11:39 AM
understood, ya its kind of black magic (non standard as normally you would extend the class) but hey, it works!!! tx as always... I will also post the Q on ng2 gitter, will see what the experts say... tx!... read more »
-
Creating A Custom ErrorHandler In Angular 2 RC 6
Posted on Sep 6, 2016 at 11:29 AM
great as always... question, I see that LoggingErrorHandler implements ErrorHandler. When a class implements an interface, it promises to provide the behavior published by that interface. And since you are not extending ErrorHandler (just implementing the interface) I am wondering how public han... read more »
-
Practical SVG By Chris Coyier
Posted on Aug 13, 2016 at 4:34 PM
great stuff!!!... read more »
-
Using An Item Template With An HTML Dropdown Menu Component In Angular 2 RC 3
Posted on Jul 15, 2016 at 9:57 AM
got it, tx... read more »
-
Using An Item Template With An HTML Dropdown Menu Component In Angular 2 RC 3
Posted on Jul 15, 2016 at 8:49 AM
Great one Ben. Quick question, where do you use: host: { "[class.is-open]": "isShowingItems" }, as I didnt find that class in the HTML template tx Sean... read more »
-
Providing Custom View Templates For Components In Angular 2 Beta 6
Posted on Jun 21, 2016 at 9:59 AM
@Ben, be great if we can have a new post on the new syntax: <template [ngTemplateOutlet]="templateRef" [ngOutletContext]="{ ... }">... read more »
-
Experimenting With Dynamic Template Rendering In Angular 2 RC 1
Posted on Jun 8, 2016 at 9:39 PM
Great post, tx for sharing....... read more »
-
Thinking About Static vs. Private Methods In TypeScript / Angular 2
Posted on Jun 4, 2016 at 2:03 PM
one small note, static methods historically start with capital letter tx for the post... read more »
-
Better Type Checking With In-Browser TypeScript Transpiling In Angular 2
Posted on May 26, 2016 at 11:35 AM
First GREAT to see you moving to TS, once you do, you will never go back, it's awesome! also, I am wondering what's the advantage of type checking in the browser / runtime? I do all my development in WebStorm and use type checking during dev, but at runtime it all gets stripped out which is fine... ... read more »
-
Constructor vs. Property QueryList Injection In Angular 2 Beta 8
Posted on Mar 6, 2016 at 11:53 AM
Ben, I love u :) but honestly I think TypeScript is the future of the web, and it would be so awesome if all your posts would be in TS. I am not sure if you have done Typed development before, but once you do, you will not believe you ever did it without typing... like having unsafe sex :) Regards... read more »
-
Providing Custom View Templates For Components In Angular 2 Beta 6
Posted on Feb 26, 2016 at 6:26 PM
ya I read his post and it is really nice as it explains the inner working of *ng- and detaching the detection.... but yes I agree for practicality ng-content is the correct approach... Regards, Sean... read more »