minio/browser/app/js/objects/ObjectItem.js

92 lines
2.7 KiB
JavaScript
Raw Normal View History

2018-02-09 21:34:14 -05:00
/*
* Copyright (c) 2015-2021 MinIO, Inc.
2018-02-09 21:34:14 -05:00
*
* This file is part of MinIO Object Storage stack
2018-02-09 21:34:14 -05:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
2018-02-09 21:34:14 -05:00
*
* This program is distributed in the hope that it will be useful
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2018-02-09 21:34:14 -05:00
*/
import React from "react"
import { connect } from "react-redux"
2018-03-26 15:49:12 -04:00
import humanize from "humanize"
import Moment from "moment"
2018-02-09 21:34:14 -05:00
import { getDataType } from "../mime"
import * as actions from "./actions"
import { getCheckedList } from "./selectors"
2018-02-09 21:34:14 -05:00
export const ObjectItem = ({
name,
contentType,
size,
lastModified,
checked,
checkObject,
uncheckObject,
2018-03-26 15:49:12 -04:00
actionButtons,
onClick
2018-02-09 21:34:14 -05:00
}) => {
return (
<div className={"fesl-row"} data-type={getDataType(name, contentType)}>
2018-03-26 15:49:12 -04:00
<div className="fesl-item fesl-item-icon">
<div className="fi-select">
<input
type="checkbox"
name={name}
checked={checked}
onChange={() => {
checked ? uncheckObject(name) : checkObject(name)
}}
/>
2018-03-26 15:49:12 -04:00
<i className="fis-icon" />
<i className="fis-helper" />
2018-02-09 21:34:14 -05:00
</div>
</div>
2018-03-26 15:49:12 -04:00
<div className="fesl-item fesl-item-name">
2018-02-09 21:34:14 -05:00
<a
href={getDataType(name, contentType) === "folder" ? name : "#"}
2018-02-09 21:34:14 -05:00
onClick={e => {
e.preventDefault()
// onclick function is passed only when we have a prefix
if (onClick) {
onClick()
} else {
checked ? uncheckObject(name) : checkObject(name)
}
2018-02-09 21:34:14 -05:00
}}
>
{name}
</a>
</div>
2018-03-26 15:49:12 -04:00
<div className="fesl-item fesl-item-size">{size}</div>
<div className="fesl-item fesl-item-modified">{lastModified}</div>
<div className="fesl-item fesl-item-actions">{actionButtons}</div>
2018-02-09 21:34:14 -05:00
</div>
)
}
const mapStateToProps = (state, ownProps) => {
return {
checked: getCheckedList(state).indexOf(ownProps.name) >= 0
}
}
const mapDispatchToProps = dispatch => {
return {
checkObject: name => dispatch(actions.checkObject(name)),
uncheckObject: name => dispatch(actions.uncheckObject(name))
}
}
export default connect(mapStateToProps, mapDispatchToProps)(ObjectItem)