Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
plugin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Cosy-Bio
Drugst.One
plugin
Commits
7b04578b
Commit
7b04578b
authored
3 years ago
by
AndiMajore
Browse files
Options
Downloads
Patches
Plain Diff
fixed render order and shadow application for pi-charts
parent
bd439de6
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/utils.ts
+43
-26
43 additions, 26 deletions
src/app/utils.ts
src/index.html
+1
-1
1 addition, 1 deletion
src/index.html
with
44 additions
and
27 deletions
src/app/utils.ts
+
43
−
26
View file @
7b04578b
// From https://stackoverflow.com/a/27709336/3850564
// From https://stackoverflow.com/a/27709336/3850564
import
{
ɵisListLikeIterable
}
from
"
@angular/core
"
;
import
{
ɵisListLikeIterable
}
from
"
@angular/core
"
;
import
{
Node
}
from
"
./interfaces
"
;
import
{
Node
}
from
"
./interfaces
"
;
export
function
getGradientColor
(
startColor
:
string
,
endColor
:
string
,
percent
:
number
)
{
export
function
getGradientColor
(
startColor
:
string
,
endColor
:
string
,
percent
:
number
)
{
// strip the leading # if it's there
// strip the leading # if it's there
...
@@ -59,16 +59,16 @@ export function removeUnderscoreFromKeys(obj) {
...
@@ -59,16 +59,16 @@ export function removeUnderscoreFromKeys(obj) {
}
}
// https://gist.github.com/whitlockjc/9363016
// https://gist.github.com/whitlockjc/9363016
function
trim
(
str
)
{
function
trim
(
str
)
{
return
str
.
replace
(
/^
\s
+|
\s
+$/gm
,
''
);
return
str
.
replace
(
/^
\s
+|
\s
+$/gm
,
''
);
}
}
export
function
rgbaToHex
(
rgba
)
{
export
function
rgbaToHex
(
rgba
)
{
const
inParts
=
rgba
.
substring
(
rgba
.
indexOf
(
"
(
"
)).
split
(
"
,
"
),
const
inParts
=
rgba
.
substring
(
rgba
.
indexOf
(
"
(
"
)).
split
(
"
,
"
),
r
=
parseInt
(
trim
(
inParts
[
0
].
substring
(
1
)),
10
),
r
=
parseInt
(
trim
(
inParts
[
0
].
substring
(
1
)),
10
),
g
=
parseInt
(
trim
(
inParts
[
1
]),
10
),
g
=
parseInt
(
trim
(
inParts
[
1
]),
10
),
b
=
parseInt
(
trim
(
inParts
[
2
]),
10
),
b
=
parseInt
(
trim
(
inParts
[
2
]),
10
),
a
:
number
=
parseFloat
(
parseFloat
(
trim
(
inParts
[
3
].
substring
(
0
,
inParts
[
3
].
length
-
1
))).
toFixed
(
2
));
a
:
number
=
parseFloat
(
parseFloat
(
trim
(
inParts
[
3
].
substring
(
0
,
inParts
[
3
].
length
-
1
))).
toFixed
(
2
));
const
outParts
=
[
const
outParts
=
[
r
.
toString
(
16
),
r
.
toString
(
16
),
g
.
toString
(
16
),
g
.
toString
(
16
),
...
@@ -94,17 +94,17 @@ function componentToHex(c) {
...
@@ -94,17 +94,17 @@ function componentToHex(c) {
export
function
rgbToHex
(
rgb
)
{
export
function
rgbToHex
(
rgb
)
{
const
inParts
=
rgb
.
substring
(
rgb
.
indexOf
(
"
(
"
)).
split
(
"
,
"
),
const
inParts
=
rgb
.
substring
(
rgb
.
indexOf
(
"
(
"
)).
split
(
"
,
"
),
r
=
parseInt
(
trim
(
inParts
[
0
].
substring
(
1
)),
10
),
r
=
parseInt
(
trim
(
inParts
[
0
].
substring
(
1
)),
10
),
g
=
parseInt
(
trim
(
inParts
[
1
]),
10
),
g
=
parseInt
(
trim
(
inParts
[
1
]),
10
),
b
=
parseInt
(
trim
(
inParts
[
2
]),
10
);
b
=
parseInt
(
trim
(
inParts
[
2
]),
10
);
return
"
#
"
+
componentToHex
(
r
)
+
componentToHex
(
g
)
+
componentToHex
(
b
);
return
"
#
"
+
componentToHex
(
r
)
+
componentToHex
(
g
)
+
componentToHex
(
b
);
}
}
// https://stackoverflow.com/questions/1573053/javascript-function-to-convert-color-names-to-hex-codes/47355187#47355187
// https://stackoverflow.com/questions/1573053/javascript-function-to-convert-color-names-to-hex-codes/47355187#47355187
export
function
standardizeColor
(
str
){
export
function
standardizeColor
(
str
)
{
var
ctx
=
document
.
createElement
(
"
canvas
"
).
getContext
(
"
2d
"
);
var
ctx
=
document
.
createElement
(
"
canvas
"
).
getContext
(
"
2d
"
);
ctx
.
fillStyle
=
str
;
ctx
.
fillStyle
=
str
;
return
ctx
.
fillStyle
.
toString
();
return
ctx
.
fillStyle
.
toString
();
}
}
export
function
removeDuplicateObjectsFromList
(
nodes
:
Node
[],
attribute
:
string
):
Node
[]
{
export
function
removeDuplicateObjectsFromList
(
nodes
:
Node
[],
attribute
:
string
):
Node
[]
{
...
@@ -126,7 +126,7 @@ export function removeDuplicateObjectsFromList(nodes: Node[], attribute: string)
...
@@ -126,7 +126,7 @@ export function removeDuplicateObjectsFromList(nodes: Node[], attribute: string)
* @param type - type of the document.
* @param type - type of the document.
*/
*/
export
function
downLoadFile
(
data
:
any
,
type
:
string
,
fmt
:
string
)
{
export
function
downLoadFile
(
data
:
any
,
type
:
string
,
fmt
:
string
)
{
let
blob
=
new
Blob
([
data
],
{
type
:
type
});
let
blob
=
new
Blob
([
data
],
{
type
:
type
});
var
a
=
document
.
createElement
(
"
a
"
);
var
a
=
document
.
createElement
(
"
a
"
);
a
.
href
=
URL
.
createObjectURL
(
blob
);
a
.
href
=
URL
.
createObjectURL
(
blob
);
a
.
download
=
`drugstone_network_
${
new
Date
().
getTime
()}
.
${
fmt
}
`
;
a
.
download
=
`drugstone_network_
${
new
Date
().
getTime
()}
.
${
fmt
}
`
;
...
@@ -135,7 +135,12 @@ export function downLoadFile(data: any, type: string, fmt: string) {
...
@@ -135,7 +135,12 @@ export function downLoadFile(data: any, type: string, fmt: string) {
export
function
RGBAtoRGB
(
rgbaString
)
{
export
function
RGBAtoRGB
(
rgbaString
)
{
const
rgbaStringSplit
=
rgbaString
.
slice
(
5
,
-
1
).
split
(
"
,
"
);
const
rgbaStringSplit
=
rgbaString
.
slice
(
5
,
-
1
).
split
(
"
,
"
);
const
RGBA
=
{
red
:
rgbaStringSplit
[
0
],
green
:
rgbaStringSplit
[
1
],
blue
:
rgbaStringSplit
[
2
],
alpha
:
rgbaStringSplit
[
3
]};
const
RGBA
=
{
red
:
rgbaStringSplit
[
0
],
green
:
rgbaStringSplit
[
1
],
blue
:
rgbaStringSplit
[
2
],
alpha
:
rgbaStringSplit
[
3
]
};
// assume white background
// assume white background
const
bg
=
{
red
:
255
,
green
:
255
,
blue
:
255
};
const
bg
=
{
red
:
255
,
green
:
255
,
blue
:
255
};
const
RGB
=
{
red
:
undefined
,
green
:
undefined
,
blue
:
undefined
};
const
RGB
=
{
red
:
undefined
,
green
:
undefined
,
blue
:
undefined
};
...
@@ -146,9 +151,9 @@ export function RGBAtoRGB(rgbaString) {
...
@@ -146,9 +151,9 @@ export function RGBAtoRGB(rgbaString) {
return
`rgb(
${
RGB
.
red
}
,
${
RGB
.
green
}
,
${
RGB
.
blue
}
)`
;
return
`rgb(
${
RGB
.
red
}
,
${
RGB
.
green
}
,
${
RGB
.
blue
}
)`
;
}
}
export
function
pieChartContextRenderer
({
ctx
,
x
,
y
,
state
:
{
selected
,
hover
},
style
,
label
})
{
export
function
pieChartContextRenderer
({
ctx
,
x
,
y
,
state
:
{
selected
,
hover
},
style
,
label
})
{
console
.
log
(
style
)
console
.
log
(
style
)
ctx
.
drawPieLabel
=
function
(
style
,
x
,
y
,
label
)
{
ctx
.
drawPieLabel
=
function
(
style
,
x
,
y
,
label
)
{
ctx
.
font
=
"
normal 12px sans-serif
"
;
ctx
.
font
=
"
normal 12px sans-serif
"
;
ctx
.
textAlign
=
"
center
"
;
ctx
.
textAlign
=
"
center
"
;
ctx
.
textBaseline
=
"
middle
"
;
ctx
.
textBaseline
=
"
middle
"
;
...
@@ -156,35 +161,47 @@ export function pieChartContextRenderer({ ctx, x, y, state: { selected, hover },
...
@@ -156,35 +161,47 @@ export function pieChartContextRenderer({ ctx, x, y, state: { selected, hover },
ctx
.
fillText
(
label
,
x
,
y
+
style
.
size
+
12
);
ctx
.
fillText
(
label
,
x
,
y
+
style
.
size
+
12
);
}
}
ctx
.
drawPie
=
function
(
style
,
x
,
y
)
{
ctx
.
drawPie
=
function
(
style
,
x
,
y
)
{
const
total
=
1
;
const
total
=
1
;
// draw shadow
// draw shadow
if
(
style
.
shadow
)
{
if
(
style
.
shadow
)
{
ctx
.
save
()
ctx
.
shadowColor
=
style
.
shadowColor
;
ctx
.
shadowColor
=
style
.
shadowColor
;
ctx
.
shadowOffsetX
=
style
.
shadowX
;
ctx
.
shadowOffsetX
=
style
.
shadowX
;
ctx
.
shadowOffsetY
=
style
.
shadowY
;
ctx
.
shadowOffsetY
=
style
.
shadowY
;
ctx
.
shadowBlur
=
10
;
ctx
.
shadowBlur
=
10
;
}
}
// draw white background circle
ctx
.
beginPath
();
ctx
.
fillStyle
=
window
.
getComputedStyle
(
document
.
documentElement
).
getPropertyValue
(
'
--drgstn-background
'
);
ctx
.
arc
(
x
,
y
,
style
.
size
,
0
,
2
*
Math
.
PI
,
false
);
ctx
.
fill
();
ctx
.
stroke
();
// prepare pi-chart
ctx
.
fillStyle
=
style
.
color
?
style
.
color
:
'
rgba(255, 0, 0, 1)
'
;
ctx
.
fillStyle
=
style
.
color
?
style
.
color
:
'
rgba(255, 0, 0, 1)
'
;
// set alpha value to 1
// set alpha value to 1
// ctx.fillStyle = ctx.fillStyle.replace(/[^,]+(?=\))/, '1')
// ctx.fillStyle = ctx.fillStyle.replace(/[^,]+(?=\))/, '1')
ctx
.
fillStyle
=
RGBAtoRGB
(
ctx
.
fillStyle
)
ctx
.
fillStyle
=
RGBAtoRGB
(
ctx
.
fillStyle
)
ctx
.
strokeStyle
=
"
black
"
;
ctx
.
lineWidth
=
2
;
ctx
.
beginPath
();
ctx
.
beginPath
();
ctx
.
moveTo
(
x
,
y
);
ctx
.
moveTo
(
x
,
y
);
const
len
=
style
.
opacity
/
total
*
2
*
Math
.
PI
;
const
len
=
style
.
opacity
/
total
*
2
*
Math
.
PI
;
ctx
.
arc
(
x
,
y
,
style
.
size
,
0
,
0
+
len
,
false
);
ctx
.
arc
(
x
,
y
,
style
.
size
,
0
,
0
+
len
,
false
);
ctx
.
lineTo
(
x
,
y
);
ctx
.
lineTo
(
x
,
y
);
ctx
.
fill
();
ctx
.
fill
();
if
(
style
.
shadow
)
{
// removing shadow application of future fill or stroke calls
ctx
.
restore
();
}
ctx
.
strokeStyle
=
"
black
"
;
ctx
.
lineWidth
=
selected
?
3
:
2
;
if
(
style
.
opacity
!==
total
)
{
if
(
style
.
opacity
!==
total
)
{
// avoid the inner line when circle is complete
// avoid the inner line when circle is complete
ctx
.
stroke
();
ctx
.
stroke
();
}
}
// draw
a cri
cle
// draw
the surrounding border cir
cle
ctx
.
beginPath
();
ctx
.
beginPath
();
ctx
.
arc
(
x
,
y
,
style
.
size
,
0
,
2
*
Math
.
PI
);
ctx
.
arc
(
x
,
y
,
style
.
size
,
0
,
2
*
Math
.
PI
);
ctx
.
stroke
();
ctx
.
stroke
();
...
...
This diff is collapsed.
Click to expand it.
src/index.html
+
1
−
1
View file @
7b04578b
...
@@ -45,7 +45,7 @@
...
@@ -45,7 +45,7 @@
<network-expander
id=
"netexp1"
<network-expander
id=
"netexp1"
pluginId=
"2"
pluginId=
"2"
config=
'{"showLeftSidebar": true, "showSimpleAnalysis":true, "nodeGroups":{"patient":{"type":"patient","color":"black","font":{"color":"#ffffff"},"groupName":"Patient","shape":"image","image":"https://static.thenounproject.com/png/22780-200.png"},"condition":{"type":"condition","color":"black","font":{"color":"black"},"groupName":"Condition","shape":"text"},"important":{"type":"gene","color":"#ff881f","font":{"color":"#000000"},"groupName":"Important Gene","shape":"star"},"gene":{"type":"gene","color":"#4da300","font":{"color":"#
0000
00"},"groupName":"Gene","shape":"circle"},"foundDrug":{"type":"drug","color":{"border":"#F12590","background":"#F12590","highlight":{"border":"#F12590","background":"#F12590"}},"font":{"color":"#f0f0f0"},"groupName":"Drug","shape":"diamond"}},"edgeGroups":{"genotype":{"color":"black","groupName":"Relevant Gene"},"has-condition":{"color":"#000000","groupName":"Has Condition","dashes":[2,2]},"default":{"color":"#000000","groupName":"default edge"},"ggi":{"color":"#000000","groupName":"Interaction","dashes":[3,2]}},"identifier":"symbol","title":"Breast cancer example network","nodeShadow":true,"edgeShadow":false,"autofillEdges":false,"showLegend":true}'
config=
'{"showLeftSidebar": true, "showSimpleAnalysis":true, "nodeGroups":{"patient":{"type":"patient","color":"black","font":{"color":"#ffffff"},"groupName":"Patient","shape":"image","image":"https://static.thenounproject.com/png/22780-200.png"},"condition":{"type":"condition","color":"black","font":{"color":"black"},"groupName":"Condition","shape":"text"},"important":{"type":"gene","color":"#ff881f","font":{"color":"#000000"},"groupName":"Important Gene","shape":"star"},"gene":{"type":"gene","color":"#4da300","font":{"color":"#
4da3
00"},"groupName":"Gene","shape":"circle"},"foundDrug":{"type":"drug","color":{"border":"#F12590","background":"#F12590","highlight":{"border":"#F12590","background":"#F12590"}},"font":{"color":"#f0f0f0"},"groupName":"Drug","shape":"diamond"}},"edgeGroups":{"genotype":{"color":"black","groupName":"Relevant Gene"},"has-condition":{"color":"#000000","groupName":"Has Condition","dashes":[2,2]},"default":{"color":"#000000","groupName":"default edge"},"ggi":{"color":"#000000","groupName":"Interaction","dashes":[3,2]}},"identifier":"symbol","title":"Breast cancer example network","nodeShadow":true,"edgeShadow":false,"autofillEdges":false,"showLegend":true}'
network=
'{"nodes":[{"id":"patient-1","group":"patient","x":592,"y":446},{"id":"patient-2","group":"patient","x":235,"y":87},{"id":"patient-3","group":"patient","x":105,"y":369},{"id":"ATM","label":"ATM","group":"gene","x":289,"y":242},{"id":"BARD1","label":"BARD1","group":"gene","x":44,"y":250},{"id":"BRCA1","label":"BRCA1","group":"gene","x":466,"y":576},{"id":"BRCA2","label":"BRCA2","group":"gene","x":507,"y":285},{"id":"BRIP1","label":"BRIP1","group":"gene","x":54,"y":474},{"id":"CHEK2","label":"CHEK2","group":"gene","x":216,"y":590},{"id":"CDH1","label":"CDH1","group":"gene","x":320,"y":-57},{"id":"NF1","label":"NF1","group":"gene","x":481,"y":111},{"id":"NBN","label":"NBN","group":"gene","x":-57,"y":314},{"id":"PALB2","label":"PALB2","group":"gene","x":450,"y":190},{"id":"PTEN","label":"PTEN","group":"important","x":305,"y":494},{"id":"RAD51C","label":"RAD51C","group":"gene","x":182,"y":-90},{"id":"RAD51D","label":"RAD51D","group":"gene","x":368,"y":73},{"id":"STK11","label":"STK11","group":"gene","x":686,"y":330},{"id":"TP53","label":"TP53","group":"important","x":333,"y":316},{"id":"subtype-1","label":"Subtype 1","group":"condition","x":556,"y":171},{"id":"subtype-2","label":"Subtype 2","group":"condition","x":-87,"y":221}],"edges":[{"from":"BRCA1","to":"BRCA2","group":"ggi"},{"from":"ATM","to":"BARD1","group":"ggi"},{"from":"BRCA1","to":"CHEK2","group":"ggi"},{"from":"RAD51C","to":"RAD51D","group":"ggi"},{"from":"STK11","to":"TP53","group":"ggi"},{"from":"TP53","to":"PALB2","group":"ggi"},{"from":"TP53","to":"RAD51D","group":"ggi"},{"from":"TP53","to":"NF1","group":"ggi"},{"from":"TP53","to":"BRCA1","group":"ggi"},{"from":"TP53","to":"BRCA2","group":"ggi"},{"from":"PTEN","to":"BRCA1","group":"ggi"},{"from":"PTEN","to":"BRCA2","group":"ggi"},{"from":"TP53","to":"PTEN","group":"ggi"},{"from":"ATM","to":"PTEN","group":"ggi"},{"from":"CDH1","to":"RAD51D","group":"ggi"},{"from":"CDH1","to":"PALB2","group":"ggi"},{"from":"NBN","to":"BRIP1","group":"ggi"},{"from":"BRIP1","to":"PTEN","group":"ggi"},{"from":"patient-1","to":"BRCA1","group":"genotype"},{"from":"patient-1","to":"TP53","group":"genotype"},{"from":"patient-1","to":"BRCA2","group":"genotype"},{"from":"patient-1","to":"PTEN","group":"genotype"},{"from":"patient-2","to":"TP53","group":"genotype"},{"from":"patient-2","to":"NF1","group":"genotype"},{"from":"patient-2","to":"BARD1","group":"genotype"},{"from":"patient-3","to":"TP53","group":"genotype"},{"from":"patient-3","to":"PTEN","group":"genotype"},{"from":"patient-3","to":"NBN","group":"genotype"},{"from":"patient-1","to":"subtype-1","group":"has-condition"},{"from":"patient-2","to":"subtype-1","group":"has-condition"},{"from":"patient-3","to":"subtype-2","group":"has-condition"}]}'
>
network=
'{"nodes":[{"id":"patient-1","group":"patient","x":592,"y":446},{"id":"patient-2","group":"patient","x":235,"y":87},{"id":"patient-3","group":"patient","x":105,"y":369},{"id":"ATM","label":"ATM","group":"gene","x":289,"y":242},{"id":"BARD1","label":"BARD1","group":"gene","x":44,"y":250},{"id":"BRCA1","label":"BRCA1","group":"gene","x":466,"y":576},{"id":"BRCA2","label":"BRCA2","group":"gene","x":507,"y":285},{"id":"BRIP1","label":"BRIP1","group":"gene","x":54,"y":474},{"id":"CHEK2","label":"CHEK2","group":"gene","x":216,"y":590},{"id":"CDH1","label":"CDH1","group":"gene","x":320,"y":-57},{"id":"NF1","label":"NF1","group":"gene","x":481,"y":111},{"id":"NBN","label":"NBN","group":"gene","x":-57,"y":314},{"id":"PALB2","label":"PALB2","group":"gene","x":450,"y":190},{"id":"PTEN","label":"PTEN","group":"important","x":305,"y":494},{"id":"RAD51C","label":"RAD51C","group":"gene","x":182,"y":-90},{"id":"RAD51D","label":"RAD51D","group":"gene","x":368,"y":73},{"id":"STK11","label":"STK11","group":"gene","x":686,"y":330},{"id":"TP53","label":"TP53","group":"important","x":333,"y":316},{"id":"subtype-1","label":"Subtype 1","group":"condition","x":556,"y":171},{"id":"subtype-2","label":"Subtype 2","group":"condition","x":-87,"y":221}],"edges":[{"from":"BRCA1","to":"BRCA2","group":"ggi"},{"from":"ATM","to":"BARD1","group":"ggi"},{"from":"BRCA1","to":"CHEK2","group":"ggi"},{"from":"RAD51C","to":"RAD51D","group":"ggi"},{"from":"STK11","to":"TP53","group":"ggi"},{"from":"TP53","to":"PALB2","group":"ggi"},{"from":"TP53","to":"RAD51D","group":"ggi"},{"from":"TP53","to":"NF1","group":"ggi"},{"from":"TP53","to":"BRCA1","group":"ggi"},{"from":"TP53","to":"BRCA2","group":"ggi"},{"from":"PTEN","to":"BRCA1","group":"ggi"},{"from":"PTEN","to":"BRCA2","group":"ggi"},{"from":"TP53","to":"PTEN","group":"ggi"},{"from":"ATM","to":"PTEN","group":"ggi"},{"from":"CDH1","to":"RAD51D","group":"ggi"},{"from":"CDH1","to":"PALB2","group":"ggi"},{"from":"NBN","to":"BRIP1","group":"ggi"},{"from":"BRIP1","to":"PTEN","group":"ggi"},{"from":"patient-1","to":"BRCA1","group":"genotype"},{"from":"patient-1","to":"TP53","group":"genotype"},{"from":"patient-1","to":"BRCA2","group":"genotype"},{"from":"patient-1","to":"PTEN","group":"genotype"},{"from":"patient-2","to":"TP53","group":"genotype"},{"from":"patient-2","to":"NF1","group":"genotype"},{"from":"patient-2","to":"BARD1","group":"genotype"},{"from":"patient-3","to":"TP53","group":"genotype"},{"from":"patient-3","to":"PTEN","group":"genotype"},{"from":"patient-3","to":"NBN","group":"genotype"},{"from":"patient-1","to":"subtype-1","group":"has-condition"},{"from":"patient-2","to":"subtype-1","group":"has-condition"},{"from":"patient-3","to":"subtype-2","group":"has-condition"}]}'
>
}'>
</network-expander>
}'>
</network-expander>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment