Skip to content
Snippets Groups Projects
Commit 11ba2e08 authored by Tormod Nygård's avatar Tormod Nygård
Browse files

Issue: Can upload image URL (#4)

parent a8957330
No related branches found
No related tags found
1 merge request!7Resolve "Frontend: Vise annonser"
...@@ -11,6 +11,9 @@ ...@@ -11,6 +11,9 @@
<option *ngFor="let category of categories" [value]="category.getCategoryId">{{category.getName}}</option> <option *ngFor="let category of categories" [value]="category.getCategoryId">{{category.getName}}</option>
</app-select> </app-select>
<app-text-input [(inputModel)]="imageUrl" label="Bilde URL" (blur)="showImage(imageUrl)"></app-text-input>
<img [src]="displayImageUrl" (error)="showImage('https://i.stack.imgur.com/y9DpT.jpg')">
<p>{{statusMessage}}</p> <p>{{statusMessage}}</p>
<app-button (click)="publishPost()" text="Publiser"></app-button> <app-button (click)="publishPost()" text="Publiser"></app-button>
\ No newline at end of file
...@@ -31,7 +31,6 @@ describe('PostFormComponent', () => { ...@@ -31,7 +31,6 @@ describe('PostFormComponent', () => {
}) })
); );
await TestBed.configureTestingModule({ await TestBed.configureTestingModule({
declarations: [ PostFormComponent ], declarations: [ PostFormComponent ],
imports: [ HttpClientTestingModule, RouterTestingModule, FormsModule, SharedModule ], imports: [ HttpClientTestingModule, RouterTestingModule, FormsModule, SharedModule ],
...@@ -104,4 +103,10 @@ describe('PostFormComponent', () => { ...@@ -104,4 +103,10 @@ describe('PostFormComponent', () => {
expect(mockPostService.addPost).toHaveBeenCalled(); expect(mockPostService.addPost).toHaveBeenCalled();
expect(router.url).toBe('/'); expect(router.url).toBe('/');
}); });
it('should show image', () => {
// Tests that image is updated with new URL
component.showImage("test");
expect(component.displayImageUrl).toBe("test");
});
}); });
...@@ -15,6 +15,8 @@ export class PostFormComponent implements OnInit { ...@@ -15,6 +15,8 @@ export class PostFormComponent implements OnInit {
description: string = ""; description: string = "";
price: number = 0; price: number = 0;
categoryid: number = 0; categoryid: number = 0;
imageUrl: string;
displayImageUrl: string;
statusMessage: string = ""; statusMessage: string = "";
...@@ -70,7 +72,7 @@ export class PostFormComponent implements OnInit { ...@@ -70,7 +72,7 @@ export class PostFormComponent implements OnInit {
description: this.description, description: this.description,
timestamp: new Date(), timestamp: new Date(),
owner: "admin", owner: "admin",
imageUrl: "", imageUrl: this.imageUrl,
price: this.price, price: this.price,
categoryid: this.categoryid categoryid: this.categoryid
}); });
...@@ -85,10 +87,17 @@ export class PostFormComponent implements OnInit { ...@@ -85,10 +87,17 @@ export class PostFormComponent implements OnInit {
} }
} }
/**
* Sets the image source to be the url.
*/
showImage(url) {
this.displayImageUrl = url;
}
/** /**
* Sets a status message. * Sets a status message.
*/ */
setStatusMessage(message: string){ setStatusMessage(message: string) {
this.statusMessage = message; this.statusMessage = message;
} }
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment