Added uploader
This commit is contained in:
parent
6bb392d0b3
commit
c4b134bf58
@ -74,6 +74,7 @@ export class AppStore {
|
||||
rows.map((row: any) => {
|
||||
let temp = Object.assign({id: row.payload.doc.id, ref: row.payload.doc.ref}, row.payload.doc.data());
|
||||
temp.image = this.domSanitizer.bypassSecurityTrustUrl(temp.image);
|
||||
temp.originalDescription = temp.description;
|
||||
temp.description = this.domSanitizer.bypassSecurityTrustHtml(
|
||||
temp.description.replace(/(\r\n|\r|\n)/g, '<br>')
|
||||
);
|
||||
|
@ -2,36 +2,79 @@
|
||||
<h3 mat-dialog-title>
|
||||
<span *ngIf="data.product">Update</span>
|
||||
<span *ngIf="!data.product">Create</span> Product</h3>
|
||||
<form id="createForm">
|
||||
<mat-form-field class="w-100">
|
||||
<input matInput placeholder="Name" name="name" [(ngModel)]="name">
|
||||
</mat-form-field>
|
||||
<mat-form-field class="w-100">
|
||||
<mat-select placeholder="Category" name="category" [(value)]="category">
|
||||
<mat-option *ngFor="let c of store.categories | async" [value]="c.name">{{c.name}}</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
<mat-form-field class="w-100">
|
||||
<textarea matInput rows="5" placeholder="Description" name="description" [(ngModel)]="description"></textarea>
|
||||
</mat-form-field>
|
||||
<mat-form-field>
|
||||
<span matPrefix>$ </span>
|
||||
<input matInput placeholder="Price" type="number" name="price" [(ngModel)]="price">
|
||||
<mat-hint *ngIf="!price" align="start">0 will display "Contact For Price"</mat-hint>
|
||||
</mat-form-field>
|
||||
<mat-radio-group [(ngModel)]="currency" name="currency">
|
||||
<mat-radio-button value="CAD" class="pl-3">CAD</mat-radio-button>
|
||||
<mat-radio-button value="USD" class="pl-3">USD</mat-radio-button>
|
||||
</mat-radio-group>
|
||||
<input #fileInput type="file" (change)="imageChanged()" hidden>
|
||||
</form>
|
||||
<mat-form-field class="w-100">
|
||||
<input matInput placeholder="Name" name="name" [(ngModel)]="name">
|
||||
</mat-form-field>
|
||||
<mat-form-field class="w-100">
|
||||
<mat-select placeholder="Category" name="category" [(value)]="category">
|
||||
<mat-option *ngFor="let c of store.categories | async" [value]="c.name">{{c.name}}</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
<mat-form-field class="w-100">
|
||||
<textarea matInput rows="5" placeholder="Description" name="description" [(ngModel)]="description"></textarea>
|
||||
</mat-form-field>
|
||||
<mat-form-field>
|
||||
<span matPrefix>$ </span>
|
||||
<input matInput placeholder="Price" type="number" name="price" [(ngModel)]="price">
|
||||
<mat-hint *ngIf="!price" align="start">0 will display "Contact For Price"</mat-hint>
|
||||
</mat-form-field>
|
||||
<mat-radio-group [(ngModel)]="currency" name="currency">
|
||||
<mat-radio-button value="CAD" class="pl-3">CAD</mat-radio-button>
|
||||
<mat-radio-button value="USD" class="pl-3">USD</mat-radio-button>
|
||||
</mat-radio-group>
|
||||
<input #fileInput type="file" (change)="imageChanged($event)" hidden>
|
||||
<mat-form-field class="float-right" style="width: 150px">
|
||||
<input matInput type="number" placeholder="Weight For Shipping" [(ngModel)]="weight">
|
||||
<span matSuffix>lb</span>
|
||||
</mat-form-field>
|
||||
<div class="mt-3 p-3 border rounded border-muted">
|
||||
<h5 mat-subheader class="pl-0">Uploads</h5>
|
||||
<mat-progress-bar *ngIf="uploading" mode="indeterminate"></mat-progress-bar>
|
||||
<input #uploadInput type="file" (change)="addFile($event)" hidden>
|
||||
<div>
|
||||
<button mat-stroked-button color="accent" (click)="uploadInput.click()">Upload</button>
|
||||
<span class="mx-3 text-muted">OR</span>
|
||||
<mat-form-field color="accent" appearance="outline">
|
||||
<mat-label>Link</mat-label>
|
||||
<input matInput #linkInput>
|
||||
<button mat-mini-fab matSuffix (click)="addLink(linkInput.value) ? linkInput.value = '' : null">
|
||||
<mat-icon matSuffix>add</mat-icon>
|
||||
</button>
|
||||
<mat-hint *ngIf="linkError">Is this a valid URL?</mat-hint>
|
||||
</mat-form-field>
|
||||
</div>
|
||||
<mat-divider *ngIf="files?.length"></mat-divider>
|
||||
<mat-list>
|
||||
<mat-list-item *ngFor="let f of files; let i = index">
|
||||
<mat-icon *ngIf="f.type == 'preview'" mat-list-icon>image</mat-icon>
|
||||
<mat-icon *ngIf="f.type == 'link'" mat-list-icon>link</mat-icon>
|
||||
<mat-icon *ngIf="f.type == 'other'" mat-list-icon>insert_drive_file</mat-icon>
|
||||
<h4 mat-line>{{f.name}}</h4>
|
||||
<p *ngIf="f.type == 'link'" mat-line>
|
||||
<strong>Link:</strong> {{f.link}}
|
||||
</p>
|
||||
<div mat-line class="pt-2">
|
||||
<strong>Type:</strong>
|
||||
<mat-radio-group [(ngModel)]="f.type">
|
||||
<mat-radio-button class="ml-2" value="preview">Preview</mat-radio-button>
|
||||
<mat-radio-button class="ml-2" value="link">Link</mat-radio-button>
|
||||
<mat-radio-button class="ml-2" value="other">Attachment</mat-radio-button>
|
||||
</mat-radio-group>
|
||||
</div>
|
||||
<button mat-mini-fab color="default" (click)="files.splice(i, 1)">
|
||||
<mat-icon>delete</mat-icon>
|
||||
</button>
|
||||
</mat-list-item>
|
||||
</mat-list>
|
||||
</div>
|
||||
</mat-dialog-content>
|
||||
<mat-dialog-actions>
|
||||
<button mat-raised-button (click)="fileInput.click()">
|
||||
<span *ngIf="!image">Add Image</span>
|
||||
<span *ngIf="!image && data.product">Change Display Image</span>
|
||||
<span *ngIf="!image && !data.product">Add Display Image</span>
|
||||
<mat-icon *ngIf="image">check</mat-icon>
|
||||
</button>
|
||||
<button mat-raised-button type="submit" form="createForm" color="primary" (click)="submit()">
|
||||
<button mat-raised-button type="submit" color="primary" (click)="submit()">
|
||||
<span *ngIf="data.product">Update</span>
|
||||
<span *ngIf="!data.product">Create</span>
|
||||
</button>
|
||||
|
@ -1,25 +1,29 @@
|
||||
import {Component, ViewChild, Inject} from '@angular/core';
|
||||
import {Component, Inject} from '@angular/core';
|
||||
import {AngularFirestore} from 'angularfire2/firestore';
|
||||
import {MAT_DIALOG_DATA, MatDialogRef} from '@angular/material';
|
||||
import {AppStore} from '../../app.store';
|
||||
import {AngularFireStorage} from '../../../../node_modules/angularfire2/storage';
|
||||
|
||||
@Component({
|
||||
selector: 'new-item',
|
||||
templateUrl: 'newProduct.component.html'
|
||||
})
|
||||
export class NewProductComponent {
|
||||
@ViewChild('fileInput') fileInput;
|
||||
|
||||
category;
|
||||
currency = 'CAD';
|
||||
description: string;
|
||||
files: {name: string; link: string; type: string}[] = [];
|
||||
image: string;
|
||||
linkError = false;
|
||||
name: string;
|
||||
price: number = 0.0;
|
||||
image: string;
|
||||
weight: number = 0;
|
||||
uploading = false;
|
||||
|
||||
constructor(
|
||||
private dialogRef: MatDialogRef<NewProductComponent>,
|
||||
private db: AngularFirestore,
|
||||
private storage: AngularFireStorage,
|
||||
@Inject(MAT_DIALOG_DATA) public data,
|
||||
public store: AppStore
|
||||
) {
|
||||
@ -28,16 +32,42 @@ export class NewProductComponent {
|
||||
if (data.product) {
|
||||
this.category = data.product.category;
|
||||
this.currency = data.product.currency;
|
||||
this.description = data.product.description;
|
||||
this.description = data.product.originalDescription;
|
||||
this.files = data.product.files;
|
||||
this.name = data.product.name;
|
||||
this.price = data.product.price;
|
||||
this.weight = data.product.weight;
|
||||
}
|
||||
}
|
||||
|
||||
imageChanged() {
|
||||
async addFile(event) {
|
||||
this.uploading = true;
|
||||
let file = event.target.files[0];
|
||||
let type = 'other';
|
||||
if (file.type.indexOf('image') != -1) type = 'preview';
|
||||
let upload = await this.storage.ref(`${Math.round(Math.random() * 1000000)}/${file.name}`).put(file);
|
||||
this.uploading = false;
|
||||
if (upload.state == 'success')
|
||||
this.files.push({name: file.name, type: type, link: await upload.ref.getDownloadURL()});
|
||||
}
|
||||
|
||||
addLink(link: string) {
|
||||
let valid: any = new RegExp(
|
||||
'^(?:(?<protocol>https?):\\/\\/)?(?<name>(?:(?<subdomain>[\\d|\\w]+).)?(?:[\\d|\\w]+\\.[\\d|\\w]+))(?:\\:(?<port>\\d+))?.*'
|
||||
).exec(link);
|
||||
if (!!valid) {
|
||||
if (!valid.groups['protocol']) link = `http://${link}`;
|
||||
this.files.push({name: valid.groups['name'], link: link, type: 'link'});
|
||||
this.linkError = !valid;
|
||||
}
|
||||
|
||||
return !!valid;
|
||||
}
|
||||
|
||||
imageChanged(event) {
|
||||
let reader = new FileReader();
|
||||
reader.addEventListener('load', (event: any) => (this.image = event.target.result));
|
||||
reader.readAsDataURL(this.fileInput.nativeElement.files[0]);
|
||||
reader.readAsDataURL(event.target.files[0]);
|
||||
reader.onload = (event: any) => (this.image = event.target.result);
|
||||
}
|
||||
|
||||
submit() {
|
||||
@ -45,8 +75,10 @@ export class NewProductComponent {
|
||||
category: this.category,
|
||||
currency: this.currency,
|
||||
description: this.description,
|
||||
files: this.files,
|
||||
name: this.name,
|
||||
price: Number(this.price)
|
||||
price: Number(this.price),
|
||||
weight: Number(this.weight) || 0
|
||||
};
|
||||
if (this.image) newProduct['image'] = this.image;
|
||||
|
||||
|
@ -5,9 +5,11 @@ export interface Product {
|
||||
category: string;
|
||||
currency: 'CAD' | 'USD';
|
||||
description: SafeHtml;
|
||||
files: {link: string; type: string}[];
|
||||
id: string;
|
||||
image: SafeUrl;
|
||||
name: string;
|
||||
price: number;
|
||||
ref: DocumentReference;
|
||||
weight: number;
|
||||
}
|
||||
|
@ -81,24 +81,34 @@ mat-form-field#totalCost .mat-form-field-label-wrapper {
|
||||
min-height: 100%;
|
||||
margin-bottom: -312px;
|
||||
}
|
||||
.footer, .push {
|
||||
.footer,
|
||||
.push {
|
||||
height: 312px;
|
||||
}
|
||||
footer {
|
||||
background-color: #3c3c3c;
|
||||
color: #c7c7c7;
|
||||
}
|
||||
footer a, footer a:active, footer a:focus {
|
||||
footer a,
|
||||
footer a:active,
|
||||
footer a:focus {
|
||||
color: #808080;
|
||||
text-decoration: none;
|
||||
}
|
||||
footer a:hover {
|
||||
color: white;
|
||||
}
|
||||
footer h1, footer h2, footer h3, footer h4, footer h5 {
|
||||
footer h1,
|
||||
footer h2,
|
||||
footer h3,
|
||||
footer h4,
|
||||
footer h5 {
|
||||
color: #507b9c;
|
||||
}
|
||||
.footer-sub {
|
||||
background-color: #292929;
|
||||
color: #808080;
|
||||
}
|
||||
}
|
||||
.mat-form-field-indix {
|
||||
padding: 0.5em 0 1em 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user