├── src
├── assets
│ ├── .gitkeep
│ └── img
│ │ └── no-image.png
├── app
│ ├── app.component.scss
│ ├── components
│ │ ├── file-form
│ │ │ ├── file-form.component.scss
│ │ │ ├── file-form.component.spec.ts
│ │ │ ├── file-form.component.ts
│ │ │ └── file-form.component.html
│ │ ├── navigation
│ │ │ ├── navigation.component.scss
│ │ │ ├── navigation.component.ts
│ │ │ ├── navigation.component.spec.ts
│ │ │ └── navigation.component.html
│ │ ├── file-preview
│ │ │ ├── file-preview.component.scss
│ │ │ ├── file-preview.component.spec.ts
│ │ │ ├── file-preview.component.ts
│ │ │ └── file-preview.component.html
│ │ └── file-list
│ │ │ ├── file-list.component.scss
│ │ │ ├── file-list.component.html
│ │ │ ├── file-list.component.spec.ts
│ │ │ └── file-list.component.ts
│ ├── app.component.html
│ ├── models
│ │ └── IFile.ts
│ ├── app.component.ts
│ ├── services
│ │ ├── file.service.spec.ts
│ │ └── file.service.ts
│ ├── app-routing.module.ts
│ ├── app.component.spec.ts
│ └── app.module.ts
├── environments
│ ├── environment.prod.ts
│ └── environment.ts
├── styles.scss
├── favicon.ico
├── index.html
├── main.ts
├── test.ts
└── polyfills.ts
├── e2e
├── tsconfig.json
├── src
│ ├── app.po.ts
│ └── app.e2e-spec.ts
└── protractor.conf.js
├── .editorconfig
├── tsconfig.app.json
├── tsconfig.spec.json
├── browserslist
├── tsconfig.json
├── .gitignore
├── README.md
├── karma.conf.js
├── package.json
├── tslint.json
└── angular.json
/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/components/file-form/file-form.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/components/navigation/navigation.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/components/file-preview/file-preview.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/src/styles.scss:
--------------------------------------------------------------------------------
1 | /* You can add global styles to this file, and also import other style files */
2 |
--------------------------------------------------------------------------------
/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DanielArturoAlejoAlvarez/angular-image-uploads/HEAD/src/favicon.ico
--------------------------------------------------------------------------------
/src/assets/img/no-image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DanielArturoAlejoAlvarez/angular-image-uploads/HEAD/src/assets/img/no-image.png
--------------------------------------------------------------------------------
/src/app/app.component.html:
--------------------------------------------------------------------------------
1 |