mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 11:54:33 +03:00
feac9682d0
- Refactor to handle deprecations including removal of all Views, ArrayControllers, and ItemControllers.
26 lines
714 B
JavaScript
26 lines
714 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Component.extend({
|
|
tagName: '',
|
|
|
|
user: null,
|
|
|
|
ghostPaths: Ember.inject.service('ghost-paths'),
|
|
|
|
userDefault: Ember.computed('ghostPaths', function () {
|
|
return this.get('ghostPaths.url').asset('/shared/img/user-image.png');
|
|
}),
|
|
|
|
userImageBackground: Ember.computed('user.image', 'userDefault', function () {
|
|
var url = this.get('user.image') || this.get('userDefault');
|
|
|
|
return `background-image: url(${url})`.htmlSafe();
|
|
}),
|
|
|
|
lastLogin: Ember.computed('user.last_login', function () {
|
|
var lastLogin = this.get('user.last_login');
|
|
|
|
return lastLogin ? lastLogin.fromNow() : '(Never)';
|
|
})
|
|
});
|