2017-06-05 08:12:38 +00:00
|
|
|
/**
|
|
|
|
* Discussions list window
|
|
|
|
*
|
|
|
|
* @author Pierre HUBERT
|
|
|
|
*/
|
|
|
|
|
|
|
|
ComunicWeb.components.discussions.list = {
|
|
|
|
/**
|
|
|
|
* Display discussions list window
|
|
|
|
*
|
|
|
|
* @param {HTMLElement} nodeBefore The node before the destination
|
|
|
|
* @return {Boolean} True for a success
|
|
|
|
*/
|
|
|
|
display: function(nodeBefore){
|
|
|
|
|
|
|
|
//Log action
|
|
|
|
ComunicWeb.debug.logMessage("INFO : initialize conversation list box.");
|
|
|
|
|
|
|
|
//Create a window
|
|
|
|
var listBox = ComunicWeb.components.discussions.windows.create(nodeBefore);
|
|
|
|
|
|
|
|
//Change box title
|
|
|
|
listBox.boxTitle.innerHTML = "Discussions";
|
|
|
|
|
|
|
|
//Remove footer
|
|
|
|
listBox.boxFooter.remove();
|
|
|
|
|
2017-06-05 09:02:10 +00:00
|
|
|
//Add the create button
|
|
|
|
var createButton = createElem("button");
|
|
|
|
listBox.boxTools.insertBefore(createButton, listBox.boxTools.children[0]);
|
|
|
|
createButton.className = "btn btn-box-tool";
|
|
|
|
createButton.onclick = function(){
|
|
|
|
ComunicWeb.components.discussions.list.displayCreateForm(listBox);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Button icon
|
|
|
|
var createButtonIcon = createElem("i", createButton);
|
|
|
|
createButtonIcon.className = "fa fa-pencil";
|
|
|
|
|
|
|
|
//Display conversations list
|
|
|
|
listBox.boxBody.innerHTML = "<p>Hello world</p>";
|
|
|
|
|
2017-06-05 08:12:38 +00:00
|
|
|
//Success
|
|
|
|
return true;
|
|
|
|
},
|
2017-06-05 09:02:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the form to create a new discussion
|
|
|
|
*
|
|
|
|
* @param {Object} listBox Informations about the listbox target
|
|
|
|
* @return {Boolean} True for a success
|
|
|
|
*/
|
|
|
|
displayCreateForm: function(listBox){
|
|
|
|
|
|
|
|
//Log action
|
|
|
|
ComunicWeb.debug.logMessage("INFO : initialize create discussion form");
|
|
|
|
|
|
|
|
//Hide boxy body contents
|
|
|
|
var boxBodyElem = listBox.boxBody.children;
|
|
|
|
for(i in boxBodyElem){
|
|
|
|
if(boxBodyElem[i].style)
|
|
|
|
boxBodyElem[i].style.display = "none";
|
|
|
|
}
|
|
|
|
|
|
|
|
//Change box title
|
|
|
|
listBox.boxTitle.innerHTML = "New discussion";
|
|
|
|
|
|
|
|
//Create and display discussion creation form
|
|
|
|
var createForm = createElem("div", listBox.boxBody);
|
|
|
|
|
2017-06-07 12:16:54 +00:00
|
|
|
//Choose users
|
|
|
|
//Create select user element
|
|
|
|
var selectElement = createFormGroup({
|
|
|
|
target: createForm,
|
|
|
|
label: "Users",
|
|
|
|
multiple: true,
|
|
|
|
placeholder: "Select users",
|
|
|
|
type: "select2"});
|
|
|
|
|
|
|
|
//Initialize user selector
|
|
|
|
ComunicWeb.components.userSelect.init(selectElement);
|
|
|
|
|
|
|
|
|
2017-06-05 09:02:10 +00:00
|
|
|
//Discussion name
|
2017-06-07 12:16:54 +00:00
|
|
|
var discussionNameInput = createFormGroup({
|
|
|
|
target: createForm,
|
|
|
|
label: "Discussion name",
|
|
|
|
placeholder: "Optionnal",
|
|
|
|
type: "text"});
|
2017-06-05 09:34:43 +00:00
|
|
|
|
|
|
|
//Follow disucssion
|
2017-06-07 12:16:54 +00:00
|
|
|
var followDiscussionInput = createFormGroup({
|
|
|
|
target: createForm,
|
|
|
|
label: "Follow discussion",
|
|
|
|
checked: true,
|
|
|
|
type: "checkbox"});
|
2017-06-05 09:34:43 +00:00
|
|
|
|
|
|
|
//Create button
|
2017-06-07 12:16:54 +00:00
|
|
|
var createButton = createElem("button", createForm);
|
2017-06-05 09:34:43 +00:00
|
|
|
createButton.className = "btn btn-primary";
|
|
|
|
createButton.style.width = "100%";
|
|
|
|
createButton.innerHTML = "Create discussion";
|
2017-06-05 09:02:10 +00:00
|
|
|
|
|
|
|
//Success
|
|
|
|
return true;
|
|
|
|
}
|
2017-06-05 08:12:38 +00:00
|
|
|
}
|