Angular 2 Pipe not found

I followed this link to create my own time ago: Angular 2 "time ago" pipes

but when I entered and used it, I saw an error:

Template analysis errors: cannot find 'timeAgo' pipe

Below is my code, please help me solve this problem, thank you very much!

timeAgo.pipe.ts

import { Pipe, ChangeDetectorRef } from '@angular/core';
import { AsyncPipe } from '@angular/common';
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/observable/interval';
import 'rxjs/add/operator/startWith';

@Pipe({
    name: 'timeAgo',
    pure: false
})
export class TimeAgoPipe extends AsyncPipe {
    value: Date;
    timer: Observable<string>;

    constructor(private ref: ChangeDetectorRef){
        super(ref);
    }

    transform(obj: any, args?: any[]): any {
        if(obj instanceof Date) {
            this.value = obj;

            if(!this.timer) {
                this.timer = this.getObservable();
            }
            return this.timer;
        }
        return this.transform(obj, args);

    }

    private getObservable(){
      const INTERVAL = 1000 * 45;

      const ONE_MINUTE = 60;
      const ONE_HOUR = 60 * 60;
      const ONE_DAY = 60 * 60 * 24;
      const ONE_MONTH = 60 * 60 * 24 * 30;
      const ONE_YEAR = 60 * 60 * 24 * 30 * 12;

      return Observable.interval(INTERVAL).startWith(0).map(() => {
        // current time
        let now = Date.now();

        // time since message was sent in seconds
        let delta = (now - this.value.getTime()) / 1000;

        // format string
        if(delta < ONE_MINUTE) {
          return 'just now';        
        }
        if(delta < ONE_HOUR) {
          return Math.floor(delta / ONE_MINUTE) + 'min(s) ago';
        }
        if(delta < ONE_DAY) {
          return Math.floor(delta / ONE_HOUR) + 'hour(s) ago';
        }
        if(delta < ONE_MONTH) {
          return Math.floor(delta / ONE_DAY) + 'day(s) ago';
        }
        if(delta < ONE_YEAR) {
          return Math.floor(delta / ONE_MONTH) + 'month ago';
        }

      });
    }
}

main.ts

import { bootstrap }    from '@angular/platform-browser-dynamic';
import { enableProdMode, provide, PLATFORM_PIPES } from '@angular/core';
bootstrap(AppComponent, [
  APP_ROUTER_PROVIDERS,
  provide(PLATFORM_PIPES, {
    useValue: [TimeAgoPipe],
    multi: true
  })
]);

post.component.html

<ul *ngIf="posts">
  <li *ngFor="let post of posts">
    {{ post.created_at | timeAgo}}     
  </li>
</ul>
+4
source share
3 answers

It seems to be PLATFORM_PIPESdeprecated ( https://github.com/angular/angular/blob/master/CHANGELOG.md ).

, , : https://medium.com/@jecelynyeen/angular2-platform-pipes-globally-available-custom-pipe-will-be-deprecated-soon-c6ad16812c11#.ntmim1t9x

bootstrap(AppComponent, [
  provide(CompilerConfig, {
    useValue: new CompilerConfig({
      platformPipes: [...COMMON_PIPES, TimeAgoPipe],
      platformDirectives: [...COMMON_DIRECTIVES],
      genDebugInfo: true
    })
  }),
]);
+1

, TimeAgoPipe AsyncPipe. - Angular2, Angular 2.2.x @Component, @Pipe @Directive .

, . Angular2 : https://github.com/angular/angular/issues/7968

TimeAgoPipe, Angular 2.2, gist.

+1

Although I added MomentModule as a global import, I put

import { MomentModule } from 'angular2-moment';

and put me MomentModule this way

...
imports: [
    ...,
    MomentModule,
    ...,
]

under the corresponding * .module.ts, in your case it will be post.component.module.ts

as indicated in the link below

fooobar.com/questions/1649738 / ...

0
source

Source: https://habr.com/ru/post/1649736/


All Articles