{"id":18614979,"url":"https://github.com/andrewjbateman/ionic-angular-notes","last_synced_at":"2025-04-11T00:31:01.892Z","repository":{"id":39554353,"uuid":"177185631","full_name":"AndrewJBateman/ionic-angular-notes","owner":"AndrewJBateman","description":":clipboard: App to show a list of items, each with a clickable link to a detailed page. To be developed into an Android app. ","archived":false,"fork":false,"pushed_at":"2023-03-04T03:26:53.000Z","size":7029,"stargazers_count":4,"open_issues_count":16,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-25T06:51:13.046Z","etag":null,"topics":["android","android-app","android-studio","angular13","html5","ionic","ionic-angular-notes","ionic6","recipe","recipe-page","rxjs","rxjs7","scss-styles"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","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":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-03-22T17:48:10.000Z","updated_at":"2023-10-06T07:41:04.000Z","dependencies_parsed_at":"2023-02-05T02:01:15.418Z","dependency_job_id":null,"html_url":"https://github.com/AndrewJBateman/ionic-angular-notes","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-notes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-notes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-notes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-notes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AndrewJBateman","download_url":"https://codeload.github.com/AndrewJBateman/ionic-angular-notes/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248322236,"owners_count":21084333,"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":["android","android-app","android-studio","angular13","html5","ionic","ionic-angular-notes","ionic6","recipe","recipe-page","rxjs","rxjs7","scss-styles"],"created_at":"2024-11-07T03:27:42.718Z","updated_at":"2025-04-11T00:30:58.656Z","avatar_url":"https://github.com/AndrewJBateman.png","language":"TypeScript","readme":"# :zap: Ionic Angular Notes\n\n* App to show recipes as a list and in a detailed view, using the [Ionic framework](https://ionicframework.com/docs).\n* **Note:** to open web links in a new window use: _ctrl+click on link_\n\n![GitHub repo size](https://img.shields.io/github/repo-size/AndrewJBateman/ionic-angular-notes?style=plastic)\n![GitHub pull requests](https://img.shields.io/github/issues-pr/AndrewJBateman/ionic-angular-notes?style=plastic)\n![GitHub Repo stars](https://img.shields.io/github/stars/AndrewJBateman/ionic-angular-notes?style=plastic)\n![GitHub last commit](https://img.shields.io/github/last-commit/AndrewJBateman/ionic-angular-notes?style=plastic)\n\n## :page_facing_up: Table of contents\n\n* [:zap: Ionic Angular Notes](#zap-ionic-angular-notes)\n  * [:page_facing_up: Table of contents](#page_facing_up-table-of-contents)\n  * [:books: General info](#books-general-info)\n  * [:camera: Screenshots](#camera-screenshots)\n  * [:signal_strength: Technologies](#signal_strength-technologies)\n  * [:floppy_disk: Setup](#floppy_disk-setup)\n  * [:computer: Code Examples](#computer-code-examples)\n  * [:cool: Features](#cool-features)\n  * [:clipboard: Status \u0026 To-do list](#clipboard-status--to-do-list)\n  * [:clap: Inspiration](#clap-inspiration)\n  * [:file_folder: License](#file_folder-license)\n  * [:envelope: Contact](#envelope-contact)\n\n## :books: General info\n\n* The Home page is a list of recipes. Click on one and it shows the detailed recipe page using the recipe id.\n* The back button routes the user back to the home screen.\n* The delete button deletes the recipe with an alert appearing\n* Capacitor installed so app can be run on android.\n\n## :camera: Screenshots\n\n![Recipe List](./img/recipe-list.png)\n![Recipe Detail Page](./img/recipe-detail.png)\n\n## :signal_strength: Technologies\n\n* [Ionic v6](https://ionicframework.com/)\n* [Ionic/angular v6](https://ionicframework.com/)\n* [Angular framework v13](https://angular.io/)\n* [Capacitor framework v3](https://capacitor.ionicframework.com/)\n* Ionic DevApp, to allow app to run on an iOS or Android device.\n\n## :floppy_disk: Setup\n\n* Run `npm i` to install dependencies\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* functions to search for info and retrieve more detailed info.\n\n```typescript\ngetAllRecipes() {\n  return [...this.recipes];\n}\n// return a single recipe for an id\ngetRecipe(recipeId: string) {\n  return {\n    ...this.recipes.find(recipe =\u003e {\n      return recipe.id === recipeId;\n    })\n  };\n}\n\n// delete a recipe using the filter function and recipe id\n  deleteRecipe(recipeId: string) {\n    this.recipes = this.recipes.filter(recipe =\u003e {\n      return recipe.id !== recipeId;\n    });\n}\n```\n\n## :cool: Features\n\n* [Ionic Capacitor](https://capacitor.ionicframework.com/) used to build the web app for Android.\n\n## :clipboard: Status \u0026 To-do list\n\n* Status: Working.\n* To-do: change data in `recipes.services.ts`. Add functionality. run in Android simulator.\n\n## :clap: Inspiration\n\n* [Acadamind Udemy Course: Ionic 4 - Build iOS, Android \u0026 Web Apps with Ionic \u0026 Angular](https://www.udemy.com/ionic-2-the-practical-guide-to-building-ios-android-apps/)\n\n## :file_folder: License\n\n* This project is licensed under the terms of the MIT license.\n\n## :envelope: Contact\n\n* Repo created by [ABateman](https://github.com/AndrewJBateman), email: gomezbateman@yahoo.com\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewjbateman%2Fionic-angular-notes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandrewjbateman%2Fionic-angular-notes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewjbateman%2Fionic-angular-notes/lists"}