{"id":20123896,"url":"https://github.com/dalenewman/orchardcore.transformalize","last_synced_at":"2025-07-30T11:04:49.336Z","repository":{"id":38040908,"uuid":"257084697","full_name":"dalenewman/OrchardCore.Transformalize","owner":"dalenewman","description":"a transformalize module for orchard core","archived":false,"fork":false,"pushed_at":"2025-07-16T03:05:18.000Z","size":92150,"stargazers_count":13,"open_issues_count":2,"forks_count":3,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-07-17T05:46:03.262Z","etag":null,"topics":["orchardcore","transformalize"],"latest_commit_sha":null,"homepage":null,"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/dalenewman.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,"zenodo":null}},"created_at":"2020-04-19T19:28:44.000Z","updated_at":"2025-07-16T03:05:23.000Z","dependencies_parsed_at":"2025-05-26T05:38:56.006Z","dependency_job_id":null,"html_url":"https://github.com/dalenewman/OrchardCore.Transformalize","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dalenewman/OrchardCore.Transformalize","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dalenewman%2FOrchardCore.Transformalize","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dalenewman%2FOrchardCore.Transformalize/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dalenewman%2FOrchardCore.Transformalize/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dalenewman%2FOrchardCore.Transformalize/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dalenewman","download_url":"https://codeload.github.com/dalenewman/OrchardCore.Transformalize/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dalenewman%2FOrchardCore.Transformalize/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267857804,"owners_count":24155914,"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-07-30T02:00:09.044Z","response_time":70,"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":["orchardcore","transformalize"],"created_at":"2024-11-13T19:46:56.039Z","updated_at":"2025-07-30T11:04:49.123Z","avatar_url":"https://github.com/dalenewman.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Transformalize in Orchard Core\n\nThis is an [Orchard Core](https://github.com/OrchardCMS/OrchardCore) module \nthat uses [Transformalize](https://github.com/dalenewman/Transformalize) \narrangements to create:\n\n- **Reports**: Browse and Search for data.\n- **Tasks**: Validate \u0026 transform parameters for use in data modification statements.\n- **Forms**: Validate \u0026 transform form data for data collection. \n- **Bulk Actions**: Tasks run on records selected from reports.\n\n### Reports\nReports read, filter, search, export, and page over data. \nYou may transform records using [Razor](https://docs.microsoft.com/en-us/aspnet/core/mvc/views/razor?view=aspnetcore-3.1) \n, [Liquid](https://shopify.github.io/liquid), and built-in transforms. \nIf the records have coordinates, you may display them on a map.\n\n`TODO: Explain example arrangement and show GIF.`\n\n### Tasks\n\nTasks accept, transform, and validate parameters before running \ntraditional [transformalize](https://github.com/dalenewman/Transformalize/blob/master/README.md) \nor simple data modification processes.\n\n`TODO: Explain example arrangement and show GIF.`\n\n\n### Forms\nBuilding off the ability to validate parameters, \nforms collect valid user supplied input and store it \nin a relational provider (a specified table).\n\n`TODO: Explain example arrangement and show GIF.`\n\n### Bulk Actions\nBulk Actions combine reports and tasks. You may \nselect records on a report, and send them to a \ntask for processing.\n\n\u003c!--Actions are added to report arrangements like this:\n\n```xml\n\u003ccfg name=\"report\"\u003e\n   \u003cactions\u003e\n      \u003cadd name=\"task-alias\" description=\"a description\" /\u003e\n   \u003c/actions\u003e\n\u003c/cfg\u003e\n```\n--\u003e\n\nConfigurable tasks must be defined to run bulk actions:\n\n1. `batch-create`: create and return a batch identifier\n1. `batch-write`: write batch values\n1. `batch-summary`: query batch summary\n1. `batch-run`: indicate the task is running (not yet implemented)\n1. `batch-success`: indicate the task succeeded\n1. `batch-fail`: indicate the task failed\n\nThere are recipes for MSSQL, PostgreSql, and SQLite for the above tasks. Initially, The \"batch write\" task must be run once in _init_ mode to setup the necessary tables/views.\n\n---\n\nPutting it all together, here is a GIF showing a report (with map) that has a bulk \naction to change color associated with the record.\n\n![bogus report](src/Site/App_Data/samples/sacramento-crime/criminal-bulk-actions.gif)\n\n`TODO: Link to arrangement here.`\n\n---\n\n### Development\n- Visual Studio 2022 with ASP.NET Core related workloads:\n  - ASP.NET and Web Development\n  - .NET Core Cross-Platform Development\n- Relies on nuget source https://www.myget.org/F/transformalize/api/v3/index.json\n- **Caution**: This project is still under development.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdalenewman%2Forchardcore.transformalize","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdalenewman%2Forchardcore.transformalize","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdalenewman%2Forchardcore.transformalize/lists"}