An entity that is a valid pattern recognized by a matcher. MatcherPattern is used by ~Matcher to recognize
if a view element fits in a group of view elements described by the pattern.
MatcherPattern can be given as a String, a RegExp, an Object or a Function.
If MatcherPattern is given as a String or RegExp, it will match any view element that has a matching name:
// Match any element with name equal to 'div'. constpattern = 'div';
// Match any element which name starts on 'p'. constpattern = /^p/;
If MatcherPattern is given as an Object, all the object's properties will be matched with view element properties.
If the view element does not meet all of the object's pattern properties, the match will not happen.
Available Object matching properties:
Matching view element:
// Match view element's name using String: constpattern = { name:'p' };
// or by providing RegExp: constpattern = { name: /^(ul|ol)$/ };
// The name can also be skipped to match any view element with matching attributes: constpattern = { attributes: { 'title':true } };
Matching view element attributes:
// Match view element with any attribute value. constpattern = { name:'p', attributes:true };
// Match view element which has matching attributes (String). constpattern = { name:'figure', attributes:'title'// Match title attribute (can be empty). };
// Match view element which has matching attributes (RegExp). constpattern = { name:'figure', attributes: /^data-.*$/// Match attributes starting with `data-` e.g. `data-foo` with any value (can be empty). };
// Match view element which has matching attributes (Object). constpattern = { name:'figure', attributes: { title:'foobar', // Match `title` attribute with 'foobar' value. alt:true, // Match `alt` attribute with any value (can be empty). 'data-type': /^(jpg|png)$/// Match `data-type` attribute with `jpg` or `png` value. } };
// Match view element which has matching attributes (Array). constpattern = { name:'figure', attributes: [ 'title', // Match `title` attribute (can be empty). /^data-*$/// Match attributes starting with `data-` e.g. `data-foo` with any value (can be empty). ] };
// Match view element which has matching attributes (key-value pairs). constpattern = { name:'input', attributes: [ { key:'type', // Match `type` as an attribute key. value: /^(text|number|date)$/// Match `text`, `number` or `date` values. }, { key: /^data-.*$/, // Match attributes starting with `data-` e.g. `data-foo`. value:true// Match any value (can be empty). } ] };
Matching view element styles:
// Match view element with any style. constpattern = { name:'p', styles:true };
// Match view element which has matching styles (String). constpattern = { name:'p', styles:'color'// Match attributes with `color` style. };
// Match view element which has matching styles (RegExp). constpattern = { name:'p', styles: /^border.*$/// Match view element with any border style. };
// Match view element which has matching styles (Object). constpattern = { name:'p', styles: { color: /rgb\((\d{1,3}), (\d{1,3}), (\d{1,3})\)/, // Match `color` in RGB format only. 'font-weight':600, // Match `font-weight` only if it's `600`. 'text-decoration':true// Match any text decoration. } };
// Match view element which has matching styles (Array). constpattern = { name:'p', styles: [ 'color', // Match `color` with any value. /^border.*$/// Match all border properties. ] };
// Match view element which has matching styles (key-value pairs). constpattern = { name:'p', styles: [ { key:'color', // Match `color` as an property key. value: /rgb\((\d{1,3}), (\d{1,3}), (\d{1,3})\)/// Match RGB format only. }, { key: /^border.*$/, // Match any border style. value:true// Match any value. } ] };
Matching view element classes:
// Match view element with any class. constpattern = { name:'p', classes:true };
// Match view element which has matching class (String). constpattern = { name:'p', classes:'highlighted'// Match `highlighted` class. };
// Match view element which has matching classes (RegExp). constpattern = { name:'figure', classes: /^image-side-(left|right)$/// Match `image-side-left` or `image-side-right` class. };
// Match view element which has matching classes (Object). constpattern = { name:'p', classes: { highlighted:true, // Match `highlighted` class. marker:true// Match `marker` class. } };
// Match view element which has matching classes (Array). constpattern = { name:'figure', classes: [ 'image', // Match `image` class. /^image-side-(left|right)$/// Match `image-side-left` or `image-side-right` class. ] };
// Match view element which has matching classes (key-value pairs). constpattern = { name:'figure', classes: [ { key:'image', // Match `image` class. value:true }, { key: /^image-side-(left|right)$/, // Match `image-side-left` or `image-side-right` class. value:true } ] };
Pattern can combine multiple properties allowing for more complex view element matching:
If MatcherPattern is given as a Function, the function takes a view element as a first and only parameter and
the function should decide whether that element matches. If so, it should return what part of the view element has been matched.
Otherwise, the function should return null. The returned result will be included in match property of the object
returned by ~Matcher#match call.
// Match an empty <div> element. constpattern = element=> { if ( element.name == 'div' && element.childCount > 0 ) { // Return which part of the element was matched. return { name:true }; }
returnnull; };
// Match a <p> element with big font ("heading-like" element). constpattern = element=> { if ( element.name == 'p' ) { constfontSize = element.getStyle( 'font-size' ); constsize = fontSize.match( /(\d+)/px );
MatcherPattern is defined in a way that it is a superset of module:engine/view/elementdefinition~ViewElementDefinition,
that is, every ElementDefinition also can be used as a MatcherPattern.
An entity that is a valid pattern recognized by a matcher.
MatcherPatternis used by ~Matcher to recognize if a view element fits in a group of view elements described by the pattern.MatcherPatterncan be given as aString, aRegExp, anObjector aFunction.If
MatcherPatternis given as aStringorRegExp, it will match any view element that has a matching name:If
MatcherPatternis given as anObject, all the object's properties will be matched with view element properties. If the view element does not meet all of the object's pattern properties, the match will not happen. AvailableObjectmatching properties:Matching view element:
Matching view element attributes:
Matching view element styles:
Matching view element classes:
Pattern can combine multiple properties allowing for more complex view element matching:
If
MatcherPatternis given as aFunction, the function takes a view element as a first and only parameter and the function should decide whether that element matches. If so, it should return what part of the view element has been matched. Otherwise, the function should returnnull. The returned result will be included inmatchproperty of the object returned by ~Matcher#match call.MatcherPatternis defined in a way that it is a superset of module:engine/view/elementdefinition~ViewElementDefinition, that is, everyElementDefinitionalso can be used as aMatcherPattern.