Creating components
DoksJS components are the basic building blocks of DoksJS applications. They are declarative, meaning that you can define the desired state of your component and DoksJS will take care of the rest.
To create a DoksJS component, you need to create a JavaScript class that extends the Component
class. The Component
class is a base class that provides all of the functionality that you need to create a DoksJS component.
Here is an example of a DoksJS component that displays a button:
This component has a constructor that takes in the props and initializes the state. The state variable isPressed
tracks whether or not the button has been clicked. The handleClick() function is called when the button is clicked and it updates the state variable isPressed
. The render() function renders the button component and sets the style of the button based on the value of the state variable isPressed
.
To use the Button
component in your application, you will need to import it and then instantiate it. For example, the following code will create a button and add it to the DOM:
This code will create a button with the text "Click me!". When the user clicks the button, it will log the message "Button clicked!" to the console.