Files
node_task_2/view_models/questions_admin_add_view_model.js
T
2022-04-11 06:32:47 +02:00

67 lines
1.4 KiB
JavaScript

"use strict";
/*Powered By: Manaknightdigital Inc. https://manaknightdigital.com/ Year: 2021*/
/**
* Questions Add View Model
*
* @copyright 2021 Manaknightdigital Inc.
* @link https://manaknightdigital.com
* @license Proprietary Software licensing
* @author Ryan Wong
*/
const db = require("../models");
let AuthService = require("../services/AuthService");
module.exports = function (entity, pageName = "", success, error, base_url = "") {
this._entity = entity;
this.session = null;
this.success = success || null;
this.error = error || null;
this._base_url = base_url;
this.get_page_name = () => pageName;
this.endpoint = "/admin/questions";
this.heading = "Add question";
this.action = "/admin/questions-add";
this.form_fields = {
quiz_id: "",
question: "",
question_arguments: "",
order: "",
image_width: "",
image_height: "",
note: "",
note_type: "",
target: "",
response: "",
save_response_into: "",
depends_on: "",
slider_range: "",
output_variable_name: "",
weight: "",
extra_output_variable: "",
type: "",
};
this.type_mapping = function () {
return this._entity.type_mapping();
};
this.target_mapping = function () {
return this._entity.target_mapping();
};
this.note_type_mapping = function () {
return this._entity.note_type_mapping();
};
return this;
};