Open In App

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:

Variations:



 

Syntax:

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

Creating React Application And Installing Module:

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.




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='GeeksforGeeks'
          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.




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='GeeksforGeeks'
          confirmButton='Semantic UI Confirm Addons'
          onCancel={this.close}
          onConfirm={this.close}
          size='large'
        />
  
      </div>
    )
  }
}

Output:

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


Article Tags :