Added uploader

This commit is contained in:
Zakary Timson 2018-08-08 00:14:27 -04:00
parent 6bb392d0b3
commit c4b134bf58
5 changed files with 126 additions and 38 deletions

View File

@ -74,6 +74,7 @@ export class AppStore {
rows.map((row: any) => { rows.map((row: any) => {
let temp = Object.assign({id: row.payload.doc.id, ref: row.payload.doc.ref}, row.payload.doc.data()); 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.image = this.domSanitizer.bypassSecurityTrustUrl(temp.image);
temp.originalDescription = temp.description;
temp.description = this.domSanitizer.bypassSecurityTrustHtml( temp.description = this.domSanitizer.bypassSecurityTrustHtml(
temp.description.replace(/(\r\n|\r|\n)/g, '<br>') temp.description.replace(/(\r\n|\r|\n)/g, '<br>')
); );

View File

@ -2,36 +2,79 @@
<h3 mat-dialog-title> <h3 mat-dialog-title>
<span *ngIf="data.product">Update</span> <span *ngIf="data.product">Update</span>
<span *ngIf="!data.product">Create</span> Product</h3> <span *ngIf="!data.product">Create</span> Product</h3>
<form id="createForm"> <mat-form-field class="w-100">
<mat-form-field class="w-100"> <input matInput placeholder="Name" name="name" [(ngModel)]="name">
<input matInput placeholder="Name" name="name" [(ngModel)]="name"> </mat-form-field>
</mat-form-field> <mat-form-field class="w-100">
<mat-form-field class="w-100"> <mat-select placeholder="Category" name="category" [(value)]="category">
<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-option *ngFor="let c of store.categories | async" [value]="c.name">{{c.name}}</mat-option> </mat-select>
</mat-select> </mat-form-field>
</mat-form-field> <mat-form-field class="w-100">
<mat-form-field class="w-100"> <textarea matInput rows="5" placeholder="Description" name="description" [(ngModel)]="description"></textarea>
<textarea matInput rows="5" placeholder="Description" name="description" [(ngModel)]="description"></textarea> </mat-form-field>
</mat-form-field> <mat-form-field>
<mat-form-field> <span matPrefix>$&nbsp;</span>
<span matPrefix>$&nbsp;</span> <input matInput placeholder="Price" type="number" name="price" [(ngModel)]="price">
<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-hint *ngIf="!price" align="start">0 will display "Contact For Price"</mat-hint> </mat-form-field>
</mat-form-field> <mat-radio-group [(ngModel)]="currency" name="currency">
<mat-radio-group [(ngModel)]="currency" name="currency"> <mat-radio-button value="CAD" class="pl-3">CAD</mat-radio-button>
<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-button value="USD" class="pl-3">USD</mat-radio-button> </mat-radio-group>
</mat-radio-group> <input #fileInput type="file" (change)="imageChanged($event)" hidden>
<input #fileInput type="file" (change)="imageChanged()" hidden> <mat-form-field class="float-right" style="width: 150px">
</form> <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-content>
<mat-dialog-actions> <mat-dialog-actions>
<button mat-raised-button (click)="fileInput.click()"> <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> <mat-icon *ngIf="image">check</mat-icon>
</button> </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">Update</span>
<span *ngIf="!data.product">Create</span> <span *ngIf="!data.product">Create</span>
</button> </button>

View File

@ -1,25 +1,29 @@
import {Component, ViewChild, Inject} from '@angular/core'; import {Component, Inject} from '@angular/core';
import {AngularFirestore} from 'angularfire2/firestore'; import {AngularFirestore} from 'angularfire2/firestore';
import {MAT_DIALOG_DATA, MatDialogRef} from '@angular/material'; import {MAT_DIALOG_DATA, MatDialogRef} from '@angular/material';
import {AppStore} from '../../app.store'; import {AppStore} from '../../app.store';
import {AngularFireStorage} from '../../../../node_modules/angularfire2/storage';
@Component({ @Component({
selector: 'new-item', selector: 'new-item',
templateUrl: 'newProduct.component.html' templateUrl: 'newProduct.component.html'
}) })
export class NewProductComponent { export class NewProductComponent {
@ViewChild('fileInput') fileInput;
category; category;
currency = 'CAD'; currency = 'CAD';
description: string; description: string;
files: {name: string; link: string; type: string}[] = [];
image: string;
linkError = false;
name: string; name: string;
price: number = 0.0; price: number = 0.0;
image: string; weight: number = 0;
uploading = false;
constructor( constructor(
private dialogRef: MatDialogRef<NewProductComponent>, private dialogRef: MatDialogRef<NewProductComponent>,
private db: AngularFirestore, private db: AngularFirestore,
private storage: AngularFireStorage,
@Inject(MAT_DIALOG_DATA) public data, @Inject(MAT_DIALOG_DATA) public data,
public store: AppStore public store: AppStore
) { ) {
@ -28,16 +32,42 @@ export class NewProductComponent {
if (data.product) { if (data.product) {
this.category = data.product.category; this.category = data.product.category;
this.currency = data.product.currency; 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.name = data.product.name;
this.price = data.product.price; 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(); let reader = new FileReader();
reader.addEventListener('load', (event: any) => (this.image = event.target.result)); reader.readAsDataURL(event.target.files[0]);
reader.readAsDataURL(this.fileInput.nativeElement.files[0]); reader.onload = (event: any) => (this.image = event.target.result);
} }
submit() { submit() {
@ -45,8 +75,10 @@ export class NewProductComponent {
category: this.category, category: this.category,
currency: this.currency, currency: this.currency,
description: this.description, description: this.description,
files: this.files,
name: this.name, name: this.name,
price: Number(this.price) price: Number(this.price),
weight: Number(this.weight) || 0
}; };
if (this.image) newProduct['image'] = this.image; if (this.image) newProduct['image'] = this.image;

View File

@ -5,9 +5,11 @@ export interface Product {
category: string; category: string;
currency: 'CAD' | 'USD'; currency: 'CAD' | 'USD';
description: SafeHtml; description: SafeHtml;
files: {link: string; type: string}[];
id: string; id: string;
image: SafeUrl; image: SafeUrl;
name: string; name: string;
price: number; price: number;
ref: DocumentReference; ref: DocumentReference;
weight: number;
} }

View File

@ -81,24 +81,34 @@ mat-form-field#totalCost .mat-form-field-label-wrapper {
min-height: 100%; min-height: 100%;
margin-bottom: -312px; margin-bottom: -312px;
} }
.footer, .push { .footer,
.push {
height: 312px; height: 312px;
} }
footer { footer {
background-color: #3c3c3c; background-color: #3c3c3c;
color: #c7c7c7; color: #c7c7c7;
} }
footer a, footer a:active, footer a:focus { footer a,
footer a:active,
footer a:focus {
color: #808080; color: #808080;
text-decoration: none; text-decoration: none;
} }
footer a:hover { footer a:hover {
color: white; color: white;
} }
footer h1, footer h2, footer h3, footer h4, footer h5 { footer h1,
footer h2,
footer h3,
footer h4,
footer h5 {
color: #507b9c; color: #507b9c;
} }
.footer-sub { .footer-sub {
background-color: #292929; background-color: #292929;
color: #808080; color: #808080;
} }
.mat-form-field-indix {
padding: 0.5em 0 1em 0;
}