{"id":19162340,"url":"https://github.com/agilie/ra-tinymce-input","last_synced_at":"2026-04-28T16:02:29.392Z","repository":{"id":43881646,"uuid":"424931829","full_name":"agilie/ra-tinymce-input","owner":"agilie","description":"Rich Text Input component for React Admin, useful for editing HTML content in admin GUI","archived":false,"fork":false,"pushed_at":"2022-02-15T18:48:35.000Z","size":242,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-02-04T21:17:02.330Z","etag":null,"topics":["react-admin","react-components","reactjs","rich-text-editor","richtext","tinymce","wysiwyg","wysiwyg-html-editor"],"latest_commit_sha":null,"homepage":"https://agilie.com","language":"JavaScript","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/agilie.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}},"created_at":"2021-11-05T11:56:30.000Z","updated_at":"2024-06-05T18:32:22.000Z","dependencies_parsed_at":"2022-08-29T22:31:50.985Z","dependency_job_id":null,"html_url":"https://github.com/agilie/ra-tinymce-input","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agilie%2Fra-tinymce-input","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agilie%2Fra-tinymce-input/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agilie%2Fra-tinymce-input/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agilie%2Fra-tinymce-input/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/agilie","download_url":"https://codeload.github.com/agilie/ra-tinymce-input/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240245904,"owners_count":19771028,"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":["react-admin","react-components","reactjs","rich-text-editor","richtext","tinymce","wysiwyg","wysiwyg-html-editor"],"created_at":"2024-11-09T09:10:21.876Z","updated_at":"2026-04-28T16:02:24.337Z","avatar_url":"https://github.com/agilie.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RA TinyMCE Input\n\nRich Text Input component for [React Admin]\nbased on the [TinyMCE] editor, useful for editing HTML content in admin GUI\n\n# Installation\n\nYou can get the latest version of RA TinyMCE Input from [npm][npm package]\n\n```shell\nnpm install -S @agilie/ra-tinymce-input\n```\n\n# Usage\n\n```javascript\nimport * as React from \"react\";\nimport { Create, SimpleForm, TextInput, DateInput } from 'react-admin';\nimport { RichTextInput } from '@agilie/ra-tinymce-input';\n\nexport const PostCreate = (props) =\u003e (\n    \u003cCreate {...props}\u003e\n        \u003cSimpleForm\u003e\n            \u003cTextInput source=\"title\"/\u003e\n            \u003cRichTextInput source=\"body\"\n                           initialValue=\"\u003cp\u003eThis is the initial content of the editor.\u003c/p\u003e\"\n                           init={{\n                               height: 500,\n                               menubar: false,\n                               plugins: [\n                                   'advlist autolink lists link image charmap print preview anchor',\n                                   'searchreplace visualblocks code fullscreen',\n                                   'insertdatetime media table paste code help wordcount'\n                               ],\n                               toolbar: 'undo redo | formatselect | ' +\n                                   'bold italic backcolor | alignleft aligncenter ' +\n                                   'alignright alignjustify | bullist numlist outdent indent | ' +\n                                   'removeformat | help',\n                               content_style: 'body { font-family:Helvetica,Arial,sans-serif; font-size:14px }'\n                           }} /\u003e\n            \u003cDateInput label=\"Publication date\" source=\"published_at\" defaultValue={new Date()}/\u003e\n        \u003c/SimpleForm\u003e\n    \u003c/Create\u003e\n);\n```\n\nYou can customize the rich text editor by adding additional attributes, as described on the\nTinyMCE [official documentation][TinyMCE docs].\n\n# Roadmap\n\n1. ~~Basic implementation of React Admin rich text editor on the basis of TinyMCE editor~~\n2. ~~Map all the original properties of TinyMCE editor to the react admin component~~\n3. Map all the react admin input properties to an editor and implement the correspondent behavior\n4. Codestyle, tests, correct proptypes\n\n# Troubleshooting\n\nProblems? Check the [Issues](issues) block to find the solution or create a new issue, and we will do our best to fix it\nasap. Feel free to contribute. This project is intended to be a safe, welcoming space for collaboration.\n\n# License\n\nThe library is available as open source under the MIT License (MIT) Copyright © 2021 [Agilie Team]\n\n# Author\n\nThis library is open-sourced by [Agilie Team] (web@agilie.com)\n\n# Contributors\n\n- [Sergey Mell]\n- [Maksym Ferber]\n\n[npm package]: https://www.npmjs.com/package/@agilie/ra-tinymce-input\n\n[TinyMCE docs]: https://www.tiny.cloud/docs/\n\n[React Admin]: https://marmelab.com/react-admin\n\n[TinyMCE]: https://www.tiny.cloud\n\n[Agilie Team]: https://agilie.com/en/index\n\n[Sergey Mell]: https://github.com/SergeyMell\n\n[Maksym Ferber]: https://github.com/EvenOff-first\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagilie%2Fra-tinymce-input","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fagilie%2Fra-tinymce-input","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagilie%2Fra-tinymce-input/lists"}