-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
185 additions
and
12 deletions.
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
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
139 changes: 139 additions & 0 deletions
139
packages/dmn-js-drd/src/features/search/DmnSearchProvider.js
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,139 @@ | ||
import { | ||
map, | ||
filter, | ||
sortBy | ||
} from 'min-dash'; | ||
|
||
import { | ||
getLabel | ||
} from '../label-editing/LabelUtil'; | ||
|
||
/** | ||
* @typedef {import('diagram-js/lib/core/Canvas').default} Canvas | ||
* @typedef {import('diagram-js/lib/core/ElementRegistry').default} ElementRegistry | ||
* @typedef {import('diagram-js/lib/features/search-pad/SearchPad').default} SearchPad | ||
* | ||
* @typedef {import('diagram-js/lib/features/search-pad/SearchPadProvider').default | ||
* } SearchPadProvider | ||
* @typedef {import('diagram-js/lib/features/search-pad/SearchPadProvider').SearchResult | ||
* } SearchResult | ||
*/ | ||
|
||
/** | ||
* Provides ability to search for BPMN elements. | ||
* | ||
* @implements {SearchPadProvider} | ||
* | ||
* @param {ElementRegistry} elementRegistry | ||
* @param {SearchPad} searchPad | ||
* @param {Canvas} canvas | ||
*/ | ||
export default function DmnSearchProvider(elementRegistry, searchPad, canvas) { | ||
this._elementRegistry = elementRegistry; | ||
this._canvas = canvas; | ||
|
||
searchPad.registerProvider(this); | ||
} | ||
|
||
DmnSearchProvider.$inject = [ | ||
'elementRegistry', | ||
'searchPad', | ||
'canvas' | ||
]; | ||
|
||
/** | ||
* @param {string} pattern | ||
* | ||
* @return {SearchResult[]} | ||
*/ | ||
DmnSearchProvider.prototype.find = function(pattern) { | ||
const rootElement = this._canvas.getRootElement(); | ||
|
||
let elements = this._elementRegistry.filter(function(element) { | ||
if (element.labelTarget) { | ||
return false; | ||
} | ||
return true; | ||
}); | ||
|
||
// do not include root element | ||
elements = filter(elements, function(element) { | ||
return element !== rootElement; | ||
}); | ||
|
||
elements = map(elements, function(element) { | ||
return { | ||
primaryTokens: matchAndSplit(getLabel(element), pattern), | ||
secondaryTokens: matchAndSplit(element.id, pattern), | ||
element: element | ||
}; | ||
}); | ||
|
||
// exclude non-matched elements | ||
elements = filter(elements, function(element) { | ||
return hasMatched(element.primaryTokens) || hasMatched(element.secondaryTokens); | ||
}); | ||
|
||
elements = sortBy(elements, function(element) { | ||
return getLabel(element.element) + element.element.id; | ||
}); | ||
|
||
return elements; | ||
}; | ||
|
||
/** | ||
* @param {Token[]} tokens | ||
* | ||
* @return {boolean} | ||
*/ | ||
function hasMatched(tokens) { | ||
const matched = filter(tokens, function(token) { | ||
return !!token.matched; | ||
}); | ||
|
||
return matched.length > 0; | ||
} | ||
|
||
/** | ||
* @param {string} text | ||
* @param {string} pattern | ||
* | ||
* @return {Token[]} | ||
*/ | ||
function matchAndSplit(text, pattern) { | ||
const tokens = [], | ||
originalText = text; | ||
|
||
if (!text) { | ||
return tokens; | ||
} | ||
|
||
text = text.toLowerCase(); | ||
pattern = pattern.toLowerCase(); | ||
|
||
const i = text.indexOf(pattern); | ||
|
||
if (i > -1) { | ||
if (i !== 0) { | ||
tokens.push({ | ||
normal: originalText.substr(0, i) | ||
}); | ||
} | ||
|
||
tokens.push({ | ||
matched: originalText.substr(i, pattern.length) | ||
}); | ||
|
||
if (pattern.length + i < text.length) { | ||
tokens.push({ | ||
normal: originalText.substr(pattern.length + i, text.length) | ||
}); | ||
} | ||
} else { | ||
tokens.push({ | ||
normal: originalText | ||
}); | ||
} | ||
|
||
return tokens; | ||
} |
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,12 @@ | ||
import SearchPadModule from 'diagram-js/lib/features/search-pad'; | ||
|
||
import DmnSearchProvider from './DmnSearchProvider'; | ||
|
||
|
||
export default { | ||
__depends__: [ | ||
SearchPadModule | ||
], | ||
__init__: [ 'dmnSearch' ], | ||
dmnSearch: [ 'type', DmnSearchProvider ] | ||
}; |