2018-02-09 21:34:14 -05:00
|
|
|
/*
|
2021-04-19 13:30:42 -04:00
|
|
|
* Copyright (c) 2015-2021 MinIO, Inc.
|
2018-02-09 21:34:14 -05:00
|
|
|
*
|
2021-04-19 13:30:42 -04:00
|
|
|
* This file is part of MinIO Object Storage stack
|
2018-02-09 21:34:14 -05:00
|
|
|
*
|
2021-04-19 13:30:42 -04: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
|
|
|
*
|
2021-04-19 13:30:42 -04: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"
|
2018-02-20 21:00:43 -05:00
|
|
|
import * as actions from "./actions"
|
|
|
|
import { getCheckedList } from "./selectors"
|
2018-02-09 21:34:14 -05:00
|
|
|
|
|
|
|
export const ObjectItem = ({
|
|
|
|
name,
|
|
|
|
contentType,
|
|
|
|
size,
|
|
|
|
lastModified,
|
2018-02-20 21:00:43 -05:00
|
|
|
checked,
|
|
|
|
checkObject,
|
|
|
|
uncheckObject,
|
2018-03-26 15:49:12 -04:00
|
|
|
actionButtons,
|
2018-03-22 15:25:56 -04:00
|
|
|
onClick
|
2018-02-09 21:34:14 -05:00
|
|
|
}) => {
|
|
|
|
return (
|
2018-06-07 23:43:51 -04:00
|
|
|
<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">
|
2018-02-20 21:00:43 -05:00
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
name={name}
|
2018-06-07 23:43:51 -04:00
|
|
|
checked={checked}
|
|
|
|
onChange={() => {
|
|
|
|
checked ? uncheckObject(name) : checkObject(name)
|
|
|
|
}}
|
2018-02-20 21:00:43 -05:00
|
|
|
/>
|
2018-03-26 15:49:12 -04:00
|
|
|
<i className="fis-icon" />
|
2018-06-07 23:43:51 -04:00
|
|
|
<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
|
2019-07-05 16:21:06 -04:00
|
|
|
href={getDataType(name, contentType) === "folder" ? name : "#"}
|
2018-02-09 21:34:14 -05:00
|
|
|
onClick={e => {
|
|
|
|
e.preventDefault()
|
2020-06-22 14:03:24 -04:00
|
|
|
// onclick function is passed only when we have a prefix
|
2018-06-07 23:43:51 -04:00
|
|
|
if (onClick) {
|
|
|
|
onClick()
|
2020-06-22 14:03:24 -04:00
|
|
|
} else {
|
|
|
|
checked ? uncheckObject(name) : checkObject(name)
|
2018-06-07 23:43:51 -04:00
|
|
|
}
|
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>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2018-02-20 21:00:43 -05:00
|
|
|
const mapStateToProps = (state, ownProps) => {
|
|
|
|
return {
|
2018-03-22 15:25:56 -04:00
|
|
|
checked: getCheckedList(state).indexOf(ownProps.name) >= 0
|
2018-02-20 21:00:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
|
|
return {
|
|
|
|
checkObject: name => dispatch(actions.checkObject(name)),
|
2018-03-22 15:25:56 -04:00
|
|
|
uncheckObject: name => dispatch(actions.uncheckObject(name))
|
2018-02-20 21:00:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(ObjectItem)
|