summaryrefslogtreecommitdiff
path: root/addons/mail/static/src/js/basic_view.js
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/mail/static/src/js/basic_view.js
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/mail/static/src/js/basic_view.js')
-rw-r--r--addons/mail/static/src/js/basic_view.js68
1 files changed, 68 insertions, 0 deletions
diff --git a/addons/mail/static/src/js/basic_view.js b/addons/mail/static/src/js/basic_view.js
new file mode 100644
index 00000000..4c5c9a12
--- /dev/null
+++ b/addons/mail/static/src/js/basic_view.js
@@ -0,0 +1,68 @@
+odoo.define('mail.BasicView', function (require) {
+"use strict";
+
+const BasicView = require('web.BasicView');
+
+const mailWidgets = ['kanban_activity'];
+
+BasicView.include({
+ init: function () {
+ this._super.apply(this, arguments);
+ const post_refresh = this._getFieldOption('message_ids', 'post_refresh', false);
+ const followers_post_refresh = this._getFieldOption('message_follower_ids', 'post_refresh', false);
+ this.chatterFields = {
+ hasActivityIds: this._hasField('activity_ids'),
+ hasMessageFollowerIds: this._hasField('message_follower_ids'),
+ hasMessageIds: this._hasField('message_ids'),
+ hasRecordReloadOnAttachmentsChanged: post_refresh === 'always',
+ hasRecordReloadOnMessagePosted: !!post_refresh,
+ hasRecordReloadOnFollowersUpdate: !!followers_post_refresh,
+ isAttachmentBoxVisibleInitially: (
+ this._getFieldOption('message_ids', 'open_attachments', false) ||
+ this._getFieldOption('message_follower_ids', 'open_attachments', false)
+ ),
+ };
+ const fieldsInfo = this.fieldsInfo[this.viewType];
+ this.rendererParams.chatterFields = this.chatterFields;
+
+ // LEGACY for widget kanban_activity
+ this.mailFields = {};
+ for (const fieldName in fieldsInfo) {
+ const fieldInfo = fieldsInfo[fieldName];
+ if (_.contains(mailWidgets, fieldInfo.widget)) {
+ this.mailFields[fieldInfo.widget] = fieldName;
+ fieldInfo.__no_fetch = true;
+ }
+ }
+ this.rendererParams.activeActions = this.controllerParams.activeActions;
+ this.rendererParams.mailFields = this.mailFields;
+ },
+ /**
+ * Gets the option value of a field if present.
+ *
+ * @private
+ * @param {string} fieldName the desired field name
+ * @param {string} optionName the desired option name
+ * @param {*} defaultValue the default value if option or field is not found.
+ * @returns {*}
+ */
+ _getFieldOption(fieldName, optionName, defaultValue) {
+ const field = this.fieldsInfo[this.viewType][fieldName];
+ if (field && field.options && field.options[optionName] !== undefined) {
+ return field.options[optionName];
+ }
+ return defaultValue;
+ },
+ /**
+ * Checks whether the view has a given field.
+ *
+ * @private
+ * @param {string} fieldName the desired field name
+ * @returns {boolean}
+ */
+ _hasField(fieldName) {
+ return !!this.fieldsInfo[this.viewType][fieldName];
+ },
+});
+
+});