Content-Length: 356489 | pFad | https://github.com/NativeScript/NativeScript/issues/10403

0B Error when box-shadow is set no none · Issue #10403 · NativeScript/NativeScript · GitHub
Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error when box-shadow is set no none #10403

Closed
3 tasks done
asharghi opened this issue Oct 12, 2023 · 10 comments · Fixed by #10405 or #10445
Closed
3 tasks done

Error when box-shadow is set no none #10403

asharghi opened this issue Oct 12, 2023 · 10 comments · Fixed by #10405 or #10445

Comments

@asharghi
Copy link
Contributor

asharghi commented Oct 12, 2023

Issue Description

After updating to core 8.6, I get this error. Seems to work with box-shadow: none anyway, but the error should be removed

CONSOLE ERROR: Error: Failed to apply property [box-shadow] with value [none] to Button(11). TypeError: Cannot read properties of null (reading 'values')
  JS:     at parseCSSShadow (file: app/webpack:/css-test/node_modules/@nativescript/core/ui/styling/css-shadow.js:58:0)
  JS:     at valueConverter (file: app/webpack:/css-test/node_modules/@nativescript/core/ui/styling/style-properties.js:1146:29)
  JS:     at Style.setCssValue [as css:box-shadow] (file: app/webpack:/css-test/node_modules/@nativescript/core/ui/core/properties/index.js:573:0)
  JS:     at CssState.setPropertyValues (file: app/webpack:/css-test/node_modules/@nativescript/core/ui/styling/style-scope.js:555:47)
  JS:     at file: app/webpack:/css-test/node_modules/@nativescript/core/ui/styling/style-scope.js:431:0
  JS:     at Button._batchUpdate (file: app/webpack:/css-test/node_modules/@nativescript/core/ui/core/view-base/index.js:361:0)
  JS:     at CssState.updateDynamicState (file: app/webpack:/css-test/node_modules/@nativescript/core/ui/styling/style-scope.js:429:0)
  JS:     at CssState.onLoaded (file: app/webpack:/css-test/node_modules/@nativescript/core/ui/styling/style-scope.js:399:0)
  JS:     at Button.onLoaded (file://github.com/data/data/org.nativescript.csst...

Reproduction

Add an element with box-shadow: none in css or inline style

Relevant log output (if applicable)

No response

Environment

"dependencies": {
    "@nativescript/core": "~8.6.0",
    "@nativescript/theme": "~3.0.2",
    "nativescript-vue": "~2.9.3"
  },
  "devDependencies": {
    "@nativescript/android": "8.5.4",
    "@nativescript/webpack": "~5.0.18",
    "nativescript-vue-template-compiler": "~2.9.3"
  }

Please accept these terms

@asharghi asharghi added the bug-pending-triage Reported bug, pending triage to confirm. label Oct 12, 2023
@CatchABus
Copy link
Contributor

CatchABus commented Oct 12, 2023

Issue Description

After updating to core 8.6, I get this error. Seems to work with box-shadow: none anyway, but the error should be removed

Did this value apply without problems in prior versions?
EDITED: @NathanWalker I checked commits and I think text-stroke PR broke this detail because we split shadow parse functions.

@NathanWalker NathanWalker self-assigned this Oct 12, 2023
@NathanWalker NathanWalker added in progress hacktoberfest and removed bug-pending-triage Reported bug, pending triage to confirm. labels Oct 12, 2023
@NathanWalker
Copy link
Contributor

Thanks @CatchABus yep see what it is, we'll include in a patch.

@Reached
Copy link

Reached commented Nov 13, 2023

Has this fix been published? :)

EDIT

I see that it's part of 8.6.1, however it does not seem to work for me, my app still crashes until I remove the box-shadow: none; from the respective elements which has it.

@NathanWalker
Copy link
Contributor

That sounds odd - your lock file reflects 8.6+?

@Reached
Copy link

Reached commented Nov 14, 2023

Yes indeed.

From the lock file:

"dependencies": {
        "@nativescript-community/ui-material-bottom-navigation": "^7.2.7",
        "@nativescript/core": "^8.6.1",

I do a clean install with ns clean and then ns run android --no-hmr, but the result is the same :/

I worked around it by only using box-shadow: none for iOS.

@CatchABus
Copy link
Contributor

CatchABus commented Nov 15, 2023

I confirmed this. It seems latest fix does not help with box shadow as there are few cases in core that still rely on shadow being null when none, in order to determine whether it should be drawn.
We should definitely revisit the problem.

@NathanWalker
Copy link
Contributor

Lets reopen this and get a proper patch published, thanks for bringing this up.

@NathanWalker NathanWalker reopened this Nov 16, 2023
@NathanWalker
Copy link
Contributor

NathanWalker commented Nov 18, 2023

@asharghi @CatchABus I tried to repro this and see no errors? All render properly and with no shadow.

<Button style="box-shadow: none" />

<Button boxShadow="none" />

<Button class="none" />

.none {
  box-shadow: none;
}

@CatchABus
Copy link
Contributor

CatchABus commented Nov 19, 2023

@asharghi @CatchABus I tried to repro this and see no errors? All render properly and with no shadow.

<Button style="box-shadow: none" />

<Button boxShadow="none" />

<Button class="none" />

.none {
  box-shadow: none;
}

Shadow should actually throw on android specifically. On iOS, it will not throw any errors but will attempt to create CALayers for shadow while not needed instead.

I found few locations affected by parseCSSShadow changes:
https://github.com/NativeScript/NativeScript/blob/main/packages/core/ui/styling/style-properties.ts#L1234
https://github.com/NativeScript/NativeScript/blob/main/packages/core/ui/styling/background-common.ts#L314
https://github.com/NativeScript/NativeScript/blob/main/packages/core/ui/text-base/index.ios.ts#L418

These cases rely on box shadow or text shadow being null when none, after parsing.

@NathanWalker
Copy link
Contributor

Ok thanks that makes sense now. We'll fix android to be ignored as well in this case.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
4 participants








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: https://github.com/NativeScript/NativeScript/issues/10403

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy