2017-01-23 21:07:22 -05:00
|
|
|
/*
|
2017-02-22 20:27:26 -05:00
|
|
|
* Minio Cloud Storage (C) 2016 Minio, Inc.
|
2017-01-23 21:07:22 -05:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2018-03-21 14:09:23 -04:00
|
|
|
import React from "react"
|
|
|
|
import connect from "react-redux/lib/components/connect"
|
2017-01-23 21:07:22 -05:00
|
|
|
|
2018-03-21 14:09:23 -04:00
|
|
|
import Tooltip from "react-bootstrap/lib/Tooltip"
|
|
|
|
import OverlayTrigger from "react-bootstrap/lib/OverlayTrigger"
|
2017-01-23 21:07:22 -05:00
|
|
|
|
2018-03-21 14:09:23 -04:00
|
|
|
let BrowserUpdate = ({ latestUiVersion }) => {
|
2017-01-23 21:07:22 -05:00
|
|
|
// Don't show an update if we're already updated!
|
2018-03-21 14:09:23 -04:00
|
|
|
if (latestUiVersion === currentUiVersion) return <noscript />
|
2017-01-23 21:07:22 -05:00
|
|
|
|
|
|
|
return (
|
|
|
|
<li className="hidden-xs hidden-sm">
|
|
|
|
<a href="">
|
2018-03-21 14:09:23 -04:00
|
|
|
<OverlayTrigger
|
|
|
|
placement="left"
|
|
|
|
overlay={
|
|
|
|
<Tooltip id="tt-version-update">
|
|
|
|
New update available. Click to refresh.
|
|
|
|
</Tooltip>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
{" "}
|
|
|
|
<i className="fa fa-refresh" />{" "}
|
|
|
|
</OverlayTrigger>
|
2017-01-23 21:07:22 -05:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(state => {
|
|
|
|
return {
|
2018-03-21 14:09:23 -04:00
|
|
|
latestUiVersion: state.latestUiVersion,
|
2017-01-23 21:07:22 -05:00
|
|
|
}
|
|
|
|
})(BrowserUpdate)
|