Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
waterdataui
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Water Mission Area
Internet of Water
waterdataui
Commits
b31c53b0
Commit
b31c53b0
authored
6 years ago
by
Briggs, Aaron Shane
Browse files
Options
Downloads
Patches
Plain Diff
Cleaning up code, adding constants for transform strings
parent
060f33c5
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
assets/src/scripts/components/hydrograph/index.js
+11
-6
11 additions, 6 deletions
assets/src/scripts/components/hydrograph/index.js
with
11 additions
and
6 deletions
assets/src/scripts/components/hydrograph/index.js
+
11
−
6
View file @
b31c53b0
...
...
@@ -8,7 +8,7 @@ const { select } = require('d3-selection');
const
{
createStructuredSelector
}
=
require
(
'
reselect
'
);
const
{
addSVGAccessibility
,
addSROnlyTable
}
=
require
(
'
../../accessibility
'
);
const
{
USWDS_LARGE_SCREEN
,
USWDS_MEDIUM_SCREEN
,
USWDS_SMALL_SCREEN
,
STATIC_URL
}
=
require
(
'
../../config
'
);
const
{
USWDS_MEDIUM_SCREEN
,
USWDS_SMALL_SCREEN
,
STATIC_URL
}
=
require
(
'
../../config
'
);
const
{
dispatch
,
link
,
provide
}
=
require
(
'
../../lib/redux
'
);
const
{
Actions
}
=
require
(
'
../../store
'
);
const
{
mediaQuery
}
=
require
(
'
../../utils
'
);
...
...
@@ -289,16 +289,21 @@ const watermark = function (elem) {
.
classed
(
'
watermark
'
,
true
)
.
attr
(
'
src
'
,
STATIC_URL
+
'
/img/USGS_green_logo.svg
'
)
.
call
(
link
(
function
(
elem
,
layout
)
{
const
transformStringSmallScreen
=
`matrix(0.5, 0, 0, 0.5,
${(
layout
.
width
-
layout
.
margin
.
left
)
*
.
025
+
layout
.
margin
.
left
-
50
}
,
${
layout
.
height
*
.
60
}
)`
;
const
transformStringForAllOtherScreens
=
`matrix(1, 0, 0, 1,
${(
layout
.
width
-
layout
.
margin
.
left
)
*
.
025
+
layout
.
margin
.
left
}
,
${(
layout
.
height
*
.
75
-
(
-
1
*
layout
.
height
+
503
)
*
.
12
)}
)`
;
if
(
!
mediaQuery
(
USWDS_SMALL_SCREEN
))
{
// calculates the watermark position based on current layout dimensions and a conversion factor minus the area for blank space due to scaling
elem
.
style
(
'
transform
'
,
`matrix(0.5, 0, 0, 0.5,
${(
layout
.
width
-
layout
.
margin
.
left
)
*
.
025
+
layout
.
margin
.
left
-
50
}
,
${
layout
.
height
*
.
60
}
)`
);
// calculates the watermark position based on current layout dimensions
// and a conversion factor minus the area for blank space due to scaling
elem
.
style
(
'
transform
'
,
transformStringSmallScreen
);
// adapts code for Safari browser
elem
.
style
(
'
transform
'
,
`matrix(0.5, 0, 0, 0.5,
${(
layout
.
width
-
layout
.
margin
.
left
)
*
.
025
+
layout
.
margin
.
left
-
50
}
,
${
layout
.
height
*
.
60
}
)`
);
elem
.
style
(
'
-webkit-
transform
'
,
transformStringSmallScreen
);
}
else
{
// calculates the watermark position based on current layout dimensions and a conversion factor
elem
.
style
(
'
transform
'
,
`matrix(1, 0, 0, 1,
${(
layout
.
width
-
layout
.
margin
.
left
)
*
.
025
+
layout
.
margin
.
left
}
,
${(
layout
.
height
*
.
75
-
(
-
1
*
layout
.
height
+
503
)
*
.
12
)}
)`
);
elem
.
style
(
'
transform
'
,
transformStringForAllOtherScreens
);
// adapts code for Safari browser
elem
.
style
(
'
-webkit-transform
'
,
`matrix(1, 0, 0, 1,
${(
layout
.
width
-
layout
.
margin
.
left
)
*
.
025
+
layout
.
margin
.
left
}
,
${(
layout
.
height
*
.
75
-
(
-
1
*
layout
.
height
+
503
)
*
.
12
)}
)`
);
elem
.
style
(
'
-webkit-transform
'
,
transformStringForAllOtherScreens
);
}
},
layoutSelector
));
};
...
...
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