summaryrefslogtreecommitdiff
path: root/addons/survey/static/src/js/survey_session_text_answers.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/survey/static/src/js/survey_session_text_answers.js
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/survey/static/src/js/survey_session_text_answers.js')
-rw-r--r--addons/survey/static/src/js/survey_session_text_answers.js74
1 files changed, 74 insertions, 0 deletions
diff --git a/addons/survey/static/src/js/survey_session_text_answers.js b/addons/survey/static/src/js/survey_session_text_answers.js
new file mode 100644
index 00000000..4e669c17
--- /dev/null
+++ b/addons/survey/static/src/js/survey_session_text_answers.js
@@ -0,0 +1,74 @@
+odoo.define('survey.session_text_answers', function (require) {
+'use strict';
+
+var publicWidget = require('web.public.widget');
+var core = require('web.core');
+var time = require('web.time');
+var SESSION_CHART_COLORS = require('survey.session_colors');
+
+var QWeb = core.qweb;
+
+publicWidget.registry.SurveySessionTextAnswers = publicWidget.Widget.extend({
+ xmlDependencies: ['/survey/static/src/xml/survey_session_text_answer_template.xml'],
+ init: function (parent, options) {
+ this._super.apply(this, arguments);
+
+ this.answerIds = [];
+ this.questionType = options.questionType;
+ },
+
+ //--------------------------------------------------------------------------
+ // Public
+ //--------------------------------------------------------------------------
+
+ /**
+ * Adds the attendees answers on the screen.
+ * This is used for char_box/date and datetime questions.
+ *
+ * We use some tricks with jQuery for wow effect:
+ * - force a width on the external div container, to reserve space for that answer
+ * - set the actual width of the answer, and enable a css width animation
+ * - set the opacity to 1, and enable a css opacity animation
+ *
+ * @param {Array} inputLineValues array of survey.user_input.line records in the form
+ * {id: line.id, value: line.[value_char_box/value_date/value_datetime]}
+ */
+ updateTextAnswers: function (inputLineValues) {
+ var self = this;
+
+ inputLineValues.forEach(function (inputLineValue) {
+ if (!self.answerIds.includes(inputLineValue.id) && inputLineValue.value) {
+ var textValue = inputLineValue.value;
+ if (self.questionType === 'char_box') {
+ textValue = textValue.length > 25 ?
+ textValue.substring(0, 22) + '...' :
+ textValue;
+ } else if (self.questionType === 'date') {
+ textValue = moment(textValue).format(time.getLangDateFormat());
+ } else if (self.questionType === 'datetime') {
+ textValue = moment(textValue).format(time.getLangDatetimeFormat());
+ }
+
+ var $textAnswer = $(QWeb.render('survey.survey_session_text_answer', {
+ value: textValue,
+ borderColor: `rgb(${SESSION_CHART_COLORS[self.answerIds.length % 10]})`
+ }));
+ self.$el.append($textAnswer);
+ var spanWidth = $textAnswer.find('span').width();
+ var calculatedWidth = `calc(${spanWidth}px + 1.2rem)`;
+ $textAnswer.css('width', calculatedWidth);
+ setTimeout(function () {
+ // setTimeout to force jQuery rendering
+ $textAnswer.find('.o_survey_session_text_answer_container')
+ .css('width', calculatedWidth)
+ .css('opacity', '1');
+ }, 1);
+ self.answerIds.push(inputLineValue.id);
+ }
+ });
+ },
+});
+
+return publicWidget.registry.SurveySessionTextAnswers;
+
+});