Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eissasoubhi/summernote-heading
Summernote heading module, adds a customized heading component to summernote.
https://github.com/eissasoubhi/summernote-heading
extension heading plugin summernote title
Last synced: 3 months ago
JSON representation
Summernote heading module, adds a customized heading component to summernote.
- Host: GitHub
- URL: https://github.com/eissasoubhi/summernote-heading
- Owner: eissasoubhi
- License: mit
- Created: 2022-04-29T15:20:25.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-24T13:52:00.000Z (over 1 year ago)
- Last Synced: 2024-03-15T06:04:19.861Z (8 months ago)
- Topics: extension, heading, plugin, summernote, title
- Language: TypeScript
- Homepage: https://eissasoubhi.github.io/summernote-heading/
- Size: 7.66 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-summernote - summernote-heading
README
# Summernote heading
summernote-heading extension/plugin/module for [summernote](https://github.com/summernote/summernote/) WYSIWYG, provides a bootstrap modal to add custom heading to the summernote editor.### Dependencies:
Font-awesome: 4.7
JQuery: 3
Bootstrap version: 4
Summernote version: 0.8### More summernote extensions (SNB bricks)
- [Summernote Gallery](https://github.com/eissasoubhi/summernote-gallery)**For a complete module with more user-friendly components. see [Summernote bricks](https://github.com/eissasoubhi/summernote-bricks)**
# Demo
Demo link:
http://eissasoubhi.github.io/summernote-heading![Summernote heading demo](demo.gif?raw=true "Summernote heading demo")
# Installing
- Include the required files, and the module file after summernote-bs4.min.js file```html
```
- Add the heading to the summernote editor toolbar```javascript
$('#summernote').summernote({
toolbar: [
// ['insert', ['picture', 'link', 'video', 'table', 'hr', 'summernoteHeading']],
// ['font style', ['fontname', 'fontsize', 'color', 'bold', 'italic',
//'underline', 'strikethrough', 'superscript', 'subscript', 'clear']],
// ['paragraph style', ['style', 'ol', 'ul', 'paragraph', 'height']],
// ['misc', ['fullscreen', 'codeview', 'undo', 'redo', 'help']]
['extensions', ['summernoteHeading']],
],
summernoteHeading: {
modal: {
// modal title
title: 'Summernote Heading title',// close button text
closeText: 'Close',// save button text
saveText: 'Save',// title input label text
titleLabel: 'Heading title',// title input label text
subtitleLabel: 'Heading subtitle',// the html element class containing the modal messages
messageContainerClass: 'snb-modal-message',// the default value of the underline color input
defaultUnderlineColor: '#c50000',// the text of the label of the underline color input
underlineColorLabel: 'Underline color',// modal inputs validations
validations: {
"title": ["required"],
"subtitle": ["required"]
},
},buttonLabel: ' SNB Heading',
tooltip: 'Summernote Heading',
extensions: [
// add/remove linebreaks extension
'snbWhiteSpaceManager'
]
}
});
```# Options
The module has general options and modal options.
The `modal` option has sub-options that deal with the bootstrap modal.| Option | Description | Default | Type |
|-----------------------------|----------------------------------------------------------------------------------------|-----------------------------------------|-----------------------------------------------------------------|
| buttonLabel | the plugin button label displayed on the summernote toolbar | SN Heading | string |
| tooltip | the plugin button tooltip visible on the button hover event | Summernote Heading | string |
| extensions | extension to add extra features to the brick (see the SNB-extension section) | ['snbWhiteSpaceManager'] | array |
| **modal** | The modal options | - | object: `src/Module/Interfaces/HeadingModalOptionsInterface.ts` |
| modal.title | The modal title | summernote heading title | string |
| modal.closeText | the modal close button text | Close | string |
| modal.saveText | the modal save button text | Save | string |
| modal.titleLabel | the label text of the heading title input | Heading title | string |
| modal.subtitleLabel | the label text of the heading subtitle input | Heading subtitle | string |
| modal.messageContainerClass | the class of the html element containing the modal messages | snb-modal-message | string |
| modal.defaultUnderlineColor | the default color of the heading underline in hexa format | #c50000 | string |
| modal.underlineColorLabel | the label text of the underline color input | Underline color | string |
| **modal.validations** | Validation of the modal/brick data: `src/Module/Interfaces/HeadingDataInterface.ts` | - | object |
| modal.validations.title | the validation rules of the `src/Module/Interfaces/HeadingDataInterface.ts` title | ["required"] | array |
| modal.validations.subtitle | the validation rules of the `src/Module/Interfaces/HeadingDataInterface.ts` subtitle | ["required"] | array |# Deep dive || Edit
**Requirements: node v16**
### Dev environment setup
To run the plugin on local, head to the project root folder and run:
1. `npm install`
2. `npm run start` to start the project on 127.0.0.1:9091
3. `npm run dev` to start the webpack watch mode
4. Edit plugin files in the `/src` folder
5. `npm run build` to generate the build in `/dist` folder### The source code
The module is coded with Typescript and JSXJSX is for writing single-file template files residing in `src/Module/templates`
Some components of this code source are imported from the SNB-components package
### How it works:```mermaid
flowchart LR
subgraph Modal
direction TBuser_interaction(User interaction)
save(Save)
show_modal ==> user_interaction
user_interaction ==> |Parse user inputs|save
endsubgraph Extension/plugin
direction LR
show_modal(Show modal)
create_brick(Create Brick)
mode_type{Mode?}
creating_mode(Creating Mode)
editing_mode(Editing Mode)
create_modal ==> show_modal
save ==> create_brick
save -. Modal data .-> create_brick
create_brick ==> mode_type
mode_type ==> creating_mode
mode_type ==> editing_mode
endsubgraph Editor
direction LR
seprator[_]
style seprator stroke:#000,stroke-width:0px,color:#000,stroke-dasharray: 0
subgraph Toolbar
direction TB
create_modal(Create modal)
add_brick(Add Brick)
add_brick ==> |Creating mode| create_modal
add_brick -. Empty data .-> create_modal
end
subgraph Brick
direction TB
edit(Edit)
brick_content[(Brick ontent)]
edit ==> |Editing mode| create_modal
edit -. Brick data .-> create_modal
style Brick fill:#dc2269,stroke:#000,stroke-width:2px,color:#000,stroke-dasharray: 5 5
end
creating_mode ==> |Insert Brick|Brick
editing_mode ==> |Replace Brick|Brick
end
```### SNB Extensions:
SNB Extensions are a way to extract some reusable features to be included later (or not) by any Summernote-brickSee the available SNB extensions [here](https://github.com/eissasoubhi/SNB-components#extensions)
### Contribution
If you found any bugs or have suggestions, don't hesitate to throw it in the issues sections.For more understanding of how this module works take a look on the [v1](https://github.com/eissasoubhi/summernote-gallery/tree/v1) branch or the summernote extension basic sample [hello](https://github.com/summernote/summernote/blob/v0.7.0/examples/plugin-hello.html) .
# License
The contents of this repository is licensed under [The MIT License.](https://opensource.org/licenses/MIT)