Open DK-Stern opened 2 years ago
Thanks for the detailed write up! We should also fix the underlying issue of media condition parsing not being properly implemented.
You're welcome! To fix the underlaying issue would be great, but it i think could be really hard to find a solution which interprets all possible media queries and transforms them to valid css. Is there any code from amp framework we could reuse?
Not that I'm aware of. There is https://github.com/albell/parse-sizes as a lightweight standalone solution (haven't tested it). If the sizes attribute is valid, we shouldn't have a problem transforming the attribute as we can use the whole media query. We need to be able to tell though if the sizes attribute is valid.
Ok that sound great. 👍
Beside that, would it be possible to make a small release (e.g. v2.8.9) with the two bug fixes #1305 and #1303? In my current project many amp sites are broken, because of that bugs. 😅
Just published 2.8.9. Thanks for the reminder :-)
Issue
A node fails transforming, if it has 'heights'-attribute which contains more than one media query. Also the attribute got removed on rendering, if it had failed on transforming.
For example
Will be rendered by amp framework, without any validation errors and with correct media queries. But on SSR with amp optimizer i get following error and the 'heights'-attribute will be removed on rendered amp page:
Reason
parseSizes(string)
throws an error for strings which has more than one ')' and trailing characters.https://github.com/ampproject/amp-toolbox/blob/b367a2db78e1934e5c3e72727777e7c29d6a3b35/packages/optimizer/lib/parseSizes.js#L61-L64
When function
transform(node, id)
ofHeightsTransformer
gets called on nodes with 'height'-attributes, which contain a value with multiple media queries,parseSizes(string)
will throw an error andApplyCommonAttributes
will catch that error and logs them.https://github.com/ampproject/amp-toolbox/blob/b367a2db78e1934e5c3e72727777e7c29d6a3b35/packages/optimizer/lib/transformers/ApplyCommonAttributes.js#L206-L214
In function
applyToCustomStyles(head, customStyles)
ofApplyCommonAttributes
the attributes 'heights', 'media' and 'sizes' will be removed on nodes which are in arraynodesToTransform
and my own value in 'heights'-attribute (which could not be transformed) will be removed. So the result is, the rendered amp component has no 'heights' attribute at all.https://github.com/ampproject/amp-toolbox/blob/b367a2db78e1934e5c3e72727777e7c29d6a3b35/packages/optimizer/lib/transformers/ApplyCommonAttributes.js#L246-L250
Solutions
First possible solution
One possible solution would be, that nodes which could not be transformed should be removed from array
nodesToTransform
, so the values could stay if transformation fails.This could be done with following code:
In context it would look like that:
Second possible solution
An other solution would be, that function
parseSize(string)
would accept all values which amp framework does. Maybe for the second solution it would make sense, to ignore all nodes where parseSizes(string) could not parse values, too.PR
I've created a PR with a fix described in first solution: https://github.com/ampproject/amp-toolbox/pull/1305