{"id":13719528,"url":"https://github.com/RxSwiftCommunity/RxASDataSources","last_synced_at":"2025-05-07T11:32:08.879Z","repository":{"id":47577371,"uuid":"97403395","full_name":"RxSwiftCommunity/RxASDataSources","owner":"RxSwiftCommunity","description":"RxDataSource for AsyncDisplayKit/Texture","archived":false,"fork":false,"pushed_at":"2022-04-08T13:20:13.000Z","size":129,"stargazers_count":119,"open_issues_count":6,"forks_count":45,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-04-29T06:32:08.988Z","etag":null,"topics":["asyncdisplaykit","collectionview","reactive","rxdatasources","rxswift","rxswift-extensions","tableview","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/RxSwiftCommunity.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":"2017-07-16T18:41:58.000Z","updated_at":"2024-07-28T14:54:05.000Z","dependencies_parsed_at":"2022-09-03T08:33:09.581Z","dependency_job_id":null,"html_url":"https://github.com/RxSwiftCommunity/RxASDataSources","commit_stats":null,"previous_names":["dangthaison91/rxtexturedatasources"],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RxSwiftCommunity%2FRxASDataSources","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RxSwiftCommunity%2FRxASDataSources/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RxSwiftCommunity%2FRxASDataSources/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RxSwiftCommunity%2FRxASDataSources/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RxSwiftCommunity","download_url":"https://codeload.github.com/RxSwiftCommunity/RxASDataSources/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252869045,"owners_count":21816967,"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":["asyncdisplaykit","collectionview","reactive","rxdatasources","rxswift","rxswift-extensions","tableview","texture"],"created_at":"2024-08-03T01:00:50.882Z","updated_at":"2025-05-07T11:32:08.401Z","avatar_url":"https://github.com/RxSwiftCommunity.png","language":"Swift","readme":"\n## RxASDataSources\n\n[![Platforms](https://img.shields.io/cocoapods/p/RxASDataSources.svg)](https://cocoapods.org/pods/RxASDataSources)\n[![License](https://img.shields.io/cocoapods/l/RxASDataSources.svg)](https://raw.githubusercontent.com/dangthaison91/RxASDataSources/master/LICENSE)\n[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)\n[![CocoaPods compatible](https://img.shields.io/cocoapods/v/RxASDataSources.svg)](https://cocoapods.org/pods/RxASDataSources)\n[![Travis](https://img.shields.io/travis/dangthaison91/RxASDataSources/master.svg)](https://travis-ci.org/dangthaison91/RxASDataSources/branches)\n\n[RxDataSources](https://github.com/RxSwiftCommunity/RxDataSources) for [AsyncDisplayKit/Texture](http://texturegroup.org/docs/getting-started.html): ASTableNode \u0026 ASCollectionNode.\n\n- [RxASDataSources](#rxasdatasources)\n- [Features](#features)\n- [Requirements](#requirements)\n- [Installation](#installation)\n  - [CocoaPods](#cocoapods)\n  - [Carthage](#carthage)\n- [Usage](#usage)\n- [License](#license)\n\n## Features\n- [x] **O(N)** Diff algorithm from [RxDataSources/Differentiator](https://github.com/RxSwiftCommunity/RxDataSources/tree/master/Sources/Differentiator)\n- [x] Shared RxDataSources's APIs so you must learn only once.\n- [x] Supports `ASTableNode` and `ASCollectionNode`\n- [x] Support `nodeBlock`\n- [ ] More complex Example app\n\n\n## Requirements\n\n- iOS 9.0+\n- Xcode 10.1+\n- RxSwift 5.0 \u0026 Texture 2.8\n\n## Installation\n\n### CocoaPods\n\nTo integrate RxASDataSources into your Xcode project using CocoaPods, specify it in your `Podfile`:\n\n```ruby\npod 'RxASDataSources'\n```\n\nThen, run the following command:\n\n```bash\n$ pod install\n```\n\n### Carthage\n\nTo integrate RxASDataSources into your Xcode project using Carthage, specify it in your `Cartfile`:\n\n```ogdl\ngithub \"RxSwiftCommunity/RxASDataSources\"\n```\n\n## Usage\nWorking with RxASDataSources will be very simple if you are familiar with RxDataSources:\n```ruby\ntypealias Section = SectionModel\u003cString, Int\u003e\n\nlet configureCell: ASTableSectionedDataSource\u003cSection\u003e.ConfigureCell = { (dataSource, tableNode, index, model) in\n     let cell = ASTextCellNode()\n     cell.text = model.info\n     return cell\n }\n\n let animation = RowAnimation(insertAnimation: .automatic, reloadAnimation: .fade, deleteAnimation: .automatic)\n let dataSource = RxASTableSectionedReloadDataSource\u003cSection\u003e(animationConfiguration: animation, configureCell: configureCell)\n\n items\n    .bind(to: tableNode.rx.items(dataSource: dataSource))\n    .disposed(by: disposeBag)\n```\n\nFor more advance usages, please follow [RxDataSources](https://github.com/RxSwiftCommunity/RxDataSources) and [Example](https://github.com/RxSwiftCommunity/RxDataSources/tree/master/Example) then simply replace your **Views -\u003e Nodes.**\n\n## License\n\nRxASDataSources is released under the MIT license. See [LICENSE](https://github.com/RxSwiftCommunity/RxASDataSources/blob/master/LICENSE) for details.\n","funding_links":[],"categories":["Libraries"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FRxSwiftCommunity%2FRxASDataSources","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FRxSwiftCommunity%2FRxASDataSources","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FRxSwiftCommunity%2FRxASDataSources/lists"}