Code Monkey home page Code Monkey logo

Comments (4)

yysun avatar yysun commented on May 24, 2024

There was an error 1.20.0/2.20.0 release. It is now fixed (cdbd098). Please try again.

from apprun.

StefanLiebig avatar StefanLiebig commented on May 24, 2024

Great now it works. Thanks!

My next attempt was to reuse the web component by creating a second element to get two independent working counters.

...
<body>
  <my-app id='counter'></my-app>
  <my-app id='counter2'></my-app>
  ...

But this does not work as expected. There are now two counters but they are - of course - not independent.
Can the template string approach in the example extended so that it works?

from apprun.

yysun avatar yysun commented on May 24, 2024

Yes, please take a look at this example:
https://apprun-web-component.glitch.me

from apprun.

StefanLiebig avatar StefanLiebig commented on May 24, 2024

Nice!

I think that should be part of the web site.

Is that correct?

<html>
<head>
  <meta charset="utf-8">
  <title>Counter as web component</title>
</head>
<body>
  <my-app id='counter1'></my-app>
  <my-app id='counter2'></my-app>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/custom-elements/1.1.2/custom-elements.min.js"></script>
  <script src="https://unpkg.com/apprun@es6/dist/apprun-html.js"></script>
  <script>
    class Counter extends Component {
      constructor({id}) {
        super();
        this.state = 0;
        this.view = state => `<div>
          <h1>${state}</h1>
          <button onclick='${id}.run("-1")'>-1</button>
          <button onclick='${id}.run("+1")'>+1</button>
          </div>`;
        this.update = {
          '+1': state => state + 1,
          '-1': state => state - 1
        };
      }
    }
    app.webComponent('my-app', Counter);
  </script>
</body>
</html>

from apprun.

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.