mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
983110d931
no issue - add eslint-plugin-ember, configure no-old-shims rule - run `eslint --fix` on `app`, `lib`, `mirage`, and `tests` to move imports to the new module imports - further cleanup of Ember globals usage - remove event-dispatcher initializer now that `canDispatchToEventManager` is deprecated
83 lines
2.7 KiB
JavaScript
83 lines
2.7 KiB
JavaScript
import Component from '@ember/component';
|
|
import calculatePosition from 'ember-basic-dropdown/utils/calculate-position';
|
|
import {computed} from '@ember/object';
|
|
import {htmlSafe} from '@ember/string';
|
|
import {inject as injectService} from '@ember/service';
|
|
|
|
export default Component.extend({
|
|
config: injectService(),
|
|
feature: injectService(),
|
|
ghostPaths: injectService(),
|
|
routing: injectService('-routing'),
|
|
session: injectService(),
|
|
ui: injectService(),
|
|
|
|
tagName: 'nav',
|
|
classNames: ['gh-nav'],
|
|
classNameBindings: ['open'],
|
|
|
|
open: false,
|
|
iconStyle: '',
|
|
|
|
// the menu has a rendering issue (#8307) when the the world is reloaded
|
|
// during an import which we have worked around by not binding the icon
|
|
// style directly. However we still need to keep track of changing icons
|
|
// so that we can refresh when a new icon is uploaded
|
|
didReceiveAttrs() {
|
|
this._setIconStyle();
|
|
},
|
|
|
|
mouseEnter() {
|
|
this.sendAction('onMouseEnter');
|
|
},
|
|
|
|
showMenuExtension: computed('config.clientExtensions.menu', 'session.user.isOwner', function() {
|
|
return this.get('config.clientExtensions.menu') && this.get('session.user.isOwner');
|
|
}),
|
|
|
|
showDropdownExtension: computed('config.clientExtensions.dropdown', 'session.user.isOwner', function() {
|
|
return this.get('config.clientExtensions.dropdown') && this.get('session.user.isOwner');
|
|
}),
|
|
|
|
showScriptExtension: computed('config.clientExtensions.script', 'session.user.isOwner', function() {
|
|
return this.get('config.clientExtensions.script') && this.get('session.user.isOwner');
|
|
}),
|
|
|
|
// equivalent to "left: auto; right: -20px"
|
|
userDropdownPosition(trigger, dropdown) {
|
|
let {horizontalPosition, verticalPosition, style} = calculatePosition(...arguments);
|
|
let {width: dropdownWidth} = dropdown.firstElementChild.getBoundingClientRect();
|
|
|
|
style.right += (dropdownWidth - 20);
|
|
style['z-index'] = 1100;
|
|
|
|
return {horizontalPosition, verticalPosition, style};
|
|
},
|
|
|
|
_setIconStyle() {
|
|
let icon = this.get('icon');
|
|
|
|
if (icon === this._icon) {
|
|
return;
|
|
}
|
|
|
|
let subdirRegExp = new RegExp(`^${this.get('ghostPaths.subdir')}`);
|
|
let blogIcon = icon ? icon : 'favicon.ico';
|
|
let iconUrl;
|
|
|
|
blogIcon = blogIcon.replace(subdirRegExp, '');
|
|
|
|
iconUrl = this.get('ghostPaths.url').join(this.get('config.blogUrl'), blogIcon).replace(/\/$/, '');
|
|
iconUrl += `?t=${(new Date()).valueOf()}`;
|
|
|
|
this.set('iconStyle', htmlSafe(`background-image: url(${iconUrl})`));
|
|
this._icon = icon;
|
|
},
|
|
|
|
actions: {
|
|
showMarkdownHelp() {
|
|
this.sendAction('showMarkdownHelp');
|
|
}
|
|
}
|
|
});
|