{"id":18614818,"url":"https://github.com/andrewjbateman/angular-material-table","last_synced_at":"2025-07-26T21:11:32.775Z","repository":{"id":39745014,"uuid":"175699679","full_name":"AndrewJBateman/angular-material-table","owner":"AndrewJBateman","description":":clipboard: Angular app to display a table using the Material library","archived":false,"fork":false,"pushed_at":"2023-05-24T02:09:22.000Z","size":4854,"stargazers_count":4,"open_issues_count":1,"forks_count":5,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-11T11:02:07.644Z","etag":null,"topics":["angular","angular-material","angular-material16","angular16","breakpoints","css3","html5","table","typescript4"],"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,"zenodo":null}},"created_at":"2019-03-14T21:07:03.000Z","updated_at":"2023-05-18T18:18:49.000Z","dependencies_parsed_at":"2024-11-07T03:41:03.963Z","dependency_job_id":null,"html_url":"https://github.com/AndrewJBateman/angular-material-table","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AndrewJBateman/angular-material-table","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fangular-material-table","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fangular-material-table/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fangular-material-table/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fangular-material-table/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AndrewJBateman","download_url":"https://codeload.github.com/AndrewJBateman/angular-material-table/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fangular-material-table/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267236871,"owners_count":24057657,"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","status":"online","status_checked_at":"2025-07-26T02:00:08.937Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["angular","angular-material","angular-material16","angular16","breakpoints","css3","html5","table","typescript4"],"created_at":"2024-11-07T03:27:07.047Z","updated_at":"2025-07-26T21:11:32.718Z","avatar_url":"https://github.com/AndrewJBateman.png","language":"TypeScript","readme":"# :zap: Angular Material Table\n\n* App using the [Angular Material design component library](https://material.angular.io/) to add a table using mat-table with sortable columns, as per [Angular Material sort docs](https://material.angular.io/components/sort/overview).\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/angular-material-table?style=plastic)\n![GitHub pull requests](https://img.shields.io/github/issues-pr/AndrewJBateman/angular-material-table?style=plastic)\n![GitHub Repo stars](https://img.shields.io/github/stars/AndrewJBateman/angular-material-table?style=plastic)\n![GitHub last commit](https://img.shields.io/github/last-commit/AndrewJBateman/angular-material-table?style=plastic)\n\n## :page_facing_up: Table of contents\n\n* [:zap: Angular Material Table](#zap-angular-material-table)\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* Table of periodic elements used to provide data for columns.\n\n## :camera: Screenshots\n\n![Example screenshot](./img/table+rows-clicked.png)\n\n## :signal_strength: Technologies\n\n* [Angular v16](https://angular.io/)\n* [Angular Material v16](https://material.angular.io/)\n\n## :floppy_disk: Setup\n\n* Install dependencies using `npm i`\n* Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.\n\n* Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.\n\n## :computer: Code Examples\n\n* use ng breakpoint observer to see if use has a phone-sized screen or not.\n\n```typescript\nngOnInit(): void {\n  this.breakpointObserver\n    .observe(Breakpoints.Handset)\n    .subscribe(async result =\u003e {\n      this.isHandset = result.matches\n    })\n}\n```\n\n## :cool: Features\n\n* Clicking on a row will console.log the data in that row\n* Table now has a sticky header\n* Table columns now sortable\n\n## :clipboard: Status \u0026 To-Do List\n\n* Status: Working\n* To-Do: Nothing\n\n## :clap: Inspiration\n\n* [Angular Material sort docs](https://material.angular.io/components/sort/overview).\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@gmail.com`\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewjbateman%2Fangular-material-table","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandrewjbateman%2Fangular-material-table","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewjbateman%2Fangular-material-table/lists"}