forms/src/mixins/QuestionMixin.js
Jonas Rittershofer 52825c73ec Provide DBs max string lengths as InitialState
Signed-off-by: Jonas Rittershofer <jotoeri@users.noreply.github.com>
2020-05-04 10:29:11 +02:00

122 lines
2.3 KiB
JavaScript

/**
* @copyright Copyright (c) 2020 John Molakvoæ <skjnldsv@protonmail.com>
*
* @author John Molakvoæ <skjnldsv@protonmail.com>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import Question from '../components/Questions/Question'
export default {
inheritAttrs: false,
props: {
/**
* The question title
*/
text: {
type: String,
required: true,
},
/**
* The user answers
*/
values: {
type: Array,
default() {
return []
},
},
/**
* The question list of answers
*/
options: {
type: Array,
required: true,
},
/**
* Answer type model object
*/
model: {
type: Object,
required: true,
},
/**
* Database-Restrictions
*/
maxStringLengths: {
type: Object,
required: true,
},
},
components: {
Question,
},
data() {
return {
// Do we display this question in edit or fill mode
edit: false,
}
},
methods: {
/**
* Forward the title change to the parent
*
* @param {string} text the title
*/
onTitleChange(text) {
this.$emit('update:text', text)
},
/**
* Forward the answer(s) change to the parent
*
* @param {Array} values the array of answers
*/
onValuesChange(values) {
this.$emit('update:values', values)
},
/**
* Delete this question
*/
onDelete() {
this.$emit('delete')
},
/**
* Focus the first focusable element
*/
focus() {
this.edit = true
this.$el.scrollIntoView({ behavior: 'smooth' })
this.$nextTick(() => {
const title = this.$el.querySelector('.question__header-title')
if (title) {
title.select()
}
})
},
},
}