Skip to content

Commit 976531f

Browse files
authored
Merge pull request #99 from SIU-CS/dev
Sprint 3 -> dev to master
2 parents a761a86 + e7f9cf6 commit 976531f

File tree

173 files changed

+56137
-1667
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

173 files changed

+56137
-1667
lines changed

.DS_Store

-10 KB
Binary file not shown.

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.vs/
2-
**/.vs
2+
**/.vs
3+
**/.DS_Store

.vscode/temp.sql

Whitespace-only changes.

README.md

+13-10
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,28 @@ The purpose is to develop a backwards compatible JavaScript multiselect tool wit
1414

1515
**Scrum Master:** Swathi Kaluvakuri
1616
Student Email: [email protected]
17-
Personal Email: [email protected] <br/>
18-
19-
**Members:**<br/>
17+
Personal Email: [email protected]
18+
19+
**Members:**
2020

2121
* Username: james-wasson
2222
23-
Student Email: [email protected] <br/>
24-
23+
Student Email: [email protected]
24+
2525
* Username: N3rdizm
2626
27-
Student Email: [email protected] <br/>
28-
27+
Student Email: [email protected]
28+
2929
* Username: IndranilRoy80133
3030
31-
Student Email:indranil.[email protected] <br/>
32-
31+
Student Email:indranil.[email protected]
32+
3333
* Username: adlevsky
3434
35-
Student Email: [email protected]
35+
Student Email: [email protected]
36+
37+
**JS Fiddle:**
38+
A JSFiddle for the project can be found [here](https://jsfiddle.net/james_wasson/jgmh1ozy/)
3639

3740
**This is a Quagga**<br/>
3841
![A QUAGGA](https://github.com/SIU-CS/QuaggaQuagga-Production/blob/master/git-wiki/Quagga.jpg)

app.build.js

-8
This file was deleted.

js/consts.config.js app/js/consts.config.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,12 @@ define(['require', 'jquery'],function (require) {
4040
<span class="JSM-title navbar-brand"></span>
4141
<span class="JSM-search">
4242
<input class="JSM-searchbar form-control" type="text" placeholder="Search">
43-
<span class="fa fa-times JSM-closePopList" aria-hidden="true"></span>
4443
</span>
4544
</div>
4645
<!-- MULTISELECT BODY -->
46+
<div class="JSM-popoverDisplay">
47+
</div>
4748
<div class="JSM-body">
48-
<div class="JSM-popoverDisplay collapse in">
49-
</div>
5049
<!-- List structure and base style Via, Marcos from stackoverflow at "https://jsfiddle.net/ann7tctp/" -->
5150
<div class="JSM-list list-group-root collapse">
5251
@@ -76,7 +75,7 @@ define(['require', 'jquery'],function (require) {
7675
}
7776

7877
function MULTISELECTOR_ROOT_NAME() {
79-
return "JS_Multiselect";
78+
return "JSMultiselect";
8079
}
8180
function MULTISELECTOR_STYLE_TYPES() {
8281
return ['singleColumn', 'multiColumn', 'popoverSelect'];
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

app/js/data_input/interface.js

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
define(['require', 'jquery', 'data_store/new', "consts", 'data_input/load'],
2+
function (require, $, newData, CONSTS, loadData) {
3+
'use strict';
4+
5+
var rootObject = CONSTS.GET_ROOT_OBJECT_REF();
6+
7+
rootObject['AddData'] = {};
8+
var loadTypes = loadData.loadTypes();
9+
$.each(loadTypes, function(i, Type) {
10+
rootObject['AddData'][Type] = (function() {
11+
var type = Type;
12+
return function(multiname, unprocessed) {
13+
var data;
14+
if ($.isFunction(unprocessed)) {
15+
data = loadData.load(unprocessed, type);
16+
} else {
17+
data = loadData.load(function() {
18+
return unprocessed;
19+
}, type);
20+
}
21+
if (data == null) {
22+
console.warn("Error loading new data.");
23+
} else {
24+
newData.addNewData(multiname, data);
25+
}
26+
};
27+
}());
28+
});
29+
});
File renamed without changes.

js/data_input/load.js app/js/data_input/load.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ define(['require', 'jquery', 'data_input/liveHTML', 'data_input/array', 'data_in
66
$ = jquery = require('jquery');
77

88
function getLoadFunction(functionPath) {
9+
if (jquery.isFunction(functionPath)) return functionPath;
10+
if (typeof functionPath != "string") return null;
911
var functionArray = functionPath.split(".");
1012
var fun = window[functionArray[0]];
1113
for (var i = 1; i < functionArray.length; i += 1) {
@@ -39,6 +41,7 @@ define(['require', 'jquery', 'data_input/liveHTML', 'data_input/array', 'data_in
3941
// JSON is default data type
4042
if (dataType == null) dataType = 'JSON';
4143
var loadFunction = getLoadFunction(functionPath);
44+
4245
// determines if we can get the data from the elements passed in
4346
if (typeFunctions[dataType] == null ||
4447
!jquery.isFunction(typeFunctions[dataType]) ||
@@ -50,5 +53,10 @@ define(['require', 'jquery', 'data_input/liveHTML', 'data_input/array', 'data_in
5053
return typeFunctions[dataType](devData);
5154
}
5255

53-
return load;
56+
return {
57+
load: load,
58+
loadTypes: function() {
59+
return Object.keys(typeFunctions);
60+
}
61+
};
5462
});
File renamed without changes.
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
define(['require',
2+
'data_store/get',
3+
'jquery',
4+
'data_output/interface',
5+
'data_output/selectionOutput',
6+
],
7+
function(require, getData, $, outInterface, selectionOut) {
8+
'use strict';
9+
var jquery = $;
10+
11+
/**
12+
* Handles the style part of the multiselect, selecting the apprpriate styles
13+
* For each based upon optons/multiselect type
14+
* @param {jquery element} $multiselect the targeted multiselect
15+
*/
16+
function handler($multiselect, name) {
17+
var outputSettings = getData.getSettingByName("output", name);
18+
19+
if (outputSettings != null) {
20+
selectionOut($multiselect, outputSettings.onSelect, outputSettings.onDeselect);
21+
}
22+
}
23+
24+
return handler;
25+
});

js/data_output/flatArray.js app/js/data_output/flatArray.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ define(['require', 'jquery', 'data_store/get'], function(require, $, getData) {
1010
if (data[i]['@isHeader']) {
1111
rv = rv.concat(recursData(data[i]['@children']));
1212
} else if(data[i]['@selected']) {
13-
rv.push({ 'name': i, 'value': data[i]['@value'] });
13+
rv.push({ 'name': data[i]['@name'], 'value': data[i]['@value'] });
1414
}
1515
}
1616
return rv;
File renamed without changes.

app/js/data_output/selectionOutput.js

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
define(['require', 'jquery', 'data_store/get'], function (require) {
2+
'use strict';
3+
4+
var $, jquery;
5+
jquery = $ = require('jquery');
6+
var get = require('data_store/get');
7+
8+
9+
function handler($multiselect, onSelect, onDeselect)
10+
{
11+
if(onSelect != null || onDeselect != null)
12+
{
13+
$multiselect.on("change", ".JSM-list .JSM-checkbox", function()
14+
{
15+
var $this = $(this);
16+
var name = $this.data("name");
17+
var value = $this.attr("value");
18+
if (name != null && value != null) {
19+
var rv = { name: name, value: value }
20+
if (this.checked)
21+
{
22+
onSelect(rv);
23+
} else
24+
{
25+
onDeselect(rv);
26+
}
27+
}
28+
});
29+
}
30+
else
31+
{
32+
console.warn("The notification function which you defined is null.");
33+
}
34+
}
35+
return handler;
36+
37+
});
File renamed without changes.

js/data_store/get.js app/js/data_store/get.js

+24-1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,28 @@ function (require) {
100100
return ["@value", "@element", "@searchable", "@selected", "@isHeader", "@icon", "@image"];
101101
}
102102

103+
/**
104+
* Find s all items (including headers) and returns them in func
105+
* @param {String} name The name of the given multiselect
106+
* @param {Function} func a function that accepts a multiselect item
107+
*/
108+
function forEachItemInMutiselect(name, func) {
109+
var data = getDataByName(name);
110+
if (data != null) {
111+
var forEach = function(children) {
112+
for(var i in children) {
113+
if (children[i] != null) {
114+
var rv = func(children[i]);
115+
if (rv !== false && children[i]['@isHeader']) {
116+
forEach(children[i]['@children']);
117+
}
118+
}
119+
}
120+
};
121+
forEach(data);
122+
}
123+
}
124+
103125

104126
return {
105127
nameList: nameList,
@@ -108,6 +130,7 @@ function (require) {
108130
getSettingsByMultiselectName: getSettingsByMultiselectName,
109131
getSettingByName: getSettingByName,
110132
getMultiselectItemKeys: getMultiselectItemKeys,
111-
getTitleByName: getTitleByName
133+
getTitleByName: getTitleByName,
134+
forEachItemInMutiselect: forEachItemInMutiselect
112135
};
113136
});
File renamed without changes.

js/data_store/new.js app/js/data_store/new.js

+83-9
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,18 @@
22
define(['require',
33
'data_store/cache',
44
'data_store/set',
5+
'data_store/get',
56
'consts',
6-
'jquery'],
7-
function (require, cache, cacheSet, CONSTS) {
7+
'jquery',
8+
'display/list',
9+
'style/body/colorIndent',
10+
'style/body/spaceIndent',
11+
'sort/sort.config'],
12+
function (require, cache, cacheSet, cacheGet, CONSTS, $, displayList, colorIndent, spaceIndent, sortConfig) {
813
'use strict';
914

10-
var jquery, $;
11-
jquery = $ = require('jquery');
15+
var jquery;
16+
jquery = $;
1217

1318
/**
1419
* Sets a new multiselect in the cache with these fields
@@ -53,7 +58,8 @@ function (require, cache, cacheSet, CONSTS) {
5358
"@selected": (selected == null ? false : selected),
5459
"@isHeader": false,
5560
"@image": imagePath,
56-
"@icon": iconClass
61+
"@icon": iconClass,
62+
"@parent": null
5763
};
5864
}
5965

@@ -73,22 +79,90 @@ function (require, cache, cacheSet, CONSTS) {
7379
}
7480
if (element != null && element.length <= 0 ) return null;
7581
if (!$.isArray(children) || children.length <= 0) return null;
76-
77-
return {
82+
83+
var header = {
7884
"@name": name,
7985
"@element": element,
8086
"@searchable": (searchable == null ? "": searchable),
8187
"@selected": (selected == null ? false : selected),
8288
"@isHeader": true,
8389
"@image": (imagePath == null ? "": imagePath),
8490
"@icon": (iconClass == null ? "": iconClass),
85-
"@children": children
91+
"@children": children,
92+
"@parent": null
93+
};
94+
95+
for(var i in children) {
96+
if (children[i] != null)
97+
children[i]['@parent'] = header;
98+
}
99+
100+
return header;
101+
}
102+
103+
/**
104+
* Merges the data existing in the multiselect with the new data
105+
* @param {String} name Multiselector name
106+
* @param {JSON} newData JSON data to add to the multiselect
107+
*/
108+
function addNewData(name, newData) {
109+
var removeElement = function(item) {
110+
if (item['@isHeader']) {
111+
$(item['@element'].data("target")).remove();
112+
}
113+
if (item['@element'] != null)
114+
item['@element'].remove();
115+
}
116+
if (name == null) return;
117+
// defers to dataA
118+
var recurseCompareData = function(dataA, dataB) {
119+
if (dataA == null) dataA = [];
120+
if (dataB == null) dataB = [];
121+
var bIndex = 0;
122+
var returnData = [];
123+
var issueNames = [];
124+
var aNames = dataA.map(x => x['@name']);
125+
var bNames = dataB.map(x => x['@name']);
126+
var foundBIndexes = [];
127+
for (var aIndex = 0; aIndex < aNames.length; aIndex += 1) {
128+
bIndex = bNames.indexOf(aNames[aIndex]);
129+
if (bIndex >= 0) {
130+
foundBIndexes.push(bIndex);
131+
// merg the data recusivly
132+
var issueA = dataA[aIndex];
133+
var issueB = dataB[bIndex];
134+
if (issueA['@isHeader'] || issueB['@isHeader']) {
135+
issueA['@children'] = recurseCompareData(issueA['@children'], issueB['@children']);
136+
issueA['@isHeader'] = true;
137+
}
138+
if (issueB['@element'] != null)
139+
removeElement(issueB);
140+
if (issueB['@selected'] == true) issueA['@selected'] = true;
141+
returnData.push(issueA);
142+
} else { // we can now safly add aIndex
143+
returnData.push(dataA[aIndex]);
144+
}
145+
}
146+
147+
for (bIndex = 0; bIndex < dataB.length; bIndex += 1) {
148+
if (foundBIndexes.indexOf(bIndex) < 0) // selects unmerged indexes
149+
returnData.push(dataB[bIndex]);
150+
}
151+
152+
return returnData;
86153
};
154+
var data = cacheGet.getDataByName(name);
155+
cacheSet.replaceDataByName(name, recurseCompareData(newData, data));
156+
sortConfig(name);
157+
displayList.displayMissing(name);
158+
spaceIndent.refresh(cacheGet.getElementByName(name));
159+
colorIndent(cacheGet.getElementByName(name));
87160
}
88161

89162
return {
90163
newMultiselect: newMultiselect,
91164
newMultiselectHeader: newMultiselectHeader,
92-
newMultiselectItem: newMultiselectItem
165+
newMultiselectItem: newMultiselectItem,
166+
addNewData: addNewData
93167
};
94168
});

0 commit comments

Comments
 (0)