Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
coopwire-hypothesis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
孙灵跃 Leon Sun
coopwire-hypothesis
Commits
3a9d395a
Commit
3a9d395a
authored
Jun 23, 2021
by
Kyle Keating
Committed by
Kyle Keating
Jun 23, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove isBrowserExtension logic from settings.js
nb. This is now handled inside of getConfig()
parent
b208c1e9
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
81 deletions
+0
-81
settings.js
src/annotator/config/settings.js
+0
-10
settings-test.js
src/annotator/config/test/settings-test.js
+0
-71
No files found.
src/annotator/config/settings.js
View file @
3a9d395a
...
@@ -2,7 +2,6 @@ import { parseJsonConfig } from '../../boot/parse-json-config';
...
@@ -2,7 +2,6 @@ import { parseJsonConfig } from '../../boot/parse-json-config';
import
{
toBoolean
}
from
'../../shared/type-coercions'
;
import
{
toBoolean
}
from
'../../shared/type-coercions'
;
import
configFuncSettingsFrom
from
'./config-func-settings-from'
;
import
configFuncSettingsFrom
from
'./config-func-settings-from'
;
import
{
isBrowserExtension
}
from
'./is-browser-extension'
;
import
{
urlFromLinkTag
}
from
'./url-from-link-tag'
;
import
{
urlFromLinkTag
}
from
'./url-from-link-tag'
;
/**
/**
...
@@ -130,17 +129,8 @@ export default function settingsFrom(window_) {
...
@@ -130,17 +129,8 @@ export default function settingsFrom(window_) {
}
}
function
hostPageSetting
(
name
,
options
=
{})
{
function
hostPageSetting
(
name
,
options
=
{})
{
const
allowInBrowserExt
=
options
.
allowInBrowserExt
||
false
;
const
hasDefaultValue
=
typeof
options
.
defaultValue
!==
'undefined'
;
const
hasDefaultValue
=
typeof
options
.
defaultValue
!==
'undefined'
;
// TODO: Remove this logic
if
(
!
allowInBrowserExt
&&
isBrowserExtension
(
urlFromLinkTag
(
window_
,
'sidebar'
,
'html'
))
)
{
return
hasDefaultValue
?
options
.
defaultValue
:
null
;
}
if
(
configFuncSettings
.
hasOwnProperty
(
name
))
{
if
(
configFuncSettings
.
hasOwnProperty
(
name
))
{
return
configFuncSettings
[
name
];
return
configFuncSettings
[
name
];
}
}
...
...
src/annotator/config/test/settings-test.js
View file @
3a9d395a
...
@@ -3,21 +3,16 @@ import { $imports } from '../settings';
...
@@ -3,21 +3,16 @@ import { $imports } from '../settings';
describe
(
'annotator/config/settingsFrom'
,
()
=>
{
describe
(
'annotator/config/settingsFrom'
,
()
=>
{
let
fakeConfigFuncSettingsFrom
;
let
fakeConfigFuncSettingsFrom
;
let
fakeIsBrowserExtension
;
let
fakeParseJsonConfig
;
let
fakeParseJsonConfig
;
let
fakeUrlFromLinkTag
;
let
fakeUrlFromLinkTag
;
beforeEach
(()
=>
{
beforeEach
(()
=>
{
fakeConfigFuncSettingsFrom
=
sinon
.
stub
().
returns
({});
fakeConfigFuncSettingsFrom
=
sinon
.
stub
().
returns
({});
fakeIsBrowserExtension
=
sinon
.
stub
().
returns
(
false
);
fakeUrlFromLinkTag
=
sinon
.
stub
().
returns
(
'http://example.com/app.html'
);
fakeUrlFromLinkTag
=
sinon
.
stub
().
returns
(
'http://example.com/app.html'
);
fakeParseJsonConfig
=
sinon
.
stub
().
returns
({});
fakeParseJsonConfig
=
sinon
.
stub
().
returns
({});
$imports
.
$mock
({
$imports
.
$mock
({
'./config-func-settings-from'
:
fakeConfigFuncSettingsFrom
,
'./config-func-settings-from'
:
fakeConfigFuncSettingsFrom
,
'./is-browser-extension'
:
{
isBrowserExtension
:
fakeIsBrowserExtension
,
},
'./url-from-link-tag'
:
{
'./url-from-link-tag'
:
{
urlFromLinkTag
:
fakeUrlFromLinkTag
,
urlFromLinkTag
:
fakeUrlFromLinkTag
,
},
},
...
@@ -354,23 +349,6 @@ describe('annotator/config/settingsFrom', () => {
...
@@ -354,23 +349,6 @@ describe('annotator/config/settingsFrom', () => {
it
(
"defaults to 'always' if there's no showHighlights setting in the host page"
,
()
=>
{
it
(
"defaults to 'always' if there's no showHighlights setting in the host page"
,
()
=>
{
assert
.
equal
(
settingsFrom
(
fakeWindow
()).
showHighlights
,
'always'
);
assert
.
equal
(
settingsFrom
(
fakeWindow
()).
showHighlights
,
'always'
);
});
});
context
(
'when the client is in a browser extension'
,
()
=>
{
beforeEach
(
'configure a browser extension client'
,
()
=>
{
fakeIsBrowserExtension
.
returns
(
true
);
});
it
(
"doesn't read the setting from the host page, defaults to 'always'"
,
()
=>
{
fakeParseJsonConfig
.
returns
({
showHighlights
:
'never'
,
});
fakeConfigFuncSettingsFrom
.
returns
({
showHighlights
:
'never'
,
});
assert
.
equal
(
settingsFrom
(
fakeWindow
()).
showHighlights
,
'always'
);
});
});
});
});
describe
(
'#hostPageSetting'
,
()
=>
{
describe
(
'#hostPageSetting'
,
()
=>
{
...
@@ -378,7 +356,6 @@ describe('annotator/config/settingsFrom', () => {
...
@@ -378,7 +356,6 @@ describe('annotator/config/settingsFrom', () => {
{
{
when
:
'the client is embedded in a web page'
,
when
:
'the client is embedded in a web page'
,
specify
:
'it returns setting values from window.hypothesisConfig()'
,
specify
:
'it returns setting values from window.hypothesisConfig()'
,
isBrowserExtension
:
false
,
configFuncSettings
:
{
foo
:
'configFuncValue'
},
configFuncSettings
:
{
foo
:
'configFuncValue'
},
jsonSettings
:
{
foo
:
'ignored'
},
// hypothesisConfig() overrides js-hypothesis-config
jsonSettings
:
{
foo
:
'ignored'
},
// hypothesisConfig() overrides js-hypothesis-config
expected
:
'configFuncValue'
,
expected
:
'configFuncValue'
,
...
@@ -395,7 +372,6 @@ describe('annotator/config/settingsFrom', () => {
...
@@ -395,7 +372,6 @@ describe('annotator/config/settingsFrom', () => {
{
{
when
:
'the client is embedded in a web page'
,
when
:
'the client is embedded in a web page'
,
specify
:
'it returns setting values from js-hypothesis-config objects'
,
specify
:
'it returns setting values from js-hypothesis-config objects'
,
isBrowserExtension
:
false
,
configFuncSettings
:
{},
configFuncSettings
:
{},
jsonSettings
:
{
foo
:
'jsonValue'
},
jsonSettings
:
{
foo
:
'jsonValue'
},
expected
:
'jsonValue'
,
expected
:
'jsonValue'
,
...
@@ -404,7 +380,6 @@ describe('annotator/config/settingsFrom', () => {
...
@@ -404,7 +380,6 @@ describe('annotator/config/settingsFrom', () => {
when
:
'the client is embedded in a web page'
,
when
:
'the client is embedded in a web page'
,
specify
:
specify
:
'hypothesisConfig() settings override js-hypothesis-config ones'
,
'hypothesisConfig() settings override js-hypothesis-config ones'
,
isBrowserExtension
:
false
,
configFuncSettings
:
{
foo
:
'configFuncValue'
},
configFuncSettings
:
{
foo
:
'configFuncValue'
},
jsonSettings
:
{
foo
:
'jsonValue'
},
jsonSettings
:
{
foo
:
'jsonValue'
},
expected
:
'configFuncValue'
,
expected
:
'configFuncValue'
,
...
@@ -413,7 +388,6 @@ describe('annotator/config/settingsFrom', () => {
...
@@ -413,7 +388,6 @@ describe('annotator/config/settingsFrom', () => {
when
:
'the client is embedded in a web page'
,
when
:
'the client is embedded in a web page'
,
specify
:
specify
:
'even a null from hypothesisConfig() overrides js-hypothesis-config'
,
'even a null from hypothesisConfig() overrides js-hypothesis-config'
,
isBrowserExtension
:
false
,
configFuncSettings
:
{
foo
:
null
},
configFuncSettings
:
{
foo
:
null
},
jsonSettings
:
{
foo
:
'jsonValue'
},
jsonSettings
:
{
foo
:
'jsonValue'
},
expected
:
null
,
expected
:
null
,
...
@@ -422,42 +396,13 @@ describe('annotator/config/settingsFrom', () => {
...
@@ -422,42 +396,13 @@ describe('annotator/config/settingsFrom', () => {
when
:
'the client is embedded in a web page'
,
when
:
'the client is embedded in a web page'
,
specify
:
specify
:
'even an undefined from hypothesisConfig() overrides js-hypothesis-config'
,
'even an undefined from hypothesisConfig() overrides js-hypothesis-config'
,
isBrowserExtension
:
false
,
configFuncSettings
:
{
foo
:
undefined
},
configFuncSettings
:
{
foo
:
undefined
},
jsonSettings
:
{
foo
:
'jsonValue'
},
jsonSettings
:
{
foo
:
'jsonValue'
},
expected
:
undefined
,
expected
:
undefined
,
},
},
{
when
:
'the client is in a browser extension'
,
specify
:
'it always returns null'
,
isBrowserExtension
:
true
,
configFuncSettings
:
{
foo
:
'configFuncValue'
},
jsonSettings
:
{
foo
:
'jsonValue'
},
expected
:
null
,
},
{
when
:
'the client is in a browser extension and allowInBrowserExt: true is given'
,
specify
:
'it returns settings from window.hypothesisConfig()'
,
isBrowserExtension
:
true
,
allowInBrowserExt
:
true
,
configFuncSettings
:
{
foo
:
'configFuncValue'
},
jsonSettings
:
{},
expected
:
'configFuncValue'
,
},
{
when
:
'the client is in a browser extension and allowInBrowserExt: true is given'
,
specify
:
'it returns settings from js-hypothesis-configs'
,
isBrowserExtension
:
true
,
allowInBrowserExt
:
true
,
configFuncSettings
:
{},
jsonSettings
:
{
foo
:
'jsonValue'
},
expected
:
'jsonValue'
,
},
{
{
when
:
'no default value is provided'
,
when
:
'no default value is provided'
,
specify
:
'it returns null'
,
specify
:
'it returns null'
,
isBrowserExtension
:
false
,
allowInBrowserExt
:
false
,
configFuncSettings
:
{},
configFuncSettings
:
{},
jsonSettings
:
{},
jsonSettings
:
{},
defaultValue
:
undefined
,
defaultValue
:
undefined
,
...
@@ -466,8 +411,6 @@ describe('annotator/config/settingsFrom', () => {
...
@@ -466,8 +411,6 @@ describe('annotator/config/settingsFrom', () => {
{
{
when
:
'a default value is provided'
,
when
:
'a default value is provided'
,
specify
:
'it returns that default value'
,
specify
:
'it returns that default value'
,
isBrowserExtension
:
false
,
allowInBrowserExt
:
false
,
configFuncSettings
:
{},
configFuncSettings
:
{},
jsonSettings
:
{},
jsonSettings
:
{},
defaultValue
:
'test value'
,
defaultValue
:
'test value'
,
...
@@ -476,33 +419,19 @@ describe('annotator/config/settingsFrom', () => {
...
@@ -476,33 +419,19 @@ describe('annotator/config/settingsFrom', () => {
{
{
when
:
'a default value is provided but it is overridden'
,
when
:
'a default value is provided but it is overridden'
,
specify
:
'it returns the overridden value'
,
specify
:
'it returns the overridden value'
,
isBrowserExtension
:
false
,
allowInBrowserExt
:
false
,
configFuncSettings
:
{
foo
:
'not the default value'
},
configFuncSettings
:
{
foo
:
'not the default value'
},
jsonSettings
:
{},
jsonSettings
:
{},
defaultValue
:
'the default value'
,
defaultValue
:
'the default value'
,
expected
:
'not the default value'
,
expected
:
'not the default value'
,
},
},
{
when
:
'the client is in a browser extension and a default value is provided'
,
specify
:
'it returns the default value'
,
isBrowserExtension
:
true
,
allowInBrowserExt
:
false
,
configFuncSettings
:
{
foo
:
'ignore me'
},
jsonSettings
:
{
foo
:
'also ignore me'
},
defaultValue
:
'the default value'
,
expected
:
'the default value'
,
},
].
forEach
(
function
(
test
)
{
].
forEach
(
function
(
test
)
{
context
(
test
.
when
,
()
=>
{
context
(
test
.
when
,
()
=>
{
specify
(
test
.
specify
,
()
=>
{
specify
(
test
.
specify
,
()
=>
{
fakeIsBrowserExtension
.
returns
(
test
.
isBrowserExtension
);
fakeConfigFuncSettingsFrom
.
returns
(
test
.
configFuncSettings
);
fakeConfigFuncSettingsFrom
.
returns
(
test
.
configFuncSettings
);
fakeParseJsonConfig
.
returns
(
test
.
jsonSettings
);
fakeParseJsonConfig
.
returns
(
test
.
jsonSettings
);
const
settings
=
settingsFrom
(
fakeWindow
());
const
settings
=
settingsFrom
(
fakeWindow
());
const
setting
=
settings
.
hostPageSetting
(
'foo'
,
{
const
setting
=
settings
.
hostPageSetting
(
'foo'
,
{
allowInBrowserExt
:
test
.
allowInBrowserExt
||
false
,
defaultValue
:
test
.
defaultValue
||
null
,
defaultValue
:
test
.
defaultValue
||
null
,
});
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment