2018-02-27 22:14:49 -05:00
|
|
|
/*
|
|
|
|
* Minio Cloud Storage (C) 2018 Minio, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from "react"
|
|
|
|
import classNames from "classnames"
|
|
|
|
import { connect } from "react-redux"
|
|
|
|
import * as actionsBuckets from "./actions"
|
|
|
|
import { getCurrentBucket } from "./selectors"
|
2018-03-21 14:09:23 -04:00
|
|
|
import { Dropdown } from "react-bootstrap"
|
|
|
|
import { MenuItem } from "react-bootstrap"
|
2018-02-27 22:14:49 -05:00
|
|
|
|
|
|
|
export class BucketDropdown extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props)
|
|
|
|
this.state = {
|
2018-03-22 15:25:56 -04:00
|
|
|
showBucketDropdown: false
|
2018-02-27 22:14:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
toggleDropdown() {
|
|
|
|
if (this.state.showBucketDropdown) {
|
|
|
|
this.setState({
|
2018-03-22 15:25:56 -04:00
|
|
|
showBucketDropdown: false
|
2018-02-27 22:14:49 -05:00
|
|
|
})
|
|
|
|
} else {
|
|
|
|
this.setState({
|
2018-03-22 15:25:56 -04:00
|
|
|
showBucketDropdown: true
|
2018-02-27 22:14:49 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const { bucket, showBucketPolicy, deleteBucket, currentBucket } = this.props
|
|
|
|
return (
|
2018-03-21 14:09:23 -04:00
|
|
|
<Dropdown
|
|
|
|
pullRight
|
|
|
|
open={this.state.showBucketDropdown}
|
|
|
|
onToggle={this.toggleDropdown.bind(this)}
|
|
|
|
className="buckets__item__actions"
|
2018-02-27 22:14:49 -05:00
|
|
|
id="bucket-dropdown"
|
|
|
|
>
|
2018-03-21 14:09:23 -04:00
|
|
|
<Dropdown.Toggle noCaret className="dropdown-toggle--icon">
|
2018-02-27 22:14:49 -05:00
|
|
|
<i className="zmdi zmdi-more-vert" />
|
|
|
|
</Dropdown.Toggle>
|
2018-03-21 14:09:23 -04:00
|
|
|
<Dropdown.Menu>
|
|
|
|
<MenuItem
|
|
|
|
onClick={e => {
|
|
|
|
e.stopPropagation()
|
|
|
|
showBucketPolicy()
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{" "}
|
|
|
|
Edit Policy
|
|
|
|
</MenuItem>
|
|
|
|
<MenuItem
|
|
|
|
onClick={e => {
|
|
|
|
e.stopPropagation()
|
|
|
|
deleteBucket(bucket)
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{" "}
|
|
|
|
Delete Bucket
|
|
|
|
</MenuItem>
|
2018-02-27 22:14:49 -05:00
|
|
|
</Dropdown.Menu>
|
|
|
|
</Dropdown>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
|
|
return {
|
|
|
|
deleteBucket: bucket => dispatch(actionsBuckets.deleteBucket(bucket)),
|
2018-03-22 15:25:56 -04:00
|
|
|
showBucketPolicy: () => dispatch(actionsBuckets.showBucketPolicy())
|
2018-02-27 22:14:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(state => state, mapDispatchToProps)(BucketDropdown)
|