solid-ui 2.4.22-9cc2af16 → 2.4.22-a8f0151f

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -159,10 +159,11 @@ _fieldFunction.field[ns.ui('Form').uri] = _fieldFunction.field[ns.ui('Group').ur
159
159
 
160
160
  if (already[key]) {
161
161
  // been there done that
162
- box.appendChild(dom.createTextNode('Group: see above ' + key));
163
- var plist = [$rdf.st(subject, ns.owl('sameAs'), subject)]; // @@ need prev subject
162
+ box.appendChild(dom.createTextNode('Group: see above ' + key)); // TODO fix dependency cycle to solid-panes by calling outlineManager
163
+ // const plist = [$rdf.st(subject, ns.owl('sameAs'), subject)] // @@ need prev subject
164
+ // dom.outlineManager.appendPropertyTRs(box, plist)
165
+ // dom.appendChild(plist)
164
166
 
165
- dom.outlineManager.appendPropertyTRs(box, plist);
166
167
  return box;
167
168
  }
168
169
 
@@ -591,7 +592,7 @@ _fieldFunction.field[ns.ui('Multiple').uri] = function (dom, container, already,
591
592
  // delete button and move buttons
592
593
 
593
594
  if (kb.updater.editable(dataDoc.uri)) {
594
- buttons.deleteButtonWithCheck(dom, subField, utils.label(property), deleteThisItem);
595
+ buttons.deleteButtonWithCheck(dom, subField, multipleUIlabel, deleteThisItem);
595
596
 
596
597
  if (ordered) {
597
598
  // Add controsl in a frame
@@ -642,7 +643,7 @@ _fieldFunction.field[ns.ui('Multiple').uri] = function (dom, container, already,
642
643
 
643
644
  var _shim = dom.createElement('div');
644
645
 
645
- _shim.appendChild(subField); // Subfield has its own laytout
646
+ _shim.appendChild(subField); // Subfield has its own layout
646
647
 
647
648
 
648
649
  frame.appendChild(_shim);
@@ -691,6 +692,8 @@ _fieldFunction.field[ns.ui('Multiple').uri] = function (dom, container, already,
691
692
  return shim;
692
693
  }
693
694
 
695
+ var multipleUIlabel = kb.any(form, ui('label'));
696
+ if (!multipleUIlabel) multipleUIlabel = utils.label(property);
694
697
  var min = kb.any(form, ui('min')); // This is the minimum number -- default 0
695
698
 
696
699
  min = min ? 0 + min.value : 0;
@@ -731,10 +734,9 @@ _fieldFunction.field[ns.ui('Multiple').uri] = function (dom, container, already,
731
734
  img.setAttribute('src', plusIconURI); // plus sign
732
735
 
733
736
  img.setAttribute('style', 'margin: 0.2em; width: 1.5em; height:1.5em');
734
- img.title = 'Click to add one or more ' + utils.predicateLabel(property, reverse);
735
- var prompt = tail.appendChild(dom.createElement('span'));
736
- prompt.textContent = (values.length === 0 ? 'Add one or more ' : 'Add more ') + utils.predicateLabel(property, reverse); // utils.label(property)
737
-
737
+ img.title = 'Click to add another ' + multipleUIlabel;
738
+ var prompt = dom.createElement('span');
739
+ prompt.textContent = (values.length === 0 ? 'Add another ' : 'Add ') + multipleUIlabel;
738
740
  tail.addEventListener('click', /*#__PURE__*/function () {
739
741
  var _ref3 = (0, _asyncToGenerator2["default"])( /*#__PURE__*/_regenerator["default"].mark(function _callee5(_eventNotUsed) {
740
742
  return _regenerator["default"].wrap(function _callee5$(_context5) {
@@ -756,6 +758,7 @@ _fieldFunction.field[ns.ui('Multiple').uri] = function (dom, container, already,
756
758
  return _ref3.apply(this, arguments);
757
759
  };
758
760
  }(), true);
761
+ tail.appendChild(prompt);
759
762
  }
760
763
 
761
764
  function createListIfNecessary() {
@@ -1030,23 +1033,28 @@ _fieldFunction.field[ns.ui('Classifier').uri] = function (dom, container, alread
1030
1033
  ** -- radio buttons
1031
1034
  ** -- auto-complete typing
1032
1035
  **
1033
- ** Todo: Deal with multiple. Maybe merge with multiple code.
1036
+ ** TODO: according to ontology ui:choice can also have ns.ui('default') - this is not implemented yet
1034
1037
  */
1035
1038
 
1036
1039
 
1037
1040
  _fieldFunction.field[ns.ui('Choice').uri] = function (dom, container, already, subject, form, dataDoc, callbackFunction) {
1038
1041
  var ui = ns.ui;
1039
1042
  var kb = _solidLogic.store;
1040
- var multiple = false;
1041
1043
  var formDoc = form.doc ? form.doc() : null; // @@ if blank no way to know
1042
1044
 
1045
+ var uiMultipleInUse = false; // this signals to ui:choice that it is part of a ui:multiple
1046
+
1047
+ var multiSelect = false;
1043
1048
  var p;
1044
- var box = dom.createElement('div'); // Set flexDirection column?
1049
+ var box = dom.createElement('div');
1050
+ box.setAttribute('class', 'choiceBox'); // Set flexDirection column?
1045
1051
 
1046
1052
  if (container) container.appendChild(box);
1047
1053
  var lhs = dom.createElement('div');
1054
+ lhs.setAttribute('class', 'formFieldName choiceBox-label');
1048
1055
  box.appendChild(lhs);
1049
1056
  var rhs = dom.createElement('div');
1057
+ rhs.setAttribute('class', 'formFieldValue choiceBox-selectBox');
1050
1058
  box.appendChild(rhs);
1051
1059
  var property = kb.any(form, ui('property'));
1052
1060
 
@@ -1067,12 +1075,24 @@ _fieldFunction.field[ns.ui('Choice').uri] = function (dom, container, already, s
1067
1075
 
1068
1076
  var possible = [];
1069
1077
  var possibleProperties;
1070
- var firstSelectOptionText = '* Select from ' + utils.label(subject, true) + ' *';
1078
+ var firstSelectOptionText = '* Select for ' + utils.label(subject, true) + ' *'; // if we do NOT have a container it means it is a ui:Multiple
1079
+ // only important for the first option text in select
1080
+
1081
+ if (!container) {
1082
+ uiMultipleInUse = true;
1083
+ firstSelectOptionText = utils.label(subject, true);
1084
+ }
1085
+
1086
+ if (subject.termType === 'BlankNode') {
1087
+ firstSelectOptionText = '* Select for ' + utils.label(property) + ' *';
1088
+ }
1089
+
1071
1090
  var opts = {
1072
1091
  form: form,
1073
1092
  subForm: subForm,
1074
- multiple: multiple,
1093
+ multiSelect: multiSelect,
1075
1094
  firstSelectOptionText: firstSelectOptionText,
1095
+ uiMultipleInUse: uiMultipleInUse,
1076
1096
  disambiguate: false
1077
1097
  };
1078
1098
  possible = kb.each(undefined, ns.rdf('type'), uiFrom, formDoc);
@@ -1117,7 +1137,7 @@ _fieldFunction.field[ns.ui('Choice').uri] = function (dom, container, already, s
1117
1137
  opts.disambiguate = true;
1118
1138
  }
1119
1139
 
1120
- var sortedPossible = sortByLabel(possible); // TODO: this checks for any occurance regardles if it is set to true or false
1140
+ var sortedPossible = sortByLabel(possible); // TODO: this checks for any occurrence, regardless of true or false setting
1121
1141
 
1122
1142
  if (kb.any(form, ui('canMintNew'))) {
1123
1143
  opts.mint = '* Create new *'; // @@ could be better
@@ -1358,7 +1378,8 @@ function promptForNew(dom, kb, subject, predicate, theClass, form, dataDoc, call
1358
1378
  b.setAttribute('type', 'button');
1359
1379
  b.setAttribute('style', 'float: right;');
1360
1380
  b.innerHTML = 'Goto ' + utils.label(theClass);
1361
- b.addEventListener('click', function (_e) {
1381
+ b.addEventListener('click', // TODO fix dependency cycle to solid-panes by calling outlineManager
1382
+ function (_e) {
1362
1383
  dom.outlineManager.GotoSubject(theClass, true, undefined, true, undefined);
1363
1384
  }, false);
1364
1385
  return box;
@@ -1493,9 +1514,10 @@ function makeDescription(dom, kb, subject, predicate, dataDoc, callbackFunction)
1493
1514
  // @param subject - a term, the subject of the statement(s) being edited.
1494
1515
  // @param predicate - a term, the predicate of the statement(s) being edited
1495
1516
  // @param possible - a list of terms, the possible value the object can take
1496
- // @param options.multiple - Boolean - Whether more than one at a time is allowed
1517
+ // @param options.multiSelect - Boolean - Whether more than one at a time is allowed
1497
1518
  // @param options.firstSelectOptionText - a string to be displayed as the
1498
- // option for none selected (for non multiple)
1519
+ // option for none selected (for non multiSelect)
1520
+ // @param options.uiMultipleInUse - signals that the ui:choise is used with a ui:multiple
1499
1521
  // @param options.mint - User may create thing if this sent to the prompt string eg "New foo"
1500
1522
  // @param options.subForm - If mint, then the form to be used for minting the new thing
1501
1523
  // @param dataDoc - The web document being edited
@@ -1633,7 +1655,7 @@ function makeSelectForOptions(dom, kb, subject, predicate, possible, uiFrom, opt
1633
1655
 
1634
1656
  var select = dom.createElement('select');
1635
1657
  select.setAttribute('style', style.formSelectSTyle);
1636
- if (options.multiple) select.setAttribute('multiple', 'true');
1658
+ if (options.multiSelect) select.setAttribute('multiSelect', 'true');
1637
1659
  select.currentURI = null;
1638
1660
 
1639
1661
  select.refresh = function () {
@@ -1684,7 +1706,7 @@ function makeSelectForOptions(dom, kb, subject, predicate, possible, uiFrom, opt
1684
1706
  select.insertBefore(mint, select.firstChild);
1685
1707
  }
1686
1708
 
1687
- if (!select.currentURI && !options.multiple) {
1709
+ if (!select.currentURI && options.uiMultipleInUse) {
1688
1710
  var prompt = dom.createElement('option');
1689
1711
  prompt.appendChild(dom.createTextNode(options.firstSelectOptionText));
1690
1712
  prompt.disabled = true;
@@ -1710,11 +1732,11 @@ function makeSelectForOptions(dom, kb, subject, predicate, possible, uiFrom, opt
1710
1732
  function makeSelectForCategory(dom, kb, subject, category, dataDoc, callbackFunction) {
1711
1733
  var du = kb.any(category, ns.owl('disjointUnionOf'));
1712
1734
  var subs;
1713
- var multiple = false;
1735
+ var multiSelect = false;
1714
1736
 
1715
1737
  if (!du) {
1716
1738
  subs = kb.each(undefined, ns.rdfs('subClassOf'), category);
1717
- multiple = true;
1739
+ multiSelect = true;
1718
1740
  } else {
1719
1741
  subs = du.elements;
1720
1742
  }
@@ -1722,15 +1744,15 @@ function makeSelectForCategory(dom, kb, subject, category, dataDoc, callbackFunc
1722
1744
  log.debug('Select list length ' + subs.length);
1723
1745
 
1724
1746
  if (subs.length === 0) {
1725
- return (0, _error.errorMessageBlock)(dom, "Can't do " + (multiple ? 'multiple ' : '') + 'selector with no subclasses of category: ' + category);
1747
+ return (0, _error.errorMessageBlock)(dom, "Can't do " + (multiSelect ? 'multiple ' : '') + 'selector with no subclasses of category: ' + category);
1726
1748
  }
1727
1749
 
1728
1750
  if (subs.length === 1) {
1729
- return (0, _error.errorMessageBlock)(dom, "Can't do " + (multiple ? 'multiple ' : '') + 'selector with only 1 subclass of category: ' + category + ':' + subs[1]);
1751
+ return (0, _error.errorMessageBlock)(dom, "Can't do " + (multiSelect ? 'multiple ' : '') + 'selector with only 1 subclass of category: ' + category + ':' + subs[1]);
1730
1752
  }
1731
1753
 
1732
1754
  return makeSelectForOptions(dom, kb, subject, ns.rdf('type'), subs, null, {
1733
- multiple: multiple
1755
+ multiSelect: multiSelect
1734
1756
  }, dataDoc, callbackFunction);
1735
1757
  }
1736
1758
  /** Make SELECT element to select subclasses recurively