FEATURE: use `a` when search result is focused to add to composer
This commit is contained in:
parent
d29fc781fb
commit
dc4d5677eb
|
@ -259,7 +259,7 @@ export default Ember.Component.extend({
|
||||||
|
|
||||||
if (this.get('composerEvents')) {
|
if (this.get('composerEvents')) {
|
||||||
this.appEvents.on('composer:insert-block', text => this._addBlock(this._getSelected(), text));
|
this.appEvents.on('composer:insert-block', text => this._addBlock(this._getSelected(), text));
|
||||||
this.appEvents.on('composer:insert-text', text => this._addText(this._getSelected(), text));
|
this.appEvents.on('composer:insert-text', (text, options) => this._addText(this._getSelected(), text, options));
|
||||||
this.appEvents.on('composer:replace-text', (oldVal, newVal) => this._replaceText(oldVal, newVal));
|
this.appEvents.on('composer:replace-text', (oldVal, newVal) => this._replaceText(oldVal, newVal));
|
||||||
}
|
}
|
||||||
this._mouseTrap = mouseTrap;
|
this._mouseTrap = mouseTrap;
|
||||||
|
@ -613,8 +613,22 @@ export default Ember.Component.extend({
|
||||||
Ember.run.scheduleOnce("afterRender", () => $textarea.focus());
|
Ember.run.scheduleOnce("afterRender", () => $textarea.focus());
|
||||||
},
|
},
|
||||||
|
|
||||||
_addText(sel, text) {
|
_addText(sel, text, options) {
|
||||||
const $textarea = this.$('textarea.d-editor-input');
|
const $textarea = this.$('textarea.d-editor-input');
|
||||||
|
|
||||||
|
if (options && options.ensureSpace) {
|
||||||
|
if ((sel.pre + '').length > 0) {
|
||||||
|
if (!sel.pre.match(/\s$/)) {
|
||||||
|
text = ' ' + text;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if ((sel.post + '').length > 0) {
|
||||||
|
if (!sel.post.match(/^\s/)) {
|
||||||
|
text = text + ' ';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const insert = `${sel.pre}${text}`;
|
const insert = `${sel.pre}${text}`;
|
||||||
const value = `${insert}${sel.post}`;
|
const value = `${insert}${sel.post}`;
|
||||||
this.set('value', value);
|
this.set('value', value);
|
||||||
|
|
|
@ -21,17 +21,12 @@ function createSearchResult({ type, linkField, builder }) {
|
||||||
return createWidget(`search-result-${type}`, {
|
return createWidget(`search-result-${type}`, {
|
||||||
html(attrs) {
|
html(attrs) {
|
||||||
|
|
||||||
let i=-1;
|
|
||||||
|
|
||||||
return attrs.results.map(r => {
|
return attrs.results.map(r => {
|
||||||
i+=1;
|
|
||||||
let searchResultId;
|
let searchResultId;
|
||||||
if (type === "topic") {
|
if (type === "topic") {
|
||||||
searchResultId = r.get('topic_id');
|
searchResultId = r.get('topic_id');
|
||||||
}
|
}
|
||||||
let className = i === attrs.selected ? '.selected' : '';
|
return h('li', this.attach('link', {
|
||||||
|
|
||||||
return h('li' + className, { attributes: { tabindex: '-1' } }, this.attach('link', {
|
|
||||||
href: r.get(linkField),
|
href: r.get(linkField),
|
||||||
contents: () => builder.call(this, r, attrs.term),
|
contents: () => builder.call(this, r, attrs.term),
|
||||||
className: 'search-link',
|
className: 'search-link',
|
||||||
|
@ -131,8 +126,7 @@ createWidget('search-menu-results', {
|
||||||
searchContextEnabled: attrs.searchContextEnabled,
|
searchContextEnabled: attrs.searchContextEnabled,
|
||||||
searchLogId: attrs.results.grouped_search_result.search_log_id,
|
searchLogId: attrs.results.grouped_search_result.search_log_id,
|
||||||
results: rt.results,
|
results: rt.results,
|
||||||
term: attrs.term,
|
term: attrs.term
|
||||||
selected: (attrs.selected && attrs.selected.type === rt.type) ? attrs.selected.index : -1
|
|
||||||
})),
|
})),
|
||||||
h('div.no-results', more)
|
h('div.no-results', more)
|
||||||
];
|
];
|
||||||
|
|
|
@ -9,8 +9,7 @@ const searchData = {
|
||||||
noResults: false,
|
noResults: false,
|
||||||
term: undefined,
|
term: undefined,
|
||||||
typeFilter: null,
|
typeFilter: null,
|
||||||
invalidTerm: false,
|
invalidTerm: false
|
||||||
selected: null
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Helps with debouncing and cancelling promises
|
// Helps with debouncing and cancelling promises
|
||||||
|
@ -134,7 +133,6 @@ export default createWidget('search-menu', {
|
||||||
results: searchData.results,
|
results: searchData.results,
|
||||||
invalidTerm: searchData.invalidTerm,
|
invalidTerm: searchData.invalidTerm,
|
||||||
searchContextEnabled: searchData.contextEnabled,
|
searchContextEnabled: searchData.contextEnabled,
|
||||||
selected: searchData.selected
|
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -176,76 +174,67 @@ export default createWidget('search-menu', {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (e.which === 13 /*enter*/ && searchData.selected) {
|
if (e.which === 65 /* a */) {
|
||||||
searchData.selected = null;
|
let focused = $('header .results .search-link:focus');
|
||||||
$('header .results li.selected a').click();
|
if (focused.length === 1) {
|
||||||
|
if ($('#reply-control.open').length === 1) {
|
||||||
|
// add a link and focus composer
|
||||||
|
|
||||||
|
this.appEvents.trigger('composer:insert-text', focused[0].href, {ensureSpace: true});
|
||||||
|
|
||||||
|
e.preventDefault();
|
||||||
|
$('#reply-control.open textarea').focus();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (e.which === 38 /*arrow up*/ || e.which === 40 /*arrow down*/) {
|
const up = e.which === 38;
|
||||||
this.moveSelected(e.which === 38 ? -1 : 1);
|
const down = e.which === 40;
|
||||||
|
if (up || down) {
|
||||||
|
|
||||||
this.scheduleRerender();
|
let focused = $('header .panel-body *:focus')[0];
|
||||||
|
|
||||||
Em.run.next(()=>{
|
if (!focused) {
|
||||||
if (searchData.selected) {
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// so we do not clear selected
|
let links = $('header .panel-body .results a');
|
||||||
$('header .results li').off('blur');
|
let results = $('header .panel-body .results .search-link');
|
||||||
|
|
||||||
let selected = $('header .results li.selected')
|
let prevResult;
|
||||||
.focus()
|
let result;
|
||||||
.on('blur', ()=> {
|
|
||||||
searchData.selected = null;
|
|
||||||
this.scheduleRerender();
|
|
||||||
selected.off('blur');
|
|
||||||
});
|
|
||||||
|
|
||||||
} else {
|
links.each((idx,item) => {
|
||||||
$('#search-term').focus();
|
if ($(item).hasClass('search-link')) {
|
||||||
}
|
prevResult = item;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (item === focused) {
|
||||||
|
result = prevResult;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
let index = -1;
|
||||||
|
|
||||||
|
if (result) {
|
||||||
|
index = results.index(result);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (index === -1 && down) {
|
||||||
|
$('header .panel-body .search-link:first').focus();
|
||||||
|
} else if (index > -1) {
|
||||||
|
index += (down ? 1 : -1);
|
||||||
|
if (index >= 0 && index < results.length) {
|
||||||
|
$(results[index]).focus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
moveSelected(offset) {
|
|
||||||
|
|
||||||
if (offset === 1 && !searchData.selected) {
|
|
||||||
searchData.selected = {type: searchData.results.resultTypes[0].type, index: 0};
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!searchData.selected) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
let typeIndex = _.findIndex(searchData.results.resultTypes, item => item.type === searchData.selected.type);
|
|
||||||
|
|
||||||
if (typeIndex === 0 && searchData.selected.index === 0 && offset === -1) {
|
|
||||||
searchData.selected = null;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
let currentResults = searchData.results.resultTypes[typeIndex].results;
|
|
||||||
let newPosition = searchData.selected.index + offset;
|
|
||||||
|
|
||||||
if (newPosition < currentResults.length && newPosition >= 0) {
|
|
||||||
searchData.selected.index = newPosition;
|
|
||||||
} else {
|
|
||||||
// possibly move to next type
|
|
||||||
let newTypeIndex = typeIndex + offset;
|
|
||||||
if (newTypeIndex >= 0 && newTypeIndex < searchData.results.resultTypes.length) {
|
|
||||||
newPosition = 0;
|
|
||||||
if (offset === -1) {
|
|
||||||
newPosition = searchData.results.resultTypes[newTypeIndex].results.length - 1;
|
|
||||||
}
|
|
||||||
searchData.selected = {type: searchData.results.resultTypes[newTypeIndex].type, index: newPosition};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
triggerSearch() {
|
triggerSearch() {
|
||||||
searchData.noResults = false;
|
searchData.noResults = false;
|
||||||
this.searchService().set('highlightTerm', searchData.term);
|
this.searchService().set('highlightTerm', searchData.term);
|
||||||
|
|
|
@ -149,12 +149,6 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
li.selected {
|
|
||||||
background-color: $highlight-medium;
|
|
||||||
}
|
|
||||||
li:focus {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
.filter {
|
.filter {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
&:hover {background: transparent;}
|
&:hover {background: transparent;}
|
||||||
|
|
Loading…
Reference in New Issue