-
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trix compatibility & allow developpers to setup more replacements on create #66
Merged
Merged
Changes from 4 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
57dc957
Add support for Trix editor attributes
gael-ian b16a6e4
Simplify implementation
gael-ian 809f554
Add some documentation
gael-ian 03c5c07
Force sqlite3 version
gael-ian 08153ee
Rename Replacement constructor arguments and properties for clarity
gael-ian 59648ac
Introduce a tag argument to restrict matches
gael-ian 01b9620
Update documentation
gael-ian 388ed27
Minor fix in jest tests declaration
gael-ian File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -300,7 +300,7 @@ DEPENDENCIES | |
shakapacker (= 7.2.2) | ||
simple_form (~> 5.1) | ||
simplecov | ||
sqlite3 | ||
sqlite3 (~> 1.4) | ||
|
||
BUNDLED WITH | ||
2.5.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/** | ||
* Borrowed from Lodash | ||
* See https://lodash.com/docs/#escapeRegExp | ||
*/ | ||
const reRegExpChar = /[\\^$.*+?()[\]{}|]/g | ||
const reHasRegExpChar = RegExp(reRegExpChar.source) | ||
|
||
class Replacement { | ||
attribute | ||
|
||
constructor (attribute, name, startDelimiter, endDelimiter = null) { | ||
this.attribute = attribute | ||
|
||
this.#name = name | ||
this.#startDelimiter = startDelimiter | ||
this.#endDelimiter = endDelimiter || startDelimiter | ||
} | ||
|
||
apply (node, id) { | ||
const value = node.getAttribute(this.attribute) | ||
if (!this.#regexp.test(value)) { | ||
return | ||
} | ||
|
||
node.setAttribute(this.attribute, value.replace(this.#regexp, this.#replacement(id))) | ||
} | ||
|
||
/* Protected and private attributes and methods */ | ||
#name | ||
#startDelimiter | ||
#endDelimiter | ||
|
||
#replacement (id) { | ||
return `${this.#startDelimiter}${id}${this.#endDelimiter}$1` | ||
} | ||
|
||
get #regexp () { | ||
const escaped = this.#escape(`${this.#startDelimiter}${this.#name}${this.#endDelimiter}`) | ||
return new RegExp(`${escaped}(.*?)`, 'g') | ||
} | ||
|
||
#escape (string) { | ||
return (string && reHasRegExpChar.test(string)) | ||
? string.replace(reRegExpChar, '\\$&') | ||
: (string || '') | ||
} | ||
} | ||
|
||
export { | ||
Replacement | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't seem limited to
<trix-editor>
elements.I know
input
is a Trix specific html attribute but I'm curious if this could introduce issues with other RTEs or JS plugins which rely on that attribute for another purpose. You'd need a method to opt-out in those cases if this is going to automatically replaceinput
attribute on any html element.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're right, even if chances are small it will match with an
input
attribute on another tag and find a match with both association name and delimiters in its value and ends doing a wrong replacement.I changed the
Replacement
class to support an optionaltag
argument in its constructor to restrain matches. It should be fine now.