Skip to content

Commit 8026020

Browse files
committedAug 5, 2022
toaster added
1 parent e3dcfcc commit 8026020

9 files changed

+139
-27
lines changed
 

‎angular.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
"src/assets"
2424
],
2525
"styles": [
26-
"src/styles.css"
26+
"src/styles.css",
27+
"node_modules/ngx-toastr/toastr.css"
2728
],
2829
"scripts": []
2930
},

‎package-lock.json

+64-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"private": true,
1212
"dependencies": {
13-
"@angular/animations": "^14.1.0",
13+
"@angular/animations": "^14.1.1",
1414
"@angular/common": "^14.1.0",
1515
"@angular/compiler": "^14.1.0",
1616
"@angular/core": "^14.1.0",
@@ -19,6 +19,8 @@
1919
"@angular/platform-browser-dynamic": "^14.1.0",
2020
"@angular/router": "^14.1.0",
2121
"bootstrap": "^5.2.0",
22+
"ckeditor4-angular": "^3.1.1",
23+
"ngx-toastr": "^15.0.0",
2224
"rxjs": "~7.5.0",
2325
"tslib": "^2.3.0",
2426
"zone.js": "~0.11.4"

‎src/app/app.module.ts

+11-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ import { DiaryComponent } from './diary/diary.component';
1111
import { IdeaComponent } from './idea/idea.component';
1212
import { ReactiveFormsModule } from '@angular/forms';
1313
import { HttpClientModule } from '@angular/common/http';
14+
import { CKEditorModule } from 'ckeditor4-angular';
15+
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
16+
import { SafeHtmlPipe } from './safe-html.pipe';
17+
import { ToastrModule } from 'ngx-toastr';
1418

1519

1620
@NgModule({
@@ -21,13 +25,18 @@ import { HttpClientModule } from '@angular/common/http';
2125
HomeComponent,
2226
StoryComponent,
2327
DiaryComponent,
24-
IdeaComponent
28+
IdeaComponent,
29+
SafeHtmlPipe,
30+
2531
],
2632
imports: [
2733
BrowserModule,
2834
AppRoutingModule,
2935
ReactiveFormsModule,
30-
HttpClientModule
36+
HttpClientModule,
37+
CKEditorModule,
38+
ToastrModule.forRoot(),
39+
BrowserAnimationsModule
3140
],
3241
providers: [],
3342
bootstrap: [AppComponent]

‎src/app/safe-html.pipe.spec.ts

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { SafeHtmlPipe } from './safe-html.pipe';
2+
3+
describe('SafeHtmlPipe', () => {
4+
it('create an instance', () => {
5+
const pipe = new SafeHtmlPipe();
6+
expect(pipe).toBeTruthy();
7+
});
8+
});

‎src/app/safe-html.pipe.ts

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { Pipe, PipeTransform } from '@angular/core';
2+
import { DomSanitizer } from '@angular/platform-browser';
3+
4+
@Pipe({
5+
name: 'safeHtml'
6+
})
7+
export class SafeHtmlPipe implements PipeTransform {
8+
9+
constructor(private sanitizer: DomSanitizer) { }
10+
11+
transform(value) {
12+
return this.sanitizer.bypassSecurityTrustHtml(value);
13+
}
14+
15+
}

‎src/app/story/story.component.html

+15-9
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,27 @@
11
<div style="min-height:82vh;">
22
<div class="container">
3-
<div *ngIf="listing">
3+
4+
5+
<div *ngIf="listing" class="my-5">
6+
7+
8+
<div class="row">
9+
<span class="fs-3 ">Your Stories
10+
<button class="btn btn-secondary float-end" (click)="listing=false;createStory=true;">Add
11+
New</button></span>
12+
</div>
413
<div class="mx-5 py-3" *ngFor="let story of stories">
514

615
<div class="row pb-2">
716
<div>
817
<span class="float-start fs-3"> {{story.title}}</span>
9-
<span class="float-end text-primary"> Date :- {{story.com}}</span>
18+
<span class="float-end text-primary"> Date :- {{story.created_at}}</span>
1019

1120
</div>
1221
</div>
1322

1423

15-
<p>Lorem ipsum dolor sit amet, officia excepteur ex fugiat reprehenderit enim
16-
labore culpa sint ad nisi Lorem pariatur mollit ex esse exercitation amet. Nisi
17-
animcupidatat excepteur officia. Reprehenderit nostrud nostrud ipsum Lorem est
18-
aliquip amet voluptate voluptate dolor minim nulla est proident. Nostrud officia
19-
pariatur ut officia...</p>
24+
<div [innerHTML]="story.content | safeHtml" class="p-2"></div>
2025

2126
<button class="btn btn-outline-secondary me-2" (click)="listing=!listing">Edit</button>
2227
<button class="btn btn-outline-danger">Delete</button>
@@ -30,9 +35,10 @@
3035
<input type="text" class="form-control" id="floatingInputValue" formControlName="title">
3136
<label for="floatingInputValue">Title</label>
3237
</div>
33-
38+
<ckeditor #editor formControlName="content">
39+
</ckeditor>
3440
<div class="form-floating my-3">
35-
<input type="date" class="form-control" id="floatingInputValue" formControlName="date">
41+
<input type="date" class="form-control" id="floatingInputValue" formControlName="created_at">
3642
<label for="floatingInputValue">Completion Date</label>
3743
</div>
3844

‎src/app/story/story.component.ts

+20-5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { Component, OnInit } from '@angular/core';
22
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
33
import { Story } from './story';
44
import { StoryService } from './story.service';
5+
import { ToastrService } from 'ngx-toastr';
56

67

78
@Component({
@@ -11,30 +12,44 @@ import { StoryService } from './story.service';
1112
})
1213
export class StoryComponent implements OnInit {
1314

14-
listing: boolean = false;
15-
createStory: boolean = true;
15+
16+
listing: boolean = true;
17+
createStory: boolean = false;
1618
storyForm!: FormGroup;
1719
stories!: Story[];
20+
successMessage: String = "ss";
21+
errorMessage!: String;
1822

19-
constructor(private formbuilder: FormBuilder, private storyService: StoryService) { }
23+
constructor(private formbuilder: FormBuilder, private storyService: StoryService, private toastr: ToastrService) { }
2024

2125
ngOnInit(): void {
26+
2227
this.getStories();
2328
this.storyForm = this.formbuilder.group({
2429
title: ['', [Validators.required, Validators.minLength(255)]],
2530
content: ['', Validators.required],
26-
date: ['', [Validators.required]],
31+
created_at: ['', [Validators.required]],
2732
});
2833

2934
}
3035
addStory() {
36+
var story = this.storyForm.getRawValue();
37+
this.storyService.addStories(story).subscribe({
38+
next: (stories) => {
3139

40+
this.toastr.success("Data inserted successfully !!")
41+
this.stories.push(story);
42+
},
43+
error: errror => console.log(errror),
44+
});
3245

3346
}
47+
3448
getStories() {
49+
3550
this.storyService.getStories().subscribe({
3651
next: (stories) => {
37-
console.log(stories);
52+
3853
this.stories = stories;
3954
},
4055
error: errror => console.log(errror),

‎src/app/story/story.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export class Story {
22
title!: String;
33
content!: String;
4-
com!: Date;
4+
created_at!: Date;
55
}

0 commit comments

Comments
 (0)
Please sign in to comment.