ComunicWeb/assets/js/components/posts/form.js

179 lines
4.5 KiB
JavaScript
Raw Normal View History

2018-01-04 17:51:49 +00:00
/**
* Posts creation form
*
* @author Pierre HUBERT
*/
ComunicWeb.components.posts.form = {
/**
* Display post creation form
*
* @param {string} kind The kind of page
* @param {int} id The ID of the page
* @param {HTMLElement} target The target of the form
*/
display: function(kind, id, target){
//Log action
ComunicWeb.debug.logMessage("Display post creation form");
//Create form creation box
var boxRoot = createElem2({
appendTo: target,
type: "div",
class: "box box-primary post-form"
});
//Create box body
var boxBody = createElem2({
appendTo: boxRoot,
type: "div",
class: "box-body"
});
//Create post message textarea
var inputMessageDiv = createElem2({
appendTo: boxBody,
type: "div",
class: "new-message",
});
//Enable bootstrap-wysiwyg
$(inputMessageDiv).wysiwyg();
2018-01-04 18:39:22 +00:00
//Add the different post types
var postTypesContener = createElem2({
appendTo: boxBody,
type: "div",
class: "post-types"
});
//Text
2018-01-05 08:11:41 +00:00
var textType = this._add_post_type(postTypesContener, "text", "Text");
textType.checked = true;
2018-01-04 18:39:22 +00:00
//Image
2018-01-05 08:11:41 +00:00
var imageType = this._add_post_type(postTypesContener, "image", "<i class='fa fa-picture-o'></i> <span class='hidden-xs'>Image</span>");
2018-01-04 18:39:22 +00:00
//Youtube
2018-01-05 08:11:41 +00:00
var youtubeType = this._add_post_type(postTypesContener, "youtube", "<i class='fa fa-youtube-play'></i> <span class='hidden-xs'>YouTube</span>");
2018-01-04 18:39:22 +00:00
//Movie
2018-01-05 08:11:41 +00:00
var movieType = this._add_post_type(postTypesContener, "movie", "<i class='fa fa-file-movie-o'></i> <span class='hidden-xs'>Movie</span>");
2018-01-04 18:39:22 +00:00
//Link
2018-01-05 08:11:41 +00:00
var linkType = this._add_post_type(postTypesContener, "link", "<i class='fa fa-link'></i> <span class='hidden-xs'>Weblink</span>");
2018-01-04 18:39:22 +00:00
//PDF
2018-01-05 08:11:41 +00:00
var pdfType = this._add_post_type(postTypesContener, "pdf", "<i class='fa fa-file-pdf-o'></i> <span class='hidden-xs'>PDF</span>");
2018-01-04 18:39:22 +00:00
//Countdown timer
2018-01-05 08:11:41 +00:00
var countdownType = this._add_post_type(postTypesContener, "countdown", "<i class='fa fa-clock-o'></i> <span class='hidden-xs'>Timer</span>");
2018-01-04 18:39:22 +00:00
//Survey
2018-01-05 08:11:41 +00:00
var surveyType = this._add_post_type(postTypesContener, "survey", "<i class='fa fa-pie-chart'></i> <span class='hidden-xs'>Survey</span>");
2018-01-04 17:51:49 +00:00
2018-01-05 08:41:27 +00:00
//Add visibility levels
var rightDiv = createElem2({
appendTo: boxBody,
type: "div",
class: "pull-right"
})
//Add visibility level choice
var visibility_choices_contener = createElem2({
appendTo: rightDiv,
type: "div",
class: "post-visiblity-contener"
});
//Private post
var privateInput = this._add_visiblity_choice(visibility_choices_contener, "private", "Private", "fa-user");
//Friends-visible post
var friendsInput = this._add_visiblity_choice(visibility_choices_contener, "friends", "Friends", "fa-users");
friendsInput.checked = true;
//Worldwide post
this._add_visiblity_choice(visibility_choices_contener, "public", "Public", "fa-globe");
2018-01-04 17:51:49 +00:00
//Add send button
var sendButton = createElem2({
2018-01-05 08:41:27 +00:00
appendTo: rightDiv,
2018-01-04 17:51:49 +00:00
type: "button",
2018-01-05 08:41:27 +00:00
class: "btn btn-primary",
2018-01-04 17:51:49 +00:00
innerHTML: "Send"
});
2018-01-05 08:11:41 +00:00
},
/**
* Create and add post type choice
*
* @param {HTMLElement} target The target for the post type
* @param {string} value The value of the new post type
* @param {string} label The label associated with the post type
* @return {HTMLElement} The created input
*/
_add_post_type: function(target, value, label){
var postTypeContener = createElem2({
appendTo: target,
type: "label",
class: "post-form-choice"
});
var input = createElem2({
appendTo: postTypeContener,
type: "input",
elemType: "radio",
name: "post_type",
value: value
});
2018-01-04 17:51:49 +00:00
2018-01-05 08:11:41 +00:00
createElem2({
appendTo: postTypeContener,
type: "span",
innerHTML: label
});
return input;
2018-01-05 08:41:27 +00:00
},
/**
* Create and add visibility level choice
*
* @param {HTMLElement} target The target for the visibility level
* @param {string} value The value of the visibility level
* @param {string} title The title of the visibility level
* @param {string} icon The name of the icon associated with the visibility level
* @return {HTMLElement} The created input
*/
_add_visiblity_choice: function(target, value, title, icon){
//Visibility label
var visibility_contener = createElem2({
appendTo: target,
type: "label",
});
//Create input
var visibilityInput = createElem2({
appendTo: visibility_contener,
type: "input",
elemType: "radio",
name: "post_visibility",
value: value
});
//Create icon
var visibility_label = createElem2({
appendTo: visibility_contener,
type: "span",
innerHTML: "<i class='fa " + icon + "'></i>"
});
return visibilityInput;
},
2018-01-04 17:51:49 +00:00
}