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
6842a489
Commit
6842a489
authored
Apr 02, 2019
by
Robert Knight
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Convert `<svg-icon>` component to React
parent
05f003d3
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
40 deletions
+32
-40
svg-icon.js
src/sidebar/components/svg-icon.js
+20
-22
svg-icon-test.js
src/sidebar/components/test/svg-icon-test.js
+11
-17
index.js
src/sidebar/index.js
+1
-1
No files found.
src/sidebar/components/svg-icon.js
View file @
6842a489
'use strict'
;
'use strict'
;
/**
const
{
createElement
}
=
require
(
'preact'
);
* The <svg-icon> component renders SVG icons using inline <svg> tags,
const
propTypes
=
require
(
'prop-types'
);
* enabling their appearance to be customized via CSS.
*
* This matches the way we do icons on the website, see
* https://github.com/hypothesis/h/pull/3675
*/
// The list of supported icons
// The list of supported icons
const
icons
=
{
const
icons
=
{
...
@@ -14,21 +9,24 @@ const icons = {
...
@@ -14,21 +9,24 @@ const icons = {
cursor
:
require
(
'../../images/icons/cursor.svg'
),
cursor
:
require
(
'../../images/icons/cursor.svg'
),
};
};
// @ngInject
/**
function
SvgIconController
(
$element
)
{
* Component that renders icons using inline `<svg>` elements.
this
.
$onInit
=
()
=>
{
* This enables their appearance to be customized via CSS.
if
(
!
icons
[
this
.
name
])
{
*
throw
new
Error
(
'Unknown icon: '
+
this
.
name
);
* This matches the way we do icons on the website, see
* https://github.com/hypothesis/h/pull/3675
*/
function
SvgIcon
({
name
})
{
if
(
!
icons
[
name
])
{
throw
new
Error
(
`Unknown icon
${
name
}
`
);
}
}
$element
[
0
].
innerHTML
=
icons
[
this
.
name
]
;
const
markup
=
{
__html
:
icons
[
name
]
}
;
}
;
return
<
span
dangerouslySetInnerHTML
=
{
markup
}
/>
;
}
}
module
.
exports
=
{
SvgIcon
.
propTypes
=
{
controllerAs
:
'vm'
,
controller
:
SvgIconController
,
bindings
:
{
/** The name of the icon to load. */
/** The name of the icon to load. */
name
:
'<'
,
name
:
propTypes
.
string
,
},
};
};
module
.
exports
=
SvgIcon
;
src/sidebar/components/test/svg-icon-test.js
View file @
6842a489
'use strict'
;
'use strict'
;
const
angular
=
require
(
'angular
'
);
const
{
createElement
,
render
}
=
require
(
'preact
'
);
const
util
=
require
(
'../../directive/test/util
'
);
const
SvgIcon
=
require
(
'../svg-icon
'
);
describe
(
'svgIcon'
,
function
()
{
describe
(
'SvgIcon'
,
()
=>
{
before
(
function
()
{
it
(
"sets the element's content to the content of the SVG"
,
()
=>
{
angular
.
module
(
'app'
,
[]).
component
(
'svgIcon'
,
require
(
'../svg-icon'
));
const
container
=
document
.
createElement
(
'div'
);
render
(
<
SvgIcon
name
=
"refresh"
/>
,
container
);
assert
.
ok
(
container
.
querySelector
(
'svg'
));
});
});
beforeEach
(
function
()
{
it
(
'throws an error if the icon is unknown'
,
()
=>
{
angular
.
mock
.
module
(
'app'
);
assert
.
throws
(()
=>
{
});
const
container
=
document
.
createElement
(
'div'
);
render
(
<
SvgIcon
name
=
"unknown"
/>
,
container
);
it
(
"sets the element's content to the content of the SVG"
,
function
()
{
const
el
=
util
.
createDirective
(
document
,
'svgIcon'
,
{
name
:
'refresh'
});
assert
.
ok
(
el
[
0
].
querySelector
(
'svg'
));
});
it
(
'throws an error if the icon is unknown'
,
function
()
{
assert
.
throws
(
function
()
{
util
.
createDirective
(
document
,
'svgIcon'
,
{
name
:
'unknown'
});
});
});
});
});
});
});
src/sidebar/index.js
View file @
6842a489
...
@@ -184,7 +184,7 @@ function startAngularApp(config) {
...
@@ -184,7 +184,7 @@ function startAngularApp(config) {
.
component
(
'sortDropdown'
,
require
(
'./components/sort-dropdown'
))
.
component
(
'sortDropdown'
,
require
(
'./components/sort-dropdown'
))
.
component
(
'spinner'
,
require
(
'./components/spinner'
))
.
component
(
'spinner'
,
require
(
'./components/spinner'
))
.
component
(
'streamContent'
,
require
(
'./components/stream-content'
))
.
component
(
'streamContent'
,
require
(
'./components/stream-content'
))
.
component
(
'svgIcon'
,
require
(
'./components/svg-icon'
))
.
component
(
'svgIcon'
,
wrapReactComponent
(
require
(
'./components/svg-icon'
)
))
.
component
(
'tagEditor'
,
require
(
'./components/tag-editor'
))
.
component
(
'tagEditor'
,
require
(
'./components/tag-editor'
))
.
component
(
'threadList'
,
require
(
'./components/thread-list'
))
.
component
(
'threadList'
,
require
(
'./components/thread-list'
))
.
component
(
'timestamp'
,
require
(
'./components/timestamp'
))
.
component
(
'timestamp'
,
require
(
'./components/timestamp'
))
...
...
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