123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417 |
- ace.define("ace/ext/searchbox",["require","exports","module","ace/lib/dom","ace/lib/lang","ace/lib/event","ace/keyboard/hash_handler","ace/lib/keys"], function(require, exports, module) {
- "use strict";
- var dom = require("../lib/dom");
- var lang = require("../lib/lang");
- var event = require("../lib/event");
- var searchboxCss = "\
- .ace_search {\
- background-color: #ddd;\
- border: 1px solid #cbcbcb;\
- border-top: 0 none;\
- max-width: 325px;\
- overflow: hidden;\
- margin: 0;\
- padding: 4px;\
- padding-right: 6px;\
- padding-bottom: 0;\
- position: absolute;\
- top: 0px;\
- z-index: 99;\
- white-space: normal;\
- }\
- .ace_search.left {\
- border-left: 0 none;\
- border-radius: 0px 0px 5px 0px;\
- left: 0;\
- }\
- .ace_search.right {\
- border-radius: 0px 0px 0px 5px;\
- border-right: 0 none;\
- right: 0;\
- }\
- .ace_search_form, .ace_replace_form {\
- border-radius: 3px;\
- border: 1px solid #cbcbcb;\
- float: left;\
- margin-bottom: 4px;\
- overflow: hidden;\
- }\
- .ace_search_form.ace_nomatch {\
- outline: 1px solid red;\
- }\
- .ace_search_field {\
- background-color: white;\
- color: black;\
- border-right: 1px solid #cbcbcb;\
- border: 0 none;\
- -webkit-box-sizing: border-box;\
- -moz-box-sizing: border-box;\
- box-sizing: border-box;\
- float: left;\
- height: 22px;\
- outline: 0;\
- padding: 0 7px;\
- width: 214px;\
- margin: 0;\
- }\
- .ace_searchbtn,\
- .ace_replacebtn {\
- background: #fff;\
- border: 0 none;\
- border-left: 1px solid #dcdcdc;\
- cursor: pointer;\
- float: left;\
- height: 22px;\
- margin: 0;\
- position: relative;\
- }\
- .ace_searchbtn:last-child,\
- .ace_replacebtn:last-child {\
- border-top-right-radius: 3px;\
- border-bottom-right-radius: 3px;\
- }\
- .ace_searchbtn:disabled {\
- background: none;\
- cursor: default;\
- }\
- .ace_searchbtn {\
- background-position: 50% 50%;\
- background-repeat: no-repeat;\
- width: 27px;\
- }\
- .ace_searchbtn.prev {\
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAFCAYAAAB4ka1VAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADFJREFUeNpiSU1NZUAC/6E0I0yACYskCpsJiySKIiY0SUZk40FyTEgCjGgKwTRAgAEAQJUIPCE+qfkAAAAASUVORK5CYII=); \
- }\
- .ace_searchbtn.next {\
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAFCAYAAAB4ka1VAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADRJREFUeNpiTE1NZQCC/0DMyIAKwGJMUAYDEo3M/s+EpvM/mkKwCQxYjIeLMaELoLMBAgwAU7UJObTKsvAAAAAASUVORK5CYII=); \
- }\
- .ace_searchbtn_close {\
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAcCAYAAABRVo5BAAAAZ0lEQVR42u2SUQrAMAhDvazn8OjZBilCkYVVxiis8H4CT0VrAJb4WHT3C5xU2a2IQZXJjiQIRMdkEoJ5Q2yMqpfDIo+XY4k6h+YXOyKqTIj5REaxloNAd0xiKmAtsTHqW8sR2W5f7gCu5nWFUpVjZwAAAABJRU5ErkJggg==) no-repeat 50% 0;\
- border-radius: 50%;\
- border: 0 none;\
- color: #656565;\
- cursor: pointer;\
- float: right;\
- font: 16px/16px Arial;\
- height: 14px;\
- margin: 5px 1px 9px 5px;\
- padding: 0;\
- text-align: center;\
- width: 14px;\
- }\
- .ace_searchbtn_close:hover {\
- background-color: #656565;\
- background-position: 50% 100%;\
- color: white;\
- }\
- .ace_replacebtn.prev {\
- width: 54px\
- }\
- .ace_replacebtn.next {\
- width: 27px\
- }\
- .ace_button {\
- margin-left: 2px;\
- cursor: pointer;\
- -webkit-user-select: none;\
- -moz-user-select: none;\
- -o-user-select: none;\
- -ms-user-select: none;\
- user-select: none;\
- overflow: hidden;\
- opacity: 0.7;\
- border: 1px solid rgba(100,100,100,0.23);\
- padding: 1px;\
- -moz-box-sizing: border-box;\
- box-sizing: border-box;\
- color: black;\
- }\
- .ace_button:hover {\
- background-color: #eee;\
- opacity:1;\
- }\
- .ace_button:active {\
- background-color: #ddd;\
- }\
- .ace_button.checked {\
- border-color: #3399ff;\
- opacity:1;\
- }\
- .ace_search_options{\
- margin-bottom: 3px;\
- text-align: right;\
- -webkit-user-select: none;\
- -moz-user-select: none;\
- -o-user-select: none;\
- -ms-user-select: none;\
- user-select: none;\
- }";
- var HashHandler = require("../keyboard/hash_handler").HashHandler;
- var keyUtil = require("../lib/keys");
- dom.importCssString(searchboxCss, "ace_searchbox");
- var html = '<div class="ace_search right">\
- <button type="button" action="hide" class="ace_searchbtn_close"></button>\
- <div class="ace_search_form">\
- <input class="ace_search_field" placeholder="Search for" spellcheck="false"></input>\
- <button type="button" action="findNext" class="ace_searchbtn next"></button>\
- <button type="button" action="findPrev" class="ace_searchbtn prev"></button>\
- <button type="button" action="findAll" class="ace_searchbtn" title="Alt-Enter">All</button>\
- </div>\
- <div class="ace_replace_form">\
- <input class="ace_search_field" placeholder="Replace with" spellcheck="false"></input>\
- <button type="button" action="replaceAndFindNext" class="ace_replacebtn">Replace</button>\
- <button type="button" action="replaceAll" class="ace_replacebtn">All</button>\
- </div>\
- <div class="ace_search_options">\
- <span action="toggleRegexpMode" class="ace_button" title="RegExp Search">.*</span>\
- <span action="toggleCaseSensitive" class="ace_button" title="CaseSensitive Search">Aa</span>\
- <span action="toggleWholeWords" class="ace_button" title="Whole Word Search">\\b</span>\
- </div>\
- </div>'.replace(/>\s+/g, ">");
- var SearchBox = function(editor, range, showReplaceForm) {
- var div = dom.createElement("div");
- div.innerHTML = html;
- this.element = div.firstChild;
- this.$init();
- this.setEditor(editor);
- };
- (function() {
- this.setEditor = function(editor) {
- editor.searchBox = this;
- editor.container.appendChild(this.element);
- this.editor = editor;
- };
- this.$initElements = function(sb) {
- this.searchBox = sb.querySelector(".ace_search_form");
- this.replaceBox = sb.querySelector(".ace_replace_form");
- this.searchOptions = sb.querySelector(".ace_search_options");
- this.regExpOption = sb.querySelector("[action=toggleRegexpMode]");
- this.caseSensitiveOption = sb.querySelector("[action=toggleCaseSensitive]");
- this.wholeWordOption = sb.querySelector("[action=toggleWholeWords]");
- this.searchInput = this.searchBox.querySelector(".ace_search_field");
- this.replaceInput = this.replaceBox.querySelector(".ace_search_field");
- };
-
- this.$init = function() {
- var sb = this.element;
-
- this.$initElements(sb);
-
- var _this = this;
- event.addListener(sb, "mousedown", function(e) {
- setTimeout(function(){
- _this.activeInput.focus();
- }, 0);
- event.stopPropagation(e);
- });
- event.addListener(sb, "click", function(e) {
- var t = e.target || e.srcElement;
- var action = t.getAttribute("action");
- if (action && _this[action])
- _this[action]();
- else if (_this.$searchBarKb.commands[action])
- _this.$searchBarKb.commands[action].exec(_this);
- event.stopPropagation(e);
- });
- event.addCommandKeyListener(sb, function(e, hashId, keyCode) {
- var keyString = keyUtil.keyCodeToString(keyCode);
- var command = _this.$searchBarKb.findKeyCommand(hashId, keyString);
- if (command && command.exec) {
- command.exec(_this);
- event.stopEvent(e);
- }
- });
- this.$onChange = lang.delayedCall(function() {
- _this.find(false, false);
- });
- event.addListener(this.searchInput, "input", function() {
- _this.$onChange.schedule(20);
- });
- event.addListener(this.searchInput, "focus", function() {
- _this.activeInput = _this.searchInput;
- _this.searchInput.value && _this.highlight();
- });
- event.addListener(this.replaceInput, "focus", function() {
- _this.activeInput = _this.replaceInput;
- _this.searchInput.value && _this.highlight();
- });
- };
- this.$closeSearchBarKb = new HashHandler([{
- bindKey: "Esc",
- name: "closeSearchBar",
- exec: function(editor) {
- editor.searchBox.hide();
- }
- }]);
- this.$searchBarKb = new HashHandler();
- this.$searchBarKb.bindKeys({
- "Ctrl-f|Command-f": function(sb) {
- var isReplace = sb.isReplace = !sb.isReplace;
- sb.replaceBox.style.display = isReplace ? "" : "none";
- sb.searchInput.focus();
- },
- "Ctrl-H|Command-Option-F": function(sb) {
- sb.replaceBox.style.display = "";
- sb.replaceInput.focus();
- },
- "Ctrl-G|Command-G": function(sb) {
- sb.findNext();
- },
- "Ctrl-Shift-G|Command-Shift-G": function(sb) {
- sb.findPrev();
- },
- "esc": function(sb) {
- setTimeout(function() { sb.hide();});
- },
- "Return": function(sb) {
- if (sb.activeInput == sb.replaceInput)
- sb.replace();
- sb.findNext();
- },
- "Shift-Return": function(sb) {
- if (sb.activeInput == sb.replaceInput)
- sb.replace();
- sb.findPrev();
- },
- "Alt-Return": function(sb) {
- if (sb.activeInput == sb.replaceInput)
- sb.replaceAll();
- sb.findAll();
- },
- "Tab": function(sb) {
- (sb.activeInput == sb.replaceInput ? sb.searchInput : sb.replaceInput).focus();
- }
- });
- this.$searchBarKb.addCommands([{
- name: "toggleRegexpMode",
- bindKey: {win: "Alt-R|Alt-/", mac: "Ctrl-Alt-R|Ctrl-Alt-/"},
- exec: function(sb) {
- sb.regExpOption.checked = !sb.regExpOption.checked;
- sb.$syncOptions();
- }
- }, {
- name: "toggleCaseSensitive",
- bindKey: {win: "Alt-C|Alt-I", mac: "Ctrl-Alt-R|Ctrl-Alt-I"},
- exec: function(sb) {
- sb.caseSensitiveOption.checked = !sb.caseSensitiveOption.checked;
- sb.$syncOptions();
- }
- }, {
- name: "toggleWholeWords",
- bindKey: {win: "Alt-B|Alt-W", mac: "Ctrl-Alt-B|Ctrl-Alt-W"},
- exec: function(sb) {
- sb.wholeWordOption.checked = !sb.wholeWordOption.checked;
- sb.$syncOptions();
- }
- }]);
- this.$syncOptions = function() {
- dom.setCssClass(this.regExpOption, "checked", this.regExpOption.checked);
- dom.setCssClass(this.wholeWordOption, "checked", this.wholeWordOption.checked);
- dom.setCssClass(this.caseSensitiveOption, "checked", this.caseSensitiveOption.checked);
- this.find(false, false);
- };
- this.highlight = function(re) {
- this.editor.session.highlight(re || this.editor.$search.$options.re);
- this.editor.renderer.updateBackMarkers()
- };
- this.find = function(skipCurrent, backwards, preventScroll) {
- var range = this.editor.find(this.searchInput.value, {
- skipCurrent: skipCurrent,
- backwards: backwards,
- wrap: true,
- regExp: this.regExpOption.checked,
- caseSensitive: this.caseSensitiveOption.checked,
- wholeWord: this.wholeWordOption.checked,
- preventScroll: preventScroll
- });
- var noMatch = !range && this.searchInput.value;
- dom.setCssClass(this.searchBox, "ace_nomatch", noMatch);
- this.editor._emit("findSearchBox", { match: !noMatch });
- this.highlight();
- };
- this.findNext = function() {
- this.find(true, false);
- };
- this.findPrev = function() {
- this.find(true, true);
- };
- this.findAll = function(){
- var range = this.editor.findAll(this.searchInput.value, {
- regExp: this.regExpOption.checked,
- caseSensitive: this.caseSensitiveOption.checked,
- wholeWord: this.wholeWordOption.checked
- });
- var noMatch = !range && this.searchInput.value;
- dom.setCssClass(this.searchBox, "ace_nomatch", noMatch);
- this.editor._emit("findSearchBox", { match: !noMatch });
- this.highlight();
- this.hide();
- };
- this.replace = function() {
- if (!this.editor.getReadOnly())
- this.editor.replace(this.replaceInput.value);
- };
- this.replaceAndFindNext = function() {
- if (!this.editor.getReadOnly()) {
- this.editor.replace(this.replaceInput.value);
- this.findNext()
- }
- };
- this.replaceAll = function() {
- if (!this.editor.getReadOnly())
- this.editor.replaceAll(this.replaceInput.value);
- };
- this.hide = function() {
- this.element.style.display = "none";
- this.editor.keyBinding.removeKeyboardHandler(this.$closeSearchBarKb);
- this.editor.focus();
- };
- this.show = function(value, isReplace) {
- this.element.style.display = "";
- this.replaceBox.style.display = isReplace ? "" : "none";
- this.isReplace = isReplace;
- if (value)
- this.searchInput.value = value;
-
- this.find(false, false, true);
-
- this.searchInput.focus();
- this.searchInput.select();
- this.editor.keyBinding.addKeyboardHandler(this.$closeSearchBarKb);
- };
- this.isFocused = function() {
- var el = document.activeElement;
- return el == this.searchInput || el == this.replaceInput;
- }
- }).call(SearchBox.prototype);
- exports.SearchBox = SearchBox;
- exports.Search = function(editor, isReplace) {
- var sb = editor.searchBox || new SearchBox(editor);
- sb.show(editor.session.getTextRange(), isReplace);
- };
- });
- (function() {
- ace.require(["ace/ext/searchbox"], function() {});
- })();
-
|