{"id":17660946,"url":"https://github.com/soulteary/js-field-picker","last_synced_at":"2025-08-17T07:08:15.266Z","repository":{"id":175589077,"uuid":"654175366","full_name":"soulteary/js-field-picker","owner":"soulteary","description":"A JavaScript Field Picker written by vanilla JS.","archived":false,"fork":false,"pushed_at":"2023-06-29T00:53:49.000Z","size":584,"stargazers_count":2,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-05T12:09:08.970Z","etag":null,"topics":["dropdown","dropdown-menu","field-picker","javascript"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/soulteary.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":"2023-06-15T14:40:28.000Z","updated_at":"2024-12-15T01:27:44.000Z","dependencies_parsed_at":null,"dependency_job_id":"86f30954-0e15-4a39-96a9-4aac5e07f8ed","html_url":"https://github.com/soulteary/js-field-picker","commit_stats":null,"previous_names":["soulteary/js-domain-picker","soulteary/js-field-picker"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/soulteary/js-field-picker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soulteary%2Fjs-field-picker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soulteary%2Fjs-field-picker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soulteary%2Fjs-field-picker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soulteary%2Fjs-field-picker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/soulteary","download_url":"https://codeload.github.com/soulteary/js-field-picker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soulteary%2Fjs-field-picker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270817221,"owners_count":24650954,"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-08-17T02:00:09.016Z","response_time":129,"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":["dropdown","dropdown-menu","field-picker","javascript"],"created_at":"2024-10-23T17:09:48.190Z","updated_at":"2025-08-17T07:08:15.230Z","avatar_url":"https://github.com/soulteary.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JS Filed Picker\n\nA JavaScript Field Picker written by vanilla JS.\n\n![](.github/demo.gif)\n\n## Data Format\n\n```bash\n{\n  data: [\n    { name: \"All\", cname: \"所有领域\", code: \"all\" },\n    {\n      name: \"Artificial intelligence\",\n      cname: \"人工智能\",\n      rel: [\n        { name: \"ACM SIGAI\", link: \"http://sigai.acm.org/index.html\" },\n        { name: \"AAAI\", link: \"https://aaai.org/\" },\n      ],\n      code: \"ai\",\n      children: [\n        { name: \"AAAI\", cname: \"AAAI\", code: \"aaai\", checked: true, link: \"https://csconferences.org/#AAAI\" },\n        { name: \"IJCAI\", cname: \"IJCAI\", code: \"ijcai\", checked: true, link: \"https://csconferences.org/#IJCAI\" },\n      ],\n    },\n    {\n      name: \"Computer vision\",\n      cname: \"计算机视觉\",\n      code: \"cv\",\n      rel: [{ name: \"CVF\", link: \"https://www.cv-foundation.org/\" }],\n      children: [\n        { name: \"CVPR\", cname: \"CVPR\", code: \"cvpr\", checked: true, link: \"https://csconferences.org/#CVPR\" },\n        { name: \"ECCV\", cname: \"ECCV\", code: \"eccv\", checked: true, link: \"https://csconferences.org/#ECCV\" },\n        { name: \"ICCV\", cname: \"ICCV\", code: \"iccv\", checked: true, link: \"https://dblp.org/db/conf/iccv/index.html\" },\n      ],\n    },\n    {\n      name: \"Machine learning\",\n      cname: \"机器学习\",\n      code: \"ml\",\n      rel: [\n        { name: \"ACM SIGKDD\", link: \"https://www.kdd.org/\" },\n        { name: \"ICLR\", link: \"https://iclr.cc/\" },\n        { name: \"IMLS\", link: \"http://www.machinelearning.org/\" },\n        { name: \"NEURIPS/NIPS\", link: \"https://neurips.cc/\" },\n      ],\n      children: [\n        { name: \"ICLR\", cname: \"ICLR\", code: \"iclr\", checked: true, link: \"https://csconferences.org/#ICLR\" },\n        { name: \"ICML\", cname: \"ICML\", code: \"icml\", checked: true, link: \"https://csconferences.org/#ICML\" },\n        { name: \"NeurIPS\", cname: \"NeurIPS\", code: \"neurips\", checked: true, link: \"https://csconferences.org/#NeurIPS\" },\n        { name: \"KDD\", cname: \"KDD\", code: \"kdd\", checked: false, link: \"https://dblp.org/db/conf/kdd/index.html\" },\n      ],\n    },\n    ...\n  ],\n}\n```\n\n## Preview\n\n![](.github/preview.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoulteary%2Fjs-field-picker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsoulteary%2Fjs-field-picker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoulteary%2Fjs-field-picker/lists"}