https://github.com/unicodeveloper/angular-2-cloudinary
An implementation of Uploads & Transformations in Angular 2 With Cloudinary
https://github.com/unicodeveloper/angular-2-cloudinary
Last synced: 9 months ago
JSON representation
An implementation of Uploads & Transformations in Angular 2 With Cloudinary
- Host: GitHub
- URL: https://github.com/unicodeveloper/angular-2-cloudinary
- Owner: unicodeveloper
- Created: 2017-01-23T18:29:45.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-25T05:59:43.000Z (almost 9 years ago)
- Last Synced: 2025-03-30T06:14:36.391Z (10 months ago)
- Language: HTML
- Homepage:
- Size: 16.6 KB
- Stars: 13
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Cloudinary Angular 2 Photo Album Project
=======================================
> Learn how to upload images in an Angular 2 app to Cloudinary and perform all sorts of transformation.
This sample project shows:
1. How to use the Cloudinary Angular directives.
2. How to upload files to Cloudinary in an unsigned manner, using an upload preset. The upload control is based on the open source file uploader [ng2-file-upload](https://github.com/valor-software/ng2-file-upload)
3. How to use the dynamic list resource in order to maintain a short list of resources aggregated by tags.
## Configuration ##
There are 2 settings you need to change for this demo to work. Open up `app/config.ts` and edit the following:
1. **cloud_name** - Should be change to the cloud name you received when you registered for a Cloudinary account.
2. **upload_preset** - You should first "Enable unsigned uploads" in the ["Upload Settings"](https://cloudinary.com/console/settings/upload) of your Cloudinary console and assign the resulting preset name to that field. Note, you may want to tweak and modify the upload preset's parameters.
3. Additionally, in your Cloudinary console in the ["Security Settings"](https://cloudinary.com/console/settings/security) section you should uncheck the "list" item.
## Setup ##
Run `npm install` to install the required dependencies for this module.
## Running ##
Run `npm start` to start the server and automatically open a browser and navigate to the application's url.
The application is deplyoed at http://localhost:3000/
## Internals ##
This project is using [SystemJS](https://github.com/systemjs/systemjs) for bundling and serving the application.
The project creates a new NgModule, and depends on CloudinaryModule which is imported from the SDK module.
### Sample main components ###
#### Routing ####
The application routes are defined in [app/app.routing.ts](app/js/app.routing.ts)
The application has 2 routes:
* **/photos** - Presents a list of images tagged by `myphotoalbum`
* **/photos/new** - Presents an upload control that allows uploading multiple files by a file input or drag-and-grop.
Uploads have a dynamic progress bar. In addition it displays the details of successful uploads.
The default route is set to `/photos`.
#### Services ####
[photo-album.service.ts](app/js/model/photo-album.service.ts) retrieves the list of images from Cloudinary based on the `myphotoalbum` tag name.
#### Components ####
> Photo list
* [photo-list.component.ts](app/js/photo-list/photo-list.component.ts) sets up the list of images displayed via one-way binding by [photo-list.component.html](app/js/photo-list/photo-list.component.html)
* [photo-list.component.html](app/js/photo-list/photo-list.component.html) displays the bound images and displays basic transformations for each image
> Photo Upload
* [photo-upload.component.ts](app/photo-upload/photo-upload.component.ts) initializes the upload widget and sets up listeners on the progress events.
* [photo-upload.component.html](app/photo-upload/photo-upload.component.html) displays the upload control and lists the properties of the uploaded images once upload completes successfully.
**Important observations**:
* This implementation is based on an Angular file uploader.
* Changes to the title field are propagated to the `formData` being sent in the upload request. This is meant to illustrate the possibility of attaching extra meta-data to each upload image.
* The upload control uses the `upload_preset` we configured in Configuration step. This uses the settings defined on Cloudinary side to process the uploaded file.
### Unsigned Upload ###
In order to add images to our photo album that would later be retrievable from the Cloudinary service we must select a tag which will serve as our source for the list. In this case `myphotoalbum`.
While this tag can be set in the upload preset and remain hidden from the client side, in this sample we included it in the request itself to make this sample work without further configuration steps.
### List Resource ###
Cloudinary supports a JSON list resource.
This list represents all resources marked with a specific tag during upload (or later through other APIs).
Whenever a new resource is uploaded with a tag, or an existing resource already tagged is deleted then the list is recalculated.
This enables you to group a list of resources which can be retrieved by a single query. The size of the list is currently limited to 100 entires.
[Learn more](http://cloudinary.com/documentation/image_transformations#client_side_resource_lists)