{"id":19725601,"url":"https://github.com/xdev-software/vaadin-simple-grid-filter","last_synced_at":"2025-02-27T19:21:17.477Z","repository":{"id":259820034,"uuid":"869919401","full_name":"xdev-software/vaadin-simple-grid-filter","owner":"xdev-software","description":"A simple Vaadin Flow component for filtering Grids ","archived":false,"fork":false,"pushed_at":"2025-02-22T04:14:01.000Z","size":1148,"stargazers_count":10,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"develop","last_synced_at":"2025-02-22T05:19:02.124Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://vaadin.com/directory/component/simple-grid-filter-for-vaadin","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xdev-software.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-10-09T06:08:02.000Z","updated_at":"2025-02-14T12:17:44.000Z","dependencies_parsed_at":"2025-02-22T05:18:47.549Z","dependency_job_id":"223c6f27-516b-422b-a8f9-d017c3e43a4b","html_url":"https://github.com/xdev-software/vaadin-simple-grid-filter","commit_stats":null,"previous_names":["xdev-software/vaadin-simple-grid-filter"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xdev-software%2Fvaadin-simple-grid-filter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xdev-software%2Fvaadin-simple-grid-filter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xdev-software%2Fvaadin-simple-grid-filter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xdev-software%2Fvaadin-simple-grid-filter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xdev-software","download_url":"https://codeload.github.com/xdev-software/vaadin-simple-grid-filter/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241049453,"owners_count":19900446,"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":[],"created_at":"2024-11-11T23:31:23.455Z","updated_at":"2025-02-27T19:21:17.471Z","avatar_url":"https://github.com/xdev-software.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Published on Vaadin Directory](https://img.shields.io/badge/Vaadin%20Directory-published-00b4f0?logo=vaadin)](https://vaadin.com/directory/component/simple-grid-filter-for-vaadin)\n[![Latest version](https://img.shields.io/maven-central/v/software.xdev/vaadin-simple-grid-filter?logo=apache%20maven)](https://mvnrepository.com/artifact/software.xdev/vaadin-simple-grid-filter)\n[![Build](https://img.shields.io/github/actions/workflow/status/xdev-software/vaadin-simple-grid-filter/check-build.yml?branch=develop)](https://github.com/xdev-software/vaadin-simple-grid-filter/actions/workflows/check-build.yml?query=branch%3Adevelop)\n[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=xdev-software_vaadin-simple-grid-filter\u0026metric=alert_status)](https://sonarcloud.io/dashboard?id=xdev-software_vaadin-simple-grid-filter)\n![Vaadin 24+](https://img.shields.io/badge/Vaadin%20Platform/Flow-24+-00b4f0)\n\n# vaadin-simple-grid-filter\n\nA simple Vaadin Flow component for filtering Grids.\n\n![demo](assets/demo.png)\n\n\u003e [!NOTE]\n\u003e If you are looking for a more advanced component you may check out our [grid-filter](https://github.com/xdev-software/vaadin-grid-filter).\n\n## Usage\n\nHere is a very simple example how the FilterComponent can be used:\n```java\nGrid\u003cPerson\u003e grid = createGrid();\n\nFilterComponent\u003cPerson\u003e filter = new FilterComponent\u003c\u003e(grid)\n  .withFilter(new SimpleFilterField\u003c\u003e(Person::getLastName, \"Lastname\"));\n\nthis.add(filter, grid);\n```\n\nTo get started further it's recommended to have a look at the [demo](./vaadin-simple-grid-filter-demo).\u003cbr/\u003e\nA description how to get it running can be found [below](#run-the-demo).\n\n\u003e [!IMPORTANT]\n\u003e This component is designed for \"in memory\" filtering of small to medium sized amounts of data.\n\n\u003e [!NOTE]\n\u003e Filtering multiple thousand items with complex filtering conditions can drastically impact performance and make the UI unresponsive!\u003cbr/\u003e In these cases it's recommended to use backend filtering solutions like database queries or search engines like [ElasticSearch](https://en.wikipedia.org/wiki/Elasticsearch) in combination with a customized UI search framework. If you need help in implementing these feel free to [contact us](https://xdev.software/en/services/support).\n\n## Installation\n[Installation guide for the latest release](https://github.com/xdev-software/vaadin-simple-grid-filter/releases/latest#Installation)\n\n#### Compatibility with Vaadin\n\n| Vaadin version | Grid-Filter version |\n| --- | --- |\n| Vaadin 24+ (latest) | ``1+`` |\n\n### Spring-Boot\n* You may have to include ``software/xdev`` inside [``vaadin.allowed-packages``](https://vaadin.com/docs/latest/integrations/spring/configuration#configure-the-scanning-of-packages)\n\n## Run the Demo\n* Checkout the repo\n* Run ``mvn install \u0026\u0026 mvn -f vaadin-simple-grid-filter-demo spring-boot:run``\n* Open http://localhost:8080\n\n\u003cdetails\u003e\n  \u003csummary\u003eShow example\u003c/summary\u003e\n  \n  ![demo](assets/demo.avif)\n\u003c/details\u003e\n\n## Support\nIf you need support as soon as possible and you can't wait for any pull request, feel free to use [our support](https://xdev.software/en/services/support).\n\n## Contributing\nSee the [contributing guide](./CONTRIBUTING.md) for detailed instructions on how to get started with our project.\n\n## Dependencies and Licenses\nView the [license of the current project](LICENSE) or the [summary including all dependencies](https://xdev-software.github.io/vaadin-simple-grid-filter/dependencies)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxdev-software%2Fvaadin-simple-grid-filter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxdev-software%2Fvaadin-simple-grid-filter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxdev-software%2Fvaadin-simple-grid-filter/lists"}