This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { IModel, IAlgoliaModel, Model } from "./model"; | |
| export interface INote extends IModel { | |
| Title: string; | |
| Note: string; | |
| /** | |
| * ID of the user who created the document | |
| */ | |
| Author: string; | |
| Tags?: string[]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <mat-card *ngIf="user | async as User"> | |
| <mat-toolbar color="accent"> | |
| Your Profile | |
| </mat-toolbar> | |
| <div layout="column" layout-align="center center"> | |
| <img | |
| [style.margin-top.px]="'10'" | |
| [style.margin-bottom.px]="'10'" | |
| class="profilePhoto" | |
| src="{{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div *ngIf="user | async as User"> | |
| <button mat-raised-button color="accent" (click)="newNote = true"> | |
| Create Note | |
| </button> | |
| <h2 *ngIf="User.NumNotes === 0">Looks like there are no notes to display</h2> | |
| <h2 *ngIf="User.NumNotes > 0">You have {{ User.NumNotes }} notes</h2> | |
| <app-note *ngIf="newNote" (update)="createNote($event, User.Id)"></app-note> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <mat-card class="md-margin"> | |
| <mat-toolbar [style.background]="'none'" *ngIf="note !== undefined"> | |
| <span flex>{{ note.Title }}</span> | |
| <button mat-icon-button color="warn" (click)="deleteNote()"> | |
| <mat-icon>delete</mat-icon> | |
| </button> | |
| </mat-toolbar> | |
| <div layout="column" *ngIf="noteForm.disabled" class="md-padding"> | |
| <p>{{ note.Note }}</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as functions from 'firebase-functions'; | |
| import * as admin from 'firebase-admin'; | |
| import { INote, IUser } from 'firebasenoteapptypes'; | |
| export const NoteCreated = functions.firestore | |
| .document('Notes/{NoteId}') | |
| .onCreate((snapshot, context) => { | |
| const note = snapshot.data() as INote; | |
| const userRef = admin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="main-container"> | |
| <!-- SIDENAV CONTAINER --> | |
| <mat-sidenav-container class="sidenav-container" *ngIf="user | async as User"> | |
| <!-- SIDENAV --> | |
| <mat-sidenav | |
| #mainSidenav | |
| class="sidenav-shadow" | |
| [opened]="windowWidth > breakWidth" | |
| [mode]="windowWidth >= breakWidth ? 'side' : 'over'" | |
| position="start" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as admin from "firebase-admin"; | |
| import * as functions from "firebase-functions"; | |
| import { IUser } from "firebasenoteapptypes"; | |
| import { checkStorageItemsAndDeleteOldFile } from "../utilities/storage"; | |
| export const UserCreated = functions.firestore | |
| .document("Users/{UserId}") | |
| .onCreate((snapshot, context) => { | |
| const user = snapshot.data() as IUser; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as admin from "firebase-admin"; | |
| export const DeleteStorageBucketItem = function(url: string) { | |
| // We want to make sure we have a proper file path, rather than a URL normalized file path | |
| const filePath = url | |
| .split("/o/")[1] | |
| .split("?")[0] | |
| .replace(/%2F/g, "/"); | |
| // Make sure that we delete the file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Component, OnInit } from '@angular/core'; | |
| import { | |
| FormBuilder, | |
| FormControl, | |
| FormGroup, | |
| Validators | |
| } from '@angular/forms'; | |
| import { IUser } from 'firebasenoteapptypes'; | |
| import { AuthService } from 'src/app/services'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .auth-container { | |
| flex: 1 1 100%; | |
| box-sizing: border-box; | |
| flex-direction: column; | |
| display: flex; | |
| max-width: 50%; | |
| // this will catch tablets | |
| @media only screen and (max-width: 960px) { | |
| flex: 1 1 100%; |