{"id":17038153,"url":"https://github.com/ohkanghoon/rxdatasources-texture","last_synced_at":"2025-08-22T12:13:41.000Z","repository":{"id":55376266,"uuid":"171868000","full_name":"OhKanghoon/RxDataSources-Texture","owner":"OhKanghoon","description":"ASTable and ASCollection Data Sources for RxSwift (Texture)","archived":false,"fork":false,"pushed_at":"2021-01-04T16:50:34.000Z","size":226,"stargazers_count":36,"open_issues_count":0,"forks_count":3,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-07-14T07:38:53.792Z","etag":null,"topics":["asyncdisplaykit","datasource","diff","rxswift","rxswift-extensions","sections","texture"],"latest_commit_sha":null,"homepage":"","language":"Swift","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/OhKanghoon.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-02-21T12:29:22.000Z","updated_at":"2024-04-11T11:14:16.000Z","dependencies_parsed_at":"2022-08-14T22:50:44.606Z","dependency_job_id":null,"html_url":"https://github.com/OhKanghoon/RxDataSources-Texture","commit_stats":null,"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/OhKanghoon/RxDataSources-Texture","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OhKanghoon%2FRxDataSources-Texture","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OhKanghoon%2FRxDataSources-Texture/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OhKanghoon%2FRxDataSources-Texture/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OhKanghoon%2FRxDataSources-Texture/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OhKanghoon","download_url":"https://codeload.github.com/OhKanghoon/RxDataSources-Texture/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OhKanghoon%2FRxDataSources-Texture/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271636032,"owners_count":24794144,"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-22T02:00:08.480Z","response_time":65,"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":["asyncdisplaykit","datasource","diff","rxswift","rxswift-extensions","sections","texture"],"created_at":"2024-10-14T08:56:06.447Z","updated_at":"2025-08-22T12:13:40.951Z","avatar_url":"https://github.com/OhKanghoon.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"https://github.com/OhKanghoon/RxDataSources-Texture/blob/master/Resource/logo.png\"\u003e\n\n![Swift](https://img.shields.io/badge/Swift-5.1-orange.svg)\n[![Build Status](https://github.com/OhKanghoon/RxDataSources-Texture/workflows/CI/badge.svg)](https://github.com/OhKanghoon/RxDataSources-Texture/actions)\n[![Version](https://img.shields.io/cocoapods/v/RxDataSources-Texture.svg?style=flat)](https://cocoapods.org/pods/RxDataSources-Texture)\n[![License](https://img.shields.io/cocoapods/l/RxDataSources-Texture.svg?style=flat)](https://cocoapods.org/pods/RxDataSources-Texture)\n[![Platform](https://img.shields.io/cocoapods/p/RxDataSources-Texture.svg?style=flat)](https://cocoapods.org/pods/RxDataSources-Texture)\n\n## Usage\n\n1. Turn your data into an Observable sequence\n2. Bind the data to the tableNode / collectionNode using :\n- rx.items(dataSource:protocol\u003cRxASTableDataSourceType, ASTableDataSource\u003e)\n\n```swift\nlet dataSource = RxASTableSectionedReloadDataSource\u003cSectionModel\u003cString, Int\u003e\u003e(\n    configureCellBlock: { (_, _, _, num) in\n        return {\n            let cell = ASTextCellNode()\n            cell.text = \"\\(num)\"\n            return cell\n        }\n})\n\nObservable.just([SectionModel(model: \"title\", items: [1, 2, 3])])\n    .bind(to: tableNode.rx.items(dataSource: dataSource))\n    .disposed(by: disposeBag)\n```\n\n## Example\n\nTo run the example project, clone the repo, and run `pod install` from the Example directory first.\n- [RxDataSources Example](https://github.com/OhKanghoon/RxDataSources-Texture/tree/master/Example)\n\n## Requirements\n\n- Swift 5.2\n- [RxSwift](https://github.com/ReactiveX/RxSwift) (~\u003e 6.0)\n- [RxCocoa](https://github.com/ReactiveX/RxSwift/tree/master/RxCocoa) (~\u003e 6.0)\n- Differentiator (~\u003e 5.0)\n- [Texture](https://github.com/TextureGroup/Texture) (~\u003e 3.0)\n\n## Installation\n\nRxDataSources-Texture is available through [CocoaPods](https://cocoapods.org). To install\nit, simply add the following line to your Podfile:\n\n```ruby\npod 'RxDataSources-Texture'\n```\n\n## Development\n\n```console\n$ make project\n$ open RxDataSources-Texture.xcworkspace\n```\n\n## Author\n\nOhKanghoon, ggaa96@naver.com\n\n## License\n\nRxDataSources-Texture is available under the MIT license. See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fohkanghoon%2Frxdatasources-texture","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fohkanghoon%2Frxdatasources-texture","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fohkanghoon%2Frxdatasources-texture/lists"}