mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
FIX: Clicking on gear icon should hide popup menu.
This commit is contained in:
parent
6e385f11b3
commit
4b557842eb
@ -366,37 +366,41 @@ export default Ember.Component.extend({
|
|||||||
this._resetUpload(true);
|
this._resetUpload(true);
|
||||||
},
|
},
|
||||||
|
|
||||||
showOptions(toolbarEvent) {
|
toggleOptions(toolbarEvent) {
|
||||||
// long term we want some smart positioning algorithm in popup-menu
|
if (this.get('optionsVisible')) {
|
||||||
// the problem is that positioning in a fixed panel is a nightmare
|
this.sendAction('hideOptions');
|
||||||
// cause offsetParent can end up returning a fixed element and then
|
} else {
|
||||||
// using offset() is not going to work, so you end up needing special logic
|
// long term we want some smart positioning algorithm in popup-menu
|
||||||
// especially since we allow for negative .top, provided there is room on screen
|
// the problem is that positioning in a fixed panel is a nightmare
|
||||||
const myPos = this.$().position();
|
// cause offsetParent can end up returning a fixed element and then
|
||||||
const buttonPos = this.$('.options').position();
|
// using offset() is not going to work, so you end up needing special logic
|
||||||
|
// especially since we allow for negative .top, provided there is room on screen
|
||||||
|
const myPos = this.$().position();
|
||||||
|
const buttonPos = this.$('.options').position();
|
||||||
|
|
||||||
const popupHeight = $('#reply-control .popup-menu').height();
|
const popupHeight = $('#reply-control .popup-menu').height();
|
||||||
const popupWidth = $('#reply-control .popup-menu').width();
|
const popupWidth = $('#reply-control .popup-menu').width();
|
||||||
|
|
||||||
var top = myPos.top + buttonPos.top - 15;
|
var top = myPos.top + buttonPos.top - 15;
|
||||||
var left = myPos.left + buttonPos.left - (popupWidth/2);
|
var left = myPos.left + buttonPos.left - (popupWidth/2);
|
||||||
|
|
||||||
const composerPos = $('#reply-control').position();
|
const composerPos = $('#reply-control').position();
|
||||||
|
|
||||||
if (composerPos.top + top - popupHeight < 0) {
|
if (composerPos.top + top - popupHeight < 0) {
|
||||||
top = top + popupHeight + this.$('.options').height() + 50;
|
top = top + popupHeight + this.$('.options').height() + 50;
|
||||||
|
}
|
||||||
|
|
||||||
|
var replyWidth = $('#reply-control').width();
|
||||||
|
if (left + popupWidth > replyWidth) {
|
||||||
|
left = replyWidth - popupWidth - 40;
|
||||||
|
}
|
||||||
|
|
||||||
|
const selected = toolbarEvent.selected;
|
||||||
|
toolbarEvent.selectText(selected.start, selected.end - selected.start);
|
||||||
|
|
||||||
|
this.sendAction('showOptions', toolbarEvent,
|
||||||
|
{ position: "absolute", left, top });
|
||||||
}
|
}
|
||||||
|
|
||||||
var replyWidth = $('#reply-control').width();
|
|
||||||
if (left + popupWidth > replyWidth) {
|
|
||||||
left = replyWidth - popupWidth - 40;
|
|
||||||
}
|
|
||||||
|
|
||||||
const selected = toolbarEvent.selected;
|
|
||||||
toolbarEvent.selectText(selected.start, selected.end - selected.start);
|
|
||||||
|
|
||||||
this.sendAction('showOptions', toolbarEvent,
|
|
||||||
{ position: "absolute", left, top });
|
|
||||||
},
|
},
|
||||||
|
|
||||||
showUploadModal(toolbarEvent) {
|
showUploadModal(toolbarEvent) {
|
||||||
@ -432,7 +436,7 @@ export default Ember.Component.extend({
|
|||||||
group: 'extras',
|
group: 'extras',
|
||||||
icon: 'gear',
|
icon: 'gear',
|
||||||
title: 'composer.options',
|
title: 'composer.options',
|
||||||
sendAction: 'showOptions'
|
sendAction: 'toggleOptions'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
markdownOptions=markdownOptions
|
markdownOptions=markdownOptions
|
||||||
extraButtons="extraButtons"
|
extraButtons="extraButtons"
|
||||||
importQuote="importQuote"
|
importQuote="importQuote"
|
||||||
showOptions="showOptions"
|
toggleOptions="toggleOptions"
|
||||||
showUploadModal="showUploadModal"
|
showUploadModal="showUploadModal"
|
||||||
togglePreview="togglePreview"
|
togglePreview="togglePreview"
|
||||||
validation=validation
|
validation=validation
|
||||||
|
@ -90,6 +90,8 @@
|
|||||||
groupsMentioned="groupsMentioned"
|
groupsMentioned="groupsMentioned"
|
||||||
importQuote="importQuote"
|
importQuote="importQuote"
|
||||||
showOptions="showOptions"
|
showOptions="showOptions"
|
||||||
|
hideOptions="hideOptions"
|
||||||
|
optionsVisible=optionsVisible
|
||||||
showToolbar=showToolbar
|
showToolbar=showToolbar
|
||||||
showUploadSelector="showUploadSelector"
|
showUploadSelector="showUploadSelector"
|
||||||
afterRefresh="afterRefresh"}}
|
afterRefresh="afterRefresh"}}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user