Skip to content

Commit 35e5306

Browse files
committed
refactor(mon-pix): improve circle-chart component
1 parent adef580 commit 35e5306

File tree

5 files changed

+14
-23
lines changed

5 files changed

+14
-23
lines changed

mon-pix/app/components/circle-chart.hbs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<div class="circle-chart" ...attributes>
2-
<svg viewBox="1.2 1.2 33.6 33.6" class={{concat "circle-chart__content " @chartClass}} aria-hidden="true">
1+
<div class={{concat "circle-chart " @chartClass}} ...attributes>
2+
<svg class="cicle-chart__circle" viewBox="1.2 1.2 33.6 33.6" aria-hidden="true">
33
<path class={{concat "circle " @thicknessClass}} d="M18 2 a 16 16 0 0 1 0 32 a 16 16 0 0 1 0 -32">
44
</path>
55

mon-pix/app/components/competence-card-default.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<CircleChart
2323
@value={{@scorecard.capedPercentageAheadOfNextLevel}}
2424
@sliceColor={{@scorecard.area.color}}
25-
@chartClass="circle-chart__content--big"
25+
@chartClass="circle-chart--big"
2626
@thicknessClass="circle--thick"
2727
role="presentation"
2828
>

mon-pix/app/components/competence-card-mobile.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<CircleChart
1818
@value={{@scorecard.capedPercentageAheadOfNextLevel}}
1919
@sliceColor={{@scorecard.area.color}}
20-
@chartClass="circle-chart__content--small"
20+
@chartClass="circle-chart--small"
2121
@thicknessClass="circle--thick"
2222
role="presentation"
2323
>

mon-pix/app/styles/components/_circle-chart.scss

+8-12
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,8 @@
77

88
.circle-chart {
99
position: relative;
10-
display: flex;
11-
}
12-
13-
.circle-chart__content {
1410
width: 100px;
1511
height: 100px;
16-
max-height: 128px;
1712

1813
&--small {
1914
width: 70px;
@@ -26,6 +21,11 @@
2621
}
2722
}
2823

24+
.circle-chart__circle {
25+
width: 100%;
26+
height: 100%;
27+
}
28+
2929
.circle {
3030
fill: none;
3131
stroke-width: 1.1;
@@ -64,11 +64,7 @@
6464

6565
.circle-chart__text {
6666
position: absolute;
67-
top: 0;
68-
left: 0;
69-
display: flex;
70-
flex-direction: column;
71-
justify-content: center;
72-
width: 100%;
73-
height: 100%;
67+
top: 50%;
68+
left: 50%;
69+
transform: translate(-50%, -50%);
7470
}

mon-pix/tests/integration/components/circle-chart-test.js

+2-7
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,10 @@ module('Integration | Component | circle-chart', function (hooks) {
5656

5757
test('should display the chart with given width and height', async function (assert) {
5858
// when
59-
await render(hbs`<CircleChart @chartClass='circle-chart__content--big' />`);
59+
await render(hbs`<CircleChart @chartClass='circle-chart--big' />`);
6060

6161
// then
62-
assert.ok(
63-
this.element
64-
.querySelector('.circle-chart__content')
65-
.getAttribute('class')
66-
.includes('circle-chart__content--big'),
67-
);
62+
assert.ok(this.element.querySelector('.circle-chart').getAttribute('class').includes('circle-chart--big'));
6863
});
6964
});
7065
});

0 commit comments

Comments
 (0)