@annotation-studio/bridge
Advanced tools
Comparing version 1.0.0-pr.f0457139 to 1.0.0-pr.f4483907
@@ -51,3 +51,3 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } | ||
if (Object.prototype.toString.call(body) === '[object Object]' && body.value) { | ||
return new AnnotationBody(null, body['value']); | ||
return new AnnotationBody(null, body.value); | ||
} | ||
@@ -67,3 +67,3 @@ | ||
var source = specificResource && specificResource[0] ? specificResource[0]['source'] : null; | ||
var source = specificResource && specificResource[0] ? specificResource[0].source : null; | ||
var type = source ? tagClassForUri(source) : null; | ||
@@ -70,0 +70,0 @@ |
@@ -21,3 +21,6 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; | ||
if (!boxSelector || !boxSelector.target || !boxSelector.target.x || !boxSelector.target.y) { | ||
return { type: WHOLE_CANVAS_SELECTOR, target: boxSelector && boxSelector.target || '' }; | ||
return { | ||
type: WHOLE_CANVAS_SELECTOR, | ||
target: boxSelector && boxSelector.target || '' | ||
}; | ||
} | ||
@@ -24,0 +27,0 @@ boxSelector.type = BOX_SELECTOR; |
@@ -47,3 +47,6 @@ import { ID, OMEKA_LABEL } from './vocab'; | ||
var contexts = Object.keys(context).map(function (key) { | ||
return { key: key, id: context[key] && context[key][ID] ? context[key][ID] : null }; | ||
return { | ||
key: key, | ||
id: context[key] && context[key][ID] ? context[key][ID] : null | ||
}; | ||
}); | ||
@@ -139,3 +142,5 @@ | ||
export function warning(component, id, message) { | ||
process.env.NODE_ENV !== 'production' && process.env.NODE_ENV !== 'test' && console.warn('WARNING: ' + component + '\n==================================================\nPlease check model at:\n' + id + '\n\n' + message + '\n'); | ||
if (process.env.NODE_ENV !== 'production' && process.env.NODE_ENV !== 'test') { | ||
console.warn('WARNING: ' + component + '\n==================================================\nPlease check model at:\n' + id + '\n\n' + message + '\n'); | ||
} | ||
} |
@@ -56,3 +56,3 @@ 'use strict'; | ||
if (Object.prototype.toString.call(body) === '[object Object]' && body.value) { | ||
return new AnnotationBody(null, body['value']); | ||
return new AnnotationBody(null, body.value); | ||
} | ||
@@ -72,3 +72,3 @@ | ||
var source = specificResource && specificResource[0] ? specificResource[0]['source'] : null; | ||
var source = specificResource && specificResource[0] ? specificResource[0].source : null; | ||
var type = source ? tagClassForUri(source) : null; | ||
@@ -75,0 +75,0 @@ |
@@ -44,3 +44,6 @@ 'use strict'; | ||
if (!boxSelector || !boxSelector.target || !boxSelector.target.x || !boxSelector.target.y) { | ||
return { type: _vocab.WHOLE_CANVAS_SELECTOR, target: boxSelector && boxSelector.target || '' }; | ||
return { | ||
type: _vocab.WHOLE_CANVAS_SELECTOR, | ||
target: boxSelector && boxSelector.target || '' | ||
}; | ||
} | ||
@@ -47,0 +50,0 @@ boxSelector.type = _vocab.BOX_SELECTOR; |
@@ -61,3 +61,6 @@ 'use strict'; | ||
var contexts = Object.keys(context).map(function (key) { | ||
return { key: key, id: context[key] && context[key][_vocab.ID] ? context[key][_vocab.ID] : null }; | ||
return { | ||
key: key, | ||
id: context[key] && context[key][_vocab.ID] ? context[key][_vocab.ID] : null | ||
}; | ||
}); | ||
@@ -153,3 +156,5 @@ | ||
function warning(component, id, message) { | ||
process.env.NODE_ENV !== 'production' && process.env.NODE_ENV !== 'test' && console.warn('WARNING: ' + component + '\n==================================================\nPlease check model at:\n' + id + '\n\n' + message + '\n'); | ||
if (process.env.NODE_ENV !== 'production' && process.env.NODE_ENV !== 'test') { | ||
console.warn('WARNING: ' + component + '\n==================================================\nPlease check model at:\n' + id + '\n\n' + message + '\n'); | ||
} | ||
} |
{ | ||
"name": "@annotation-studio/bridge", | ||
"version": "1.0.0-pr.f0457139", | ||
"version": "1.0.0-pr.f4483907", | ||
"description": "Describe annotation-bridge here", | ||
@@ -25,12 +25,12 @@ "main": "lib/index.js", | ||
"peerDependencies": { | ||
"@annotation-studio/redux": "^1.0.0-rc.14" | ||
"@annotation-studio/redux": "1.0.0-rc.20" | ||
}, | ||
"devDependencies": { | ||
"@annotation-studio/redux": "^1.0.0-pr.f0457139", | ||
"@fesk/test-environment": "^1.0.0-pr.f0457139", | ||
"@annotation-studio/redux": "1.0.0-pr.f4483907", | ||
"@fesk/test-environment": "1.0.0-pr.f4483907", | ||
"babel-jest": "^20.0.3", | ||
"jest": "^20.0.0", | ||
"nwb": "^0.21.5", | ||
"nwb-watch": "^1.0.0-pr.f0457139", | ||
"react": "^15.6.2" | ||
"nwb-watch": "1.0.0-pr.f4483907", | ||
"react": "^16.5.0" | ||
}, | ||
@@ -37,0 +37,0 @@ "publishConfig": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
70169
1729