Giter VIP home page Giter VIP logo

Comments (2)

kateinoigakukun avatar kateinoigakukun commented on July 30, 2024

This is a limitation of the current API design of JavaScriptKit.
spanElem.style.backgroundColor = "yellow" is evaluated as below:

var style = spanElem.style
style.backgroundColor = "yellow"
spanElem.style = style

Even style is a reference type in JavaScript world, it's expressed by value type in Swift, so spanElem.style = style re-assignment is appeared. But this assignment causes undefined behavior because HTMLElement.style is readonly property and it clears all CSS attributes.

I'll re-design JavaScriptKit API to resolve this semantics mismatch, but please use this workaround to avoid re-assignment for a while. Sorry.

import JavaScriptKit

let document = JSObject.global.document

var spanElem = document.createElement("span")
spanElem.innerText = "hello"
var style  = spanElem.style as JSValue
style.backgroundColor = "yellow"

_ = document.body.appendChild(spanElem)

from javascriptkit.

Feuermurmel avatar Feuermurmel commented on July 30, 2024

Thank you for your very helpful response! With it I'm no longer stuck and can continue with my project. :) One note:

I'll re-design JavaScriptKit API to resolve this semantics mismatch, but please use this workaround to avoid re-assignment for a while. Sorry.

var style  = spanElem.style

I had to write spanElem.style as JSValue because I would otherwise get the following error:

[...]/main.swift:7:14: error: ambiguous use of 'subscript(dynamicMember:)'
var style  = spanElem.style

This problem pops up here and there. Maybe a re-design could also alleviate this small annoyance? If there's already a document or issue use to gather such input I'd be happy to contribute this observation (and some others) there!

from javascriptkit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.