2018-05-03 12:29:05 -04:00
|
|
|
define ["base"], (App) ->
|
|
|
|
App.component "spellMenu", {
|
|
|
|
bindings: {
|
|
|
|
open: "<"
|
|
|
|
top: "<"
|
|
|
|
left: "<"
|
2018-05-04 10:30:06 -04:00
|
|
|
highlight: "<"
|
2018-05-03 12:29:05 -04:00
|
|
|
replaceWord: "&"
|
|
|
|
learnWord: "&"
|
|
|
|
}
|
|
|
|
template: """
|
|
|
|
<div
|
|
|
|
class="dropdown context-menu spell-check-menu"
|
|
|
|
ng-show="$ctrl.open"
|
|
|
|
ng-style="{top: $ctrl.top, left: $ctrl.left}"
|
|
|
|
ng-class="{open: $ctrl.open}"
|
|
|
|
>
|
|
|
|
<ul class="dropdown-menu">
|
2018-05-04 10:30:06 -04:00
|
|
|
<li ng-repeat="suggestion in $ctrl.highlight.suggestions | limitTo:8">
|
|
|
|
<a
|
|
|
|
href
|
|
|
|
ng-click="$ctrl.replaceWord({ highlight: $ctrl.highlight, suggestion: suggestion })"
|
|
|
|
>
|
|
|
|
{{ suggestion }}
|
|
|
|
</a>
|
2018-05-03 12:29:05 -04:00
|
|
|
</li>
|
|
|
|
<li class="divider"></li>
|
|
|
|
<li>
|
2018-05-04 10:30:06 -04:00
|
|
|
<a href ng-click="$ctrl.learnWord({ highlight: $ctrl.highlight })">Add to Dictionary</a>
|
2018-05-03 12:29:05 -04:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
"""
|
|
|
|
}
|