{"id":18614977,"url":"https://github.com/andrewjbateman/ionic-angular-photostore","last_synced_at":"2025-06-21T21:37:04.011Z","repository":{"id":38782068,"uuid":"176462098","full_name":"AndrewJBateman/ionic-angular-photostore","owner":"AndrewJBateman","description":":clipboard: App to take, store and display photos using the Angular 8 and Ionic 5 frameworks.","archived":false,"fork":false,"pushed_at":"2023-01-07T03:56:21.000Z","size":2904,"stargazers_count":2,"open_issues_count":30,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-17T01:34:28.657Z","etag":null,"topics":["angular8","cordova-camera","html5","ionic5","repair","scss-styles","sqlite-database"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AndrewJBateman.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-03-19T08:26:41.000Z","updated_at":"2023-02-20T13:57:19.000Z","dependencies_parsed_at":"2022-09-18T03:43:15.787Z","dependency_job_id":null,"html_url":"https://github.com/AndrewJBateman/ionic-angular-photostore","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AndrewJBateman/ionic-angular-photostore","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-photostore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-photostore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-photostore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-photostore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AndrewJBateman","download_url":"https://codeload.github.com/AndrewJBateman/ionic-angular-photostore/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-photostore/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261199750,"owners_count":23123912,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular8","cordova-camera","html5","ionic5","repair","scss-styles","sqlite-database"],"created_at":"2024-11-07T03:27:41.027Z","updated_at":"2025-06-21T21:36:59.000Z","avatar_url":"https://github.com/AndrewJBateman.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# :zap: Ionic Angular Photostore\n\n* App to take, store and display photos using the [Ionic 5 framework](https://ionicframework.com/docs).\n\n## :page_facing_up: Table of contents\n\n* [General info](#general-info)\n* [Screenshots](#screenshots)\n* [Technologies](#technologies)\n* [Setup](#setup)\n* [Features](#features)\n* [Status](#status)\n* [Inspiration](#inspiration)\n* [Contact](#contact)\n\n## :books: General info\n\n## :camera: Screenshots\n\n![Home Page](./img/home-page.png)\n\n## :signal_strength: Technologies\n\n* [Ionic/angular v5](https://www.npmjs.com/package/@ionic/angular)\n* [Ionic v5](https://ionicframework.com/)\n* [Angular v8](https://angular.io/)\n* Ionic DevApp, **this has been retired - replaced by [Capacitor](https://capacitorjs.com/)** to allow app to run on an iOS or Android device.\n* [Cordova-sqlite-storage v3](https://www.npmjs.com/package/cordova-plugin-sqlite), an Ionic Cordova Storage Plugin.\n\n## :floppy_disk: Setup\n\n* To start the server on _localhost://8100_ type: 'ionic serve'\n* The Ionic DevApp was installed on an Android device from the Google Play app store.\n\n## :computer: Code Examples\n\n```typescript\n* takePicture() {\n    const options: CameraOptions = {\n      quality: 100,\n      destinationType: this.camera.DestinationType.DATA_URL,\n      encodingType: this.camera.EncodingType.JPEG,\n      mediaType: this.camera.MediaType.PICTURE\n    };\n\n    this.camera.getPicture(options).then((imageData) =\u003e {\n      // Add new photo to gallery\n      this.photos.unshift({\n        data: 'data:image/jpeg;base64,' + imageData\n      });\n\n      // Save all photos for later viewing\n      this.storage.set('photos', this.photos);\n    }, (err) =\u003e {\n     // Handle error\n     console.log('The is a camera error: ' + err);\n    });\n\n  }\n\n  loadSaved() {\n    this.storage.get('photos').then((photos) =\u003e {\n      this.photos = photos || [];\n    });\n  }\n```\n\n## :cool: Features\n\n* Displays photos taken.\n\n## :clipboard: Status \u0026 To-do list\n\n* Status: compiles but Ionic Web Build fails. Tab 2 has access to a phone camera and it stores \u0026 displays the photos taken. There are still tabs 1 and 3 to develop.\n* To-do: Add a lot more detail/styling to front page.\n\n## :clap: Inspiration\n\n* [ionic Docs](https://ionicframework.com/docs/)\n* ['Your First Ionic App - Framework v4'](https://ionicframework.com/docs/developer-resources/guides/first-app-v4/intro).\n\n## :envelope: Contact\n\n* Repo created by [ABateman](https://www.andrewbateman.org) - feel free to contact me!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewjbateman%2Fionic-angular-photostore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandrewjbateman%2Fionic-angular-photostore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewjbateman%2Fionic-angular-photostore/lists"}