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
32294451
Commit
32294451
authored
Sep 05, 2023
by
Robert Knight
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add CircularProgress component
The implementation approach follows MUI's component of the same name.
parent
469988ed
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
87 additions
and
0 deletions
+87
-0
CircularProgress.tsx
src/sidebar/components/CircularProgress.tsx
+61
-0
CircularProgress-test.js
src/sidebar/components/test/CircularProgress-test.js
+26
-0
No files found.
src/sidebar/components/CircularProgress.tsx
0 → 100644
View file @
32294451
export
type
CircularProgressProps
=
{
/** Width and height of the indicator in pixels. */
size
:
number
;
/** Progress value between 0 and 100. */
value
:
number
;
};
/**
* A compact circular progress indicator.
*/
export
default
function
CircularProgress
({
size
,
value
,
}:
CircularProgressProps
)
{
const
strokeWidth
=
2
;
// Internal diameter of circle.
const
diameter
=
size
-
2
*
strokeWidth
;
const
circumference
=
Math
.
PI
*
diameter
;
return
(
<
span
// This assumes a dark background. We'll need a variant for light
// backgrounds at some point.
className=
"text-grey-3"
role=
"progressbar"
aria
-
valuenow=
{
value
}
style=
{
{
width
:
`${size}px`
,
height
:
`${size}px`
,
// Orient circle so that stroke is drawn starting from the top. By
// default it starts from 3 o'clock and goes clockwise.
transform
:
'rotate(-90deg)'
,
}
}
>
<
svg
viewBox=
{
`0 0 ${size} ${size}`
}
>
<
circle
cx=
{
size
/
2
}
cy=
{
size
/
2
}
r=
{
diameter
/
2
}
fill=
"none"
stroke=
"currentColor"
// eslint-disable-next-line
stroke
-
width=
{
strokeWidth
}
style=
{
{
// Stroke circle with a single dash, shortened by an offset that
// depends on the value.
strokeDasharray
:
circumference
,
strokeDashoffset
:
`${
circumference - circumference * (value / 100)
}px`
,
transitionDuration
:
'300ms'
,
transitionProperty
:
'stroke-dashoffset'
,
}
}
/>
</
svg
>
</
span
>
);
}
src/sidebar/components/test/CircularProgress-test.js
0 → 100644
View file @
32294451
import
{
mount
}
from
'enzyme'
;
import
CircularProgress
from
'../CircularProgress'
;
describe
(
'CircularProgress'
,
()
=>
{
function
renderProgress
(
props
=
{})
{
return
mount
(
<
CircularProgress
size
=
{
40
}
value
=
{
0
}
{...
props
}
/>
)
;
}
it
(
'should display at specified size'
,
()
=>
{
const
wrapper
=
renderProgress
({
size
:
40
});
assert
.
equal
(
wrapper
.
getDOMNode
().
style
.
width
,
'40px'
);
assert
.
equal
(
wrapper
.
getDOMNode
().
style
.
height
,
'40px'
);
});
it
(
'should display expected completion'
,
()
=>
{
const
value
=
75
;
const
wrapper
=
renderProgress
({
size
:
40
,
value
});
const
circle
=
wrapper
.
find
(
'circle'
).
getDOMNode
();
const
dashLength
=
parseFloat
(
circle
.
style
.
strokeDasharray
);
const
dashOffset
=
parseFloat
(
circle
.
style
.
strokeDashoffset
);
assert
.
approximately
(
dashOffset
/
dashLength
,
1
-
value
/
100
,
1
e
-
4
);
});
});
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