Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomaszpilch/strapi-code-editor-custom-field
Code editor plugin for strapi CMS. It uses the monaco editor (vscode).
https://github.com/tomaszpilch/strapi-code-editor-custom-field
codeeditor editor monaco-editor plugin strapi
Last synced: about 1 month ago
JSON representation
Code editor plugin for strapi CMS. It uses the monaco editor (vscode).
- Host: GitHub
- URL: https://github.com/tomaszpilch/strapi-code-editor-custom-field
- Owner: TomaszPilch
- License: mit
- Created: 2022-12-26T09:16:57.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-09T13:12:48.000Z (over 1 year ago)
- Last Synced: 2024-11-13T14:54:07.363Z (about 2 months ago)
- Topics: codeeditor, editor, monaco-editor, plugin, strapi
- Language: TypeScript
- Homepage:
- Size: 1.09 MB
- Stars: 14
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![strapi-code-editor.png](images/strapi-code-editor.png)
# Strapi plugin strapi-code-editor-custom-field
Code editor plugin for strapi CMS. It uses the monaco editor (vscode).
## Installation
You need install also monaco editor.
```
yarn add monaco-editor monaco-editor-webpack-plugin strapi-code-editor-custom-field
``````
npm install monaco-editor monaco-editor-webpack-plugin strapi-code-editor-custom-field
```You must add plugin to `config/plugins.js` file.
```
{
...
'strapi-code-editor-custom-field': {
enabled: true,
},
...
}
```You need to update the `config/middlewares.ts` file. Replace `strapi::security` with
```
{
name: 'strapi::security',
config: {
contentSecurityPolicy: {
useDefaults: true,
directives: {
'script-src-elem': ["'self'", 'cdn.jsdelivr.net'],
upgradeInsecureRequests: null,
},
},
},
},
```This will add the `cdn.jsdelivr.net` to the `script-src-elem` directive for enabling content security policy.
And the last step is to add the `monaco-editor-webpack-plugin` to the `src/admin/webpack.config.js` file.
```
'use strict'const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin')
module.exports = (config) => {
config.plugins.push(new MonacoWebpackPlugin())return config
}```
Last step is to rebuild the admin panel.
```
npm run buildOR
yarn build
```## Usage
When you add the plugin you will see two new custom fields. One for javascript (and other languages) and one for json.
![Two custom fields](images/img.png)
The editor then will show up in content-type add/edit page. It can be opened in fullscreen mode.
### JSON editor
![JSON editor](images/img2.png)
### Javascript editor
![Javascript editor](images/img3.png)
You can select the language in content-type builder options (if you select it, you can not change it in the editor instance).
![Select language options](images/img4.png)
## Under the hood
Editor is using two different types for strapi field. When you select JSON editor it will be `json` type.
When you select different language, it will be `text` type.For `text` type you can select the language. If you select it, the select will not show up in the editor.
In case you don't select the language, you can pick it dynamically, but the language is prefixed before the value.
Language selector:
```javascript
const languageRegExp = new RegExp('__(.+)__;')
const languageFromValue = value.match(languageRegExp)[1]
```Remove language from value:
```javascript
const languageRegExp = new RegExp('__(.+)__;')
const valueWithoutLanguage = value.replace(languageRegExp, '')
```## Issues
If you find any issues, please report
them [here](https://github.com/TomaszPilch/strapi-code-editor-custom-field/issues).## Development
If you want to contribute to this plugin, you can follow this steps:
1. Clone this repository
2. Install dependencies```
yarn install
```3. Link the plugin
```
yarn link
```4. Link the plugin to your strapi project
```
cd /your-strapi-project
yarn link strapi-code-editor-custom-field
```5. Build the plugin
```
yarn build
```6. Run watch mode
```
yarn watch
```7. Start the strapi project
## Contributing
Feel free to fork and make a Pull Request to this plugin project. All the input is warmly welcome! ❤️
More info about [contributing](https://github.com/TomaszPilch/strapi-code-editor-custom-field/blob/main/CONTRIBUTING.md).