{"id":18614802,"url":"https://github.com/andrewjbateman/ionic-angular-accordian","last_synced_at":"2025-08-13T06:23:07.439Z","repository":{"id":39554759,"uuid":"177470824","full_name":"AndrewJBateman/ionic-angular-accordian","owner":"AndrewJBateman","description":":clipboard: App to show accordian UI and some artistic modifications","archived":false,"fork":false,"pushed_at":"2024-01-09T07:59:40.000Z","size":1906,"stargazers_count":3,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-25T06:51:15.476Z","etag":null,"topics":["accordian-widget","accordion-element","angular","angular16","ionic","scss-styles","tutorial-code","typescript4","widget"],"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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-03-24T21:21:16.000Z","updated_at":"2023-10-06T07:27:54.000Z","dependencies_parsed_at":"2024-11-07T03:40:56.121Z","dependency_job_id":null,"html_url":"https://github.com/AndrewJBateman/ionic-angular-accordian","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-accordian","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-accordian/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-accordian/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fionic-angular-accordian/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AndrewJBateman","download_url":"https://codeload.github.com/AndrewJBateman/ionic-angular-accordian/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248322228,"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":["accordian-widget","accordion-element","angular","angular16","ionic","scss-styles","tutorial-code","typescript4","widget"],"created_at":"2024-11-07T03:27:03.873Z","updated_at":"2025-04-11T00:30:52.179Z","avatar_url":"https://github.com/AndrewJBateman.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# :zap: Ionic Angular Accordian\n\n* App to create a simple accordian widget using the [Ionic framework](https://ionicframework.com/docs).\n* Accordions are often used in the UI for grouping and display of related information.\n* Tutorial code from [Mastering Ionic](https://masteringionic.com/) - see [:clap: Inspiration](#clap-inspiration) below.\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-accordian?style=plastic)\n![GitHub pull requests](https://img.shields.io/github/issues-pr/AndrewJBateman/ionic-angular-accordian?style=plastic)\n![GitHub Repo stars](https://img.shields.io/github/stars/AndrewJBateman/ionic-angular-accordian?style=plastic)\n![GitHub last commit](https://img.shields.io/github/last-commit/AndrewJBateman/ionic-angular-accordian?style=plastic)\n\n## :page_facing_up: Table of contents\n\n* [:zap: Ionic Angular Accordian](#zap-ionic-angular-accordian)\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* Added to the `app.module.ts` is a [CUSTOM_ELEMENTS_SCHEMA](https://angular.io/api/core/CUSTOM_ELEMENTS_SCHEMA) allows custom component to be recognised by Angular when transpiling the code\n\n## :camera: Screenshots\n\n![Home Page](./img/accordion.png)\n\n## :signal_strength: Technologies\n\n* [Ionic/angular v7](https://www.npmjs.com/package/@ionic/angular)\n* [Angular v16](https://angular.io/)\n\n## :floppy_disk: Setup\n\n* To start the server on _localhost://8100_ type: 'ionic serve' or on _localhost://4200_ type: 'ng serve'\n\n## :computer: Code Examples\n\n* extract from `home.page.html`: for loop used to display info on each technology from the simple array created in the ts file.\n\n```html\n\u003cion-content padding\u003e\n  \u003capp-accordion\n    *ngFor=\"let technology of technologies\"\n    name=\"{{ technology.name }}\"\n    description=\"{{ technology.description }}\"\n    image=\"{{ technology.image }}\"\n    (change)=\"captureName($event)\"\n  \u003e\u003c/app-accordion\u003e\n\u003c/ion-content\u003e\n```\n\n## :cool: Features\n\n* Data is stored in an array of objects but this could be replaced with json data from an API call.\n* Use of `@input` to pass current name, description \u0026 image link strings from `home` to the accordian widget\n* Updated to latest Ionic/Angular versions with dependency updates and all dependency vulnerabilities resolved.\n\n## :clipboard: Status \u0026 To-do list\n\n* Status: Working.\n* To-do: work out how to add HTML links inside the accordion, maybe by using a function.\n\n## :clap: Inspiration\n\nProject inspired by [Mastering Ionic's 'Creating a simple accordion widget in Ionic 4'](http://masteringionic.com/blog/2019-01-27-creating-a-simple-accordion-widget-in-ionic-4/).\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","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewjbateman%2Fionic-angular-accordian","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandrewjbateman%2Fionic-angular-accordian","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewjbateman%2Fionic-angular-accordian/lists"}