{"id":25819569,"url":"https://github.com/a-simplecode/codechallenge","last_synced_at":"2026-06-05T21:31:28.589Z","repository":{"id":165444326,"uuid":"593117062","full_name":"a-simplecode/codechallenge","owner":"a-simplecode","description":null,"archived":false,"fork":false,"pushed_at":"2023-01-30T10:03:47.000Z","size":1485,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-28T14:48:54.920Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/a-simplecode.png","metadata":{"files":{"readme":"README","changelog":null,"contributing":null,"funding":null,"license":null,"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-01-25T09:25:59.000Z","updated_at":"2023-01-25T09:26:09.000Z","dependencies_parsed_at":"2023-06-07T23:15:48.327Z","dependency_job_id":null,"html_url":"https://github.com/a-simplecode/codechallenge","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/a-simplecode/codechallenge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a-simplecode%2Fcodechallenge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a-simplecode%2Fcodechallenge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a-simplecode%2Fcodechallenge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a-simplecode%2Fcodechallenge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/a-simplecode","download_url":"https://codeload.github.com/a-simplecode/codechallenge/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a-simplecode%2Fcodechallenge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33961252,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-05T02:00:06.157Z","response_time":120,"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":[],"created_at":"2025-02-28T08:57:12.378Z","updated_at":"2026-06-05T21:31:28.584Z","avatar_url":"https://github.com/a-simplecode.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# This project is Built with eurisko-platform-boilerplate-react-native-app\n\n[![Build Status](https://travis-ci.org/joemccann/dillinger.svg?branch=master)](https://travis-ci.org/joemccann/dillinger)\n\n## Overview 📚\n\nThis app is built with the CDD Component Driven Development strategy since TDD Test Driven Development is unrealistic with front-end development.\n\nOur software breakdown overview will be like this:\n\n[UI] will use the Atomic architect to build up our software UI components, they are purely UI responsible and all of them are stateless react components and style-able\n\n[Logic] will use the redux-toolkit architect, it will be responsible for all the app’s use cases, logic, data fetching/submission, and business rules, we will refer to them as features, the features are stateful react components and style-less\n\n## Restrictions 🔴\n\n:arrow_right: To enforce the split between UI and Logic, we will use eslint’s no-restricted-imports , the rules will confirm the below:\n\nSince the features are stateful react components and style-less, we are not allowing imports such StyleSheet.create in any file under the features folder\n\nSince components are stateless components and style-able, we are not allowing any imports from redux libraries\n\n:arrow_right: To enforce files and folders naming convention, we will use eslint’s check-file/filename-naming-convention and check-file/folder-naming-convention, the rules are simple\n\nThe folders under src will follow camelCase\n\nThe files under components and features will follow PascaleCase\n\n:arrow_right:  For naming our UI components, we are following this [strategy](https://medium.com/@wittydeveloper/react-components-naming-convention-%EF%B8%8F-b50303551505)\n\n## Diagram flow 📊\n\nThe below drawing will explain how our software is being created from A~Z following SOLID principles and Redux ToolKit + Atomic Architecture\n\n![](https://raw.githubusercontent.com/fouadbakour/files/master/redux-arch.png)\n\n## Extra patterns ✅\n\nFactory pattern: The factory pattern allows us to factor out the process of object creation. This can have multiple purposes:\n\nthe final object depends on the parameters.\n\nseparate a simple object representation from the logic of creating it.\n\nit can be used for any data type, not just components, e.g: a function that gives UIModel array to build a flat list!\n\n## Folder \u0026 Files Templates 📂\nDuring development, you need to create new components and new features, to accelerate that, we created a predefined template that can help you to achieve that, this setup will be included by default once you start a new project using our project-creator template, but you can use these also with any existing project, to do so:\n\n- Install this extension https://marketplace.visualstudio.com/items?itemName=Huuums.vscode-fast-folder-structure on your VSCode\n- Whenever you want to create a new component or a new feature, do the below:\n\n- ![](https://raw.githubusercontent.com/fouadbakour/files/master/vscode-step2.png)\n  \n- ![](https://raw.githubusercontent.com/fouadbakour/files/master/vscode-step3.png)\n  \n- ![](https://raw.githubusercontent.com/fouadbakour/files/master/vscode-step4.png)\n\n## Troubleshooting 🔥\n\nIf the terminal throws errors during the `pod install` and the errors are related to `Gem`\ntry to run this at the `ios` folder instead of `pod install`\n\n```shell\nbundle install\n```\n\n## License\n\nEurisko Mobility\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fa-simplecode%2Fcodechallenge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fa-simplecode%2Fcodechallenge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fa-simplecode%2Fcodechallenge/lists"}