{"id":26194261,"url":"https://github.com/active-group/reacl-c-basics","last_synced_at":"2025-10-11T01:40:32.100Z","repository":{"id":40464350,"uuid":"236723550","full_name":"active-group/reacl-c-basics","owner":"active-group","description":"Library with utilities often useful when writing web applications with Reacl-C","archived":false,"fork":false,"pushed_at":"2025-03-04T13:58:47.000Z","size":723,"stargazers_count":2,"open_issues_count":1,"forks_count":3,"subscribers_count":13,"default_branch":"master","last_synced_at":"2025-03-28T15:03:53.453Z","etag":null,"topics":["clojurescript"],"latest_commit_sha":null,"homepage":"","language":"Clojure","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/active-group.png","metadata":{"files":{"readme":"README.md","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":"2020-01-28T11:52:03.000Z","updated_at":"2025-03-04T14:26:06.000Z","dependencies_parsed_at":"2025-02-28T15:29:28.344Z","dependency_job_id":"6174b5b6-bdee-4dc9-9edb-476387a224ad","html_url":"https://github.com/active-group/reacl-c-basics","commit_stats":{"total_commits":220,"total_committers":3,"mean_commits":73.33333333333333,"dds":"0.018181818181818188","last_synced_commit":"c9da4a512c78069d767c8847447613a7a0dcc42e"},"previous_names":[],"tags_count":36,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/active-group%2Freacl-c-basics","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/active-group%2Freacl-c-basics/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/active-group%2Freacl-c-basics/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/active-group%2Freacl-c-basics/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/active-group","download_url":"https://codeload.github.com/active-group/reacl-c-basics/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248986278,"owners_count":21194025,"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":["clojurescript"],"created_at":"2025-03-12T01:55:58.334Z","updated_at":"2025-10-11T01:40:27.070Z","avatar_url":"https://github.com/active-group.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Reacl-c-basics\n\nThis is a collection of utilities often useful when developing with\nthe [Reacl-C](https://github.com/active-group/reacl-c) web programming\nlibrary for ClojureScript\n\n[![Latest Version](https://img.shields.io/clojars/v/de.active-group/reacl-c-basics.svg)](https://clojars.org/de.active-group/reacl-c-basics)\n[![Tests Status](https://github.com/active-group/reacl-c-basics/workflows/ci/badge.svg)](https://github.com/active-group/reacl-c-basics/actions)\n\n## Documentation\n\nThe API documentation for the latest release are available [here](https://cljdoc.xyz/d/de.active-group/reacl-c-basics/CURRENT).\n\n## The contents at a glance\n\nThe following sections give a brief overview of the most used\nnamespaces of the library.\n\n### Forms and input elements\n\nThe namespace\n[`reacl-c-basics.forms.core`](https://cljdoc.xyz/d/de.active-group/reacl-c-basics/CURRENT/api/reacl-c-basics.forms.core)\ncontains functions very similar to the corresponding DOM elements\n`input`, `textarea`, `select` and `form`, but with the most relevant\nstate (the value entered by the user) as their item state.\n\nThe input elements also support the `:multiple` attribute when\npossible, and special new attributes are added for the [HTML5 Form\nValidation\nAPI](https://developer.mozilla.org/en-US/docs/Learn/Forms/Form_validation).\n\nNote: `reacl-c-basics.forms` is deprecated.\n\n#### Advanced and custom input types\n\nThe namespace\n[`reacl-c-basics.forms.types`](https://cljdoc.xyz/d/de.active-group/reacl-c-basics/CURRENT/api/reacl-c-basics.forms.types)\ncontains additional values - called *types* - that can be used for the\n`:type` attribute of the `input` items of\n`reacl-c-basics.forms.core`. It also contains functions to create new\ntypes.\n\nThe most used types are: `opt-integer`, which changes the state of the\ninput item to either `nil` or an integer number, and `opt-fixnum`,\nwhich changes enables the user to enter a floating point number, but\nonly with a fixed number of decimals. \n\nSome of the type values, will actually change the\n`reacl-c-basics.forms.core/input` item into a textbox or select item,\nnamely `multiline-string` and `enum` or `string-enum` respectively.\n\n### Ajax requests\n\nThe namespace\n[`reacl-c-basics.ajax`](https://cljdoc.xyz/d/de.active-group/reacl-c-basics/CURRENT/api/reacl-c-basics.ajax)\ngives you mostly invisible items that perform an Ajax request and give\nyou easy access to the results.\n\n### Client side routing\n\nFor an easy setup of HTML5 Client Side Routing, look at the namespaces\nstarting with\n[`reacl-c-basics.pages`](https://cljdoc.xyz/d/de.active-group/reacl-c-basics/CURRENT/api/reacl-c-basics.pages).\n\n### Timers and animation frames\n\nThe core namespace of the library\n[`reacl-c-basics.core`](https://cljdoc.xyz/d/de.active-group/reacl-c-basics/CURRENT/api/reacl-c-basics.core)\ncontains useful subscriptions to a JavaScript timer (`timeout` and\n`interval`), and to animation frame timestamps (`animation-frame` and\n`animation-frames`).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Factive-group%2Freacl-c-basics","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Factive-group%2Freacl-c-basics","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Factive-group%2Freacl-c-basics/lists"}