Wednesday, July 3, 2024
HomeLanguagesReactReactJS Semantic UI Confirm Addons

ReactJS Semantic UI Confirm Addons

Semantic UI is a modern framework used in developing seamless designs for the website, It gives the user a lightweight experience with its components. It uses the predefined CSS, JQuery language to incorporate in different frameworks.

In this article we will know how to use Confirm Addons in ReactJS Semantic UI Confirm Addons is used to confirm or cancel the action taken by the users.

Properties:

  • Callbacks: Confirm has callbacks for cancel and confirm actions.

Variations:

  • Header: We can define a header in confirm.
  • Content: We can define the content in confirm.
  • Button Text: We can change button text using confirm.
  • Confirm Size: We can define size using confirm

 

Syntax:

<Confirm header='header' content='content'/>

Creating React Application And Installing Module:

  • Step 1: Create a React application using the following command.
    npx create-react-app foldername
  • Step 2: After creating your project folder i.e. foldername, move to it using the following command.
    cd foldername
  • Step 3: Install semantic UI in your given directory.
     npm install semantic-ui-react semantic-ui-css

Project Structure: It will look like the following.

Step to Run Application: Run the application  from the root directory of the project, using the following command.

npm start

Example 1: In this example, we are showing the header and content variation in a confirm addons by using ReactJS Semantic UI Confirm Addons.

App.js




import React, {Component}from 'react'
import { Button, Confirm } from 'semantic-ui-react'
  
const styleLink = document.createElement("link");
styleLink.rel = "stylesheet";
styleLink.href = 
document.head.appendChild(styleLink);
  
<br/>
  
export default class gfg extends Component {
  state = { gfg1: false }
  
  gfg1 = () => this.setState({ gfg1: true })
  close = () => this.setState({ gfg1: false })
  
  render() {
    return (
      <div>
        <Button onClick={this.gfg1}>Show</Button>
        <Confirm
          open={this.state.gfg1}
          header='neveropen'
          content='Semantic UI Confirm Addons'
          onCancel={this.close}
          onConfirm={this.close}
        />
      </div>
    )
  }
}


Output: 

Example 2: In this example, we are showing the Button text variation in a confirm addons by using ReactJS Semantic UI Confirm Addons.

App.js




import React, {Component}from 'react'
import { Button, Confirm } from 'semantic-ui-react'
  
const styleLink = document.createElement("link");
styleLink.rel = "stylesheet";
styleLink.href = 
document.head.appendChild(styleLink);
  
<br/>
  
export default class gfg extends Component {
  state = { gfg1: false }
  
  gfg1 = () => this.setState({ gfg1: true })
  close = () => this.setState({ gfg1: false })
  
  render() {
    return (
      <div>
        <Button onClick={this.gfg1}>Show</Button>
        <Confirm
          open={this.state.gfg1}
          cancelButton='neveropen'
          confirmButton='Semantic UI Confirm Addons'
          onCancel={this.close}
          onConfirm={this.close}
          size='large'
        />
  
      </div>
    )
  }
}


Output:

Reference: https://react.semantic-ui.com/modules/transition

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

Dominic Rubhabha Wardslaus
Dominic Rubhabha Wardslaushttps://neveropen.dev
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments