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 { connect } from "react-redux"
|
|
|
|
import { Modal, ModalHeader } from "react-bootstrap"
|
|
|
|
import * as actionsBuckets from "./actions"
|
|
|
|
import PolicyInput from "./PolicyInput"
|
|
|
|
import Policy from "./Policy"
|
|
|
|
|
2018-03-21 14:09:23 -04:00
|
|
|
export const BucketPolicyModal = ({
|
|
|
|
showBucketPolicy,
|
|
|
|
currentBucket,
|
|
|
|
hideBucketPolicy,
|
|
|
|
policies,
|
|
|
|
}) => {
|
2018-02-27 22:14:49 -05:00
|
|
|
return (
|
2018-03-21 14:09:23 -04:00
|
|
|
<Modal
|
|
|
|
className="policy"
|
|
|
|
animation={false}
|
|
|
|
show={showBucketPolicy}
|
|
|
|
onHide={hideBucketPolicy}
|
2018-02-27 22:14:49 -05:00
|
|
|
>
|
2018-03-21 14:09:23 -04:00
|
|
|
<Modal.Header>
|
|
|
|
Bucket Policy
|
|
|
|
<small>Bucket Name: {currentBucket}</small>
|
|
|
|
<i className="close" onClick={hideBucketPolicy} />
|
|
|
|
</Modal.Header>
|
|
|
|
<div className="policy__content">
|
2018-02-27 22:14:49 -05:00
|
|
|
<PolicyInput />
|
2018-03-21 14:09:23 -04:00
|
|
|
{policies.map((policy, i) => (
|
|
|
|
<Policy key={i} prefix={policy.prefix} policy={policy.policy} />
|
|
|
|
))}
|
2018-02-27 22:14:49 -05:00
|
|
|
</div>
|
|
|
|
</Modal>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
const mapStateToProps = state => {
|
|
|
|
return {
|
|
|
|
currentBucket: state.buckets.currentBucket,
|
|
|
|
showBucketPolicy: state.buckets.showBucketPolicy,
|
2018-03-21 14:09:23 -04:00
|
|
|
policies: state.buckets.policies,
|
2018-02-27 22:14:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
|
|
return {
|
2018-03-21 14:09:23 -04:00
|
|
|
hideBucketPolicy: () => dispatch(actionsBuckets.hideBucketPolicy()),
|
2018-02-27 22:14:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-21 14:09:23 -04:00
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(BucketPolicyModal)
|