Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
etch-backbone
Advanced tools
Etch is a content editor built on Backbone.js and is designed to be easily plugged into your Backbone app or stand alone.
Etch is a content editor built on Backbone.js and is designed to be easily plugged into your Backbone app or stand alone.
Etch depends on jQuery, Underscore, Backbone, as well as Rangy if you need support for legacy browsers (IE8 and prior).
You can exclude Rangy and shave 41k off of your footprint if you don't need legacy support.
Once you have the dependencies squared away simply include the etch.js script after them and before the script where you define your Models/Views.
At this point your scripts section should look something like this:
<!-- dependencies -->
<script src="/media/scripts/lib/jquery.js"></script>
<script src="/media/scripts/lib/underscore.js"></script>
<script src="/media/scripts/lib/backbone.js"></script>
<!-- etch -->
<script src="/media/scripts/etch/scripts/etch.js"></script>
<!-- Your code -->
<script src="/media/scripts/article.js"></script>
Ensure that your scripts are in the right order or everything will likely be broken.
Also you need to add etch.css to your stylesheets
<link rel="stylesheet" href="/media/scripts/etch/styles/etch.css" />
This part is simple, we just define a model and give it a url and some defaults. Your model will probably end up being more complex but this is all it takes to get Etch working.
var article = Backbone.Model.extend({
url: '/some/api/url/',
defaults: {
title: 'Default Title',
body: 'Default body text'
}
});
Basically all we need to do is call etch.editableInit
when a user clicks (mousedown) on an editable element. Because of how backbone delegates events we need to call an intermediate function, editableClick
, which references etch.editableInit
.
var articleView = Backbone.View.extend({
events: {
'mousedown .editable': 'editableClick'
},
editableClick: etch.editableInit
});
etch.editableInit handles everything else for you except for saving. Etch will trigger a 'save' event on your model when the save button is clicked. All we need to do is listen for it by adding a binding to the view like so:
var articleView = Backbone.View.extend({
initialize: function() {
_.bindAll(this, 'save');
this.model.bind('save', this.model.save);
},
events: {
'mousedown .editable': 'editableClick'
},
editableClick: etch.editableInit
});
You may have noticed that the demo had different buttons in the editor widget depending on if you were editing the body or the title. Etch allows you to customize which buttons to show on a given 'editable' by adding a data-button-class
attribute to the element.
The default classes are:
etch.config.buttonClasses = {
'default': ['save'],
'all': ['bold', 'italic', 'underline', 'unordered-list', 'ordered-list', 'link', 'clear-formatting', 'save'],
'title': ['bold', 'italic', 'underline', 'save']
};
The 'default' button class will be used if no button class is defined on the element.
Defining your own button classes can be accomplished by extending etch.config.buttonClasses
. Here we override 'default' to add more buttons and add a 'caption' class.
_.extend(etch.config.buttonClasses, {
'default': ['bold', 'italic', 'underline', 'save'],
'caption': ['bold', 'italic', 'underline', 'link', 'save']
});
The order of buttons in the array is how they will be presented in the editor widget.
If the class '.editable' causes conflicts for you or you need to change it for any reason you can do so by setting etch.config.selector
.
etch.config.selector = '.my-new-editable-class';
All functions are public and can be overridden to customize functionality
For instance, if you want to create a custom popup for the link url prompt:
etch.views.Editor.prototype.urlPrompt = function(callback) {
// Custom popup code to get url
callback(url)
}
FAQs
Etch is a content editor built on Backbone.js and is designed to be easily plugged into your Backbone app or stand alone.
The npm package etch-backbone receives a total of 6 weekly downloads. As such, etch-backbone popularity was classified as not popular.
We found that etch-backbone demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.