|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Espo.define('views/stream/note', 'view', function (Dep) { |
|
|
|
return Dep.extend({ |
|
|
|
messageName: null, |
|
|
|
messageTemplate: null, |
|
|
|
messageData: null, |
|
|
|
isEditable: false, |
|
|
|
isRemovable: false, |
|
|
|
isSystemAvatar: false, |
|
|
|
data: function () { |
|
return { |
|
isUserStream: this.isUserStream, |
|
noEdit: this.options.noEdit, |
|
acl: this.options.acl, |
|
onlyContent: this.options.onlyContent, |
|
avatar: this.getAvatarHtml() |
|
}; |
|
}, |
|
|
|
init: function () { |
|
this.createField('createdAt', null, null, 'views/fields/datetime-short'); |
|
this.isUserStream = this.options.isUserStream; |
|
this.isThis = !this.isUserStream; |
|
|
|
this.parentModel = this.options.parentModel; |
|
|
|
if (!this.isUserStream) { |
|
if (this.parentModel) { |
|
if ( |
|
this.parentModel.name != this.model.get('parentType') || |
|
this.parentModel.id != this.model.get('parentId') |
|
) { |
|
this.isThis = false; |
|
} |
|
} |
|
} |
|
|
|
if (this.getUser().isAdmin()) { |
|
this.isRemovable = true; |
|
} |
|
|
|
if (this.messageName && this.isThis) { |
|
this.messageName += 'This'; |
|
} |
|
|
|
if (!this.isThis) { |
|
this.createField('parent'); |
|
} |
|
|
|
this.messageData = { |
|
'user': 'field:createdBy', |
|
'entity': 'field:parent', |
|
|
|
|
|
|
|
'entityType': this.getHelper().escapeString(this.translateEntityType(this.model.get('parentType'))), |
|
}; |
|
|
|
if (!this.options.noEdit && (this.isEditable || this.isRemovable)) { |
|
this.createView('right', 'views/stream/row-actions/default', { |
|
el: this.options.el + ' .right-container', |
|
acl: this.options.acl, |
|
model: this.model, |
|
isEditable: this.isEditable, |
|
isRemovable: this.isRemovable |
|
}); |
|
} |
|
}, |
|
|
|
translateEntityType: function (entityType, isPlural) { |
|
var string; |
|
|
|
if (!isPlural) { |
|
string = (this.translate(entityType, 'scopeNames') || ''); |
|
} else { |
|
string = (this.translate(entityType, 'scopeNamesPlural') || ''); |
|
} |
|
|
|
string = string.toLowerCase(); |
|
|
|
var language = this.getPreferences().get('language') || this.getConfig().get('language'); |
|
|
|
if (~['de_DE', 'nl_NL'].indexOf(language)) { |
|
string = Espo.Utils.upperCaseFirst(string); |
|
} |
|
return string; |
|
}, |
|
|
|
createField: function (name, type, params, view, options) { |
|
type = type || this.model.getFieldType(name) || 'base'; |
|
var o = { |
|
model: this.model, |
|
defs: { |
|
name: name, |
|
params: params || {} |
|
}, |
|
el: this.options.el + ' .cell-' + name, |
|
mode: 'list' |
|
}; |
|
if (options) { |
|
for (var i in options) { |
|
o[i] = options[i]; |
|
} |
|
} |
|
this.createView(name, view || this.getFieldManager().getViewName(type), o); |
|
}, |
|
|
|
isMale: function () { |
|
return this.model.get('createdByGender') === 'Male'; |
|
}, |
|
|
|
isFemale: function () { |
|
return this.model.get('createdByGender') === 'Female'; |
|
}, |
|
|
|
createMessage: function () { |
|
if (!this.messageTemplate) { |
|
var isTranslated = false; |
|
|
|
var parentType = this.model.get('parentType'); |
|
|
|
if (this.isMale()) { |
|
this.messageTemplate = this.translate(this.messageName, 'streamMessagesMale', parentType || null) || ''; |
|
if (this.messageTemplate !== this.messageName) { |
|
isTranslated = true; |
|
} |
|
} else if (this.isFemale()) { |
|
this.messageTemplate = this.translate(this.messageName, 'streamMessagesFemale', parentType || null) || ''; |
|
if (this.messageTemplate !== this.messageName) { |
|
isTranslated = true; |
|
} |
|
} |
|
if (!isTranslated) { |
|
this.messageTemplate = this.translate(this.messageName, 'streamMessages', parentType || null) || ''; |
|
} |
|
} |
|
|
|
this.createView('message', 'views/stream/message', { |
|
messageTemplate: this.messageTemplate, |
|
el: this.options.el + ' .message', |
|
model: this.model, |
|
messageData: this.messageData |
|
}); |
|
}, |
|
|
|
getAvatarHtml: function () { |
|
var id = this.model.get('createdById'); |
|
if (this.isSystemAvatar) { |
|
id = 'system'; |
|
} |
|
return this.getHelper().getAvatarHtml(id, 'small', 20); |
|
}, |
|
|
|
getIconHtml: function (scope, id) { |
|
if (this.isThis && scope === this.parentModel.name) return; |
|
var iconClass = this.getMetadata().get(['clientDefs', scope, 'iconClass']); |
|
if (!iconClass) return; |
|
return '<span class="'+iconClass+' action text-muted icon" style="cursor: pointer;" title="'+this.translate('View')+'" data-action="quickView" data-id="'+id+'" data-scope="'+scope+'"></span>'; |
|
} |
|
|
|
}); |
|
}); |
|
|