parambox
v1.2.21
Published
Too much parameters to handle ? paramBox is a collection of smart plug and play tools to facilitate the design of javascript projects such as games and cognitive tasks. ParamBox is one of the helper class and allows to modify key variable on the fly witho
Downloads
21
Maintainers
Readme
paramBox
Too much parameters to handle ?
paramBox is a collection of smart plug and play tools to facilitate the design of javascript games and cognitive tasks.
Description
A ParamBox is a little draggable div allowing you to do double binding with any variable of your page. It is often long to go back and forth between your code and the page when you want to change the value of just one variable. This box allows you to to have all your variables in check for quick access.
Three other classes are currently avaible : DragBox (simple draggable box), SmartChart and SmartModal (a configurable modal).
http://imgur.com/4OcMkNR
Require
For now : jQuery, Bootstrap, Chart.js for SmartChart object
Install
You can either clone the repo, download the files in the dist folder, or use npm (recommended).
npm install parambox
Then, to install a paramBox :
<!-- Load jquery -->
<script src="jquery.min.js">
</script>
<!-- Load Chart.js -->
<script src="Chart.bundle.js">
</script>
<!-- Load Bootstrap -->
<script src="bootstrap.min.js">
</script>
<link href="bootstrap.css" rel="stylesheet" type="text/css"/>
<!-- Load Parambox -->
<script src="/dist/paramBox.min.js" type="text/javascript">
</script>
<script type="text/javascript">
// one example of implementation could be
var paramBox = null;
$(document).ready(function(){
// we suppose you have an object "Task" holding all your variables.
// If your variables are in the global space you can just put window as an object
taskObject = new Task();
// instanciate the param box
paramBox = new ParamBox();
// bind object variables to it
paramBox.bind(taskObject, ["nameOfVariableOne", "nameOfVariableTwo"]);
// we suppose in this example that taskObject.nameOfVariableOne, and taskObject.nameOfVariableTwo exists !
});
</script>
A div containing the ParamBox is automatically added to the document's body, to show/hide it, press Shift + P. You ight want to change the url of your imports.
Classes
DragBox
This is the parent class, all properties and method of this object are inherited by ParamBox and SmartModal classes. Dragboxes are small dragable boxes with a title and content. By clicking on the title bar you can drag the box.
To create a box :
var dragBox = new DragBox();
dragBox.title = "<h3><center> My dragbox </center></h3>";
dragBox.content = "<p>Some very usefull information in HTML</p>";
// then show the dragbox
dragBox.show();
// to hide the dragBox
// dragBox.hide();
// to destroy a box (removes it from the DOM)
// dragBox.destroy()
You will see that by default the box is sticky on the edge of the screen, this property can be changed to: magnetized, glue, or none.
// edge are magnetic and attract the box
dragBox.stickiness = "magnetized";
// the box is not attracted by the edge but sticks to it if you make it collide with it.
dragBox.stickiness = "glue";
// no stickiness
dragBox.stickiness = "none";
ParamBox
The boxes are keybinded and appear and disapear on command : Shift + P for now. This will show and hide all paramBoxes you have on your page.
- BindedProperty
- BindedField
SmartModal
Smart modal is another helping class that creates a modal that adapt intelligently to the page, and are easilly configurable. They are shown automatically and dismiss when the button is clicked.
The modal constructor takes four possible arguments : SmartModal(formatType = "across", callback = null, buttonType = "closebutton")
formatType determine the size and position of the modal, modals appeara at 20% from the top and are of three types: * "centralSmall" creates a modal with : 30% height 40% width * "centralLarge" creates a modal with : 60% height 70% width * "across" creates a modal with : 40% height 100% width (30% from the top)
Callback is a function that is called when the modal is dismissed.
Buttontype is a string can either be : "closebutton", "nextbutton", or "blankbutton"
To create a modal :
var modalBox = new SmartModal("centralSmall", function() { console.log("Modal Destroyed"); })
modalBox.title = "<h4><center>This is a modal</center></h4>"
modalBox.content = "Very important information, needed a modal."
SmartChart
Using Chart.js.
var smartChartInstance = null;
var chartOptions = {
type: 'bar',
data: {
labels: ['Item 1', 'Item 2', 'Item 3'],
datasets: [
{
type: 'bar',
label: 'Bar Component',
data: [10, 20, 30],
},
{
type: 'line',
label: 'Line Component',
data: [30, 20, 10],
}
]
}
};
document.addEventListener("DOMContentLoaded", function(event) {
/* if ParamBox library is loaded - create a chart */
if (typeof SmartChart === "function") {
smartChartInstance = new SmartChart(chartOptions, function(){ console.log("Chart Closed"); });
}
});
See exampleChart.html for a simple example.
Developped in the Bavelier Lab by
- Albert Buchard
Contribute
A lot remains to be done! I'll work on the docs in the next months, JSDOC might help a lot in that regard ! You are most welcome to land a hand :)