perkeep/server/perkeepd/ui/header.js

312 lines
7.8 KiB
JavaScript

/*
Copyright 2014 The Perkeep Authors
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.
*/
goog.provide('cam.Header');
goog.require('goog.Uri');
goog.require('cam.reactUtil');
goog.require('cam.SpritedImage');
cam.Header = React.createClass({
displayName: 'Header',
KEEPY_NATIVE_WIDTH: 118,
KEEPY_NATIVE_HEIGHT: 108,
KEEPY_MARGIN: {
LEFT: 1,
RIGHT: 4,
TOP: -1,
BOTTOM: 1,
},
SEARCH_MARGIN: {
LEFT: 180,
RIGHT: 145,
},
propTypes: {
getCurrentSearch: React.PropTypes.func,
setCurrentSearch: React.PropTypes.func,
errors: React.PropTypes.arrayOf(
React.PropTypes.shape({
error: React.PropTypes.string.isRequired,
onClick: React.PropTypes.func,
url: React.PropTypes.string,
}).isRequired
).isRequired,
pendingQuery: React.PropTypes.bool,
height: React.PropTypes.number.isRequired,
helpURL: React.PropTypes.instanceOf(goog.Uri).isRequired,
homeURL: React.PropTypes.instanceOf(goog.Uri).isRequired,
mobileSetupURL: React.PropTypes.instanceOf(goog.Uri).isRequired,
importersURL: React.PropTypes.instanceOf(goog.Uri).isRequired,
mainControls: React.PropTypes.arrayOf(React.PropTypes.node),
onNewPermanode: React.PropTypes.func,
onImportShare: React.PropTypes.func,
onAbout: React.PropTypes.func,
onSearch: React.PropTypes.func,
favoritesURL: React.PropTypes.instanceOf(goog.Uri).isRequired,
statusURL: React.PropTypes.instanceOf(goog.Uri).isRequired,
timer: React.PropTypes.shape({setTimeout:React.PropTypes.func.isRequired, clearTimeout:React.PropTypes.func.isRequired}).isRequired,
width: React.PropTypes.number.isRequired,
config: React.PropTypes.object.isRequired,
},
focusSearch: function() {
this.getSearchNode_().focus();
this.getSearchNode_().select();
},
getInitialState: function() {
return {
menuVisible: false,
};
},
render: function() {
return React.DOM.div(
{
className: 'cam-header',
style: {
width: this.props.width,
},
},
React.DOM.table(
{
className: 'cam-header-main',
},
React.DOM.tbody(null,
React.DOM.tr(null,
this.getKeepy_(),
this.getTitle_(),
this.getSearchbox_(),
this.getMainControls_()
)
)
),
this.getMenuDropdown_()
)
},
getKeepy_: function() {
var props = {
sheetWidth: 6,
spriteWidth: this.KEEPY_NATIVE_WIDTH,
spriteHeight: this.KEEPY_NATIVE_HEIGHT,
style: cam.reactUtil.getVendorProps({
position: 'absolute',
left: this.KEEPY_MARGIN.LEFT,
top: this.KEEPY_MARGIN.TOP,
transform: 'scale(' + this.getKeepyScale_() + ')',
transformOrigin: '0 0',
}),
};
var image = function() {
if (this.props.errors.length) {
return React.createElement(cam.SpritedImage, cam.object.extend(props, {
sheetWidth: 1,
key: 'error',
index: 0,
src: 'keepy/keepy-sad.png',
}));
} else if (this.props.pendingQuery) {
return React.createElement(cam.SpritedAnimation, cam.object.extend(props, {
key: 'pending',
numFrames: 12,
src: 'keepy/keepy-dancing.png',
}));
} else {
return React.createElement(cam.SpritedImage, cam.object.extend(props, {
key: 'ok',
index: 3,
src: 'keepy/keepy-dancing.png',
}));
}
};
return React.DOM.td(
{
className: 'cam-header-item',
style: {
minWidth: this.getKeepyWidth_() + this.KEEPY_MARGIN.LEFT + this.KEEPY_MARGIN.RIGHT,
},
onClick: this.handleClick_,
},
image.call(this)
)
},
getTitle_: function() {
return React.DOM.td(
{
className: 'cam-header-item cam-header-title',
onClick: this.handleClick_,
},
React.DOM.span(null, 'Perkeep'),
React.DOM.span(null, '\u25BE')
);
},
getSearchbox_: function() {
return React.DOM.td(
{
className: 'cam-header-item',
style: {
width: '100%',
}
},
React.DOM.form(
{
onSubmit: this.handleSearchSubmit_,
},
React.DOM.input(
{
onChange: this.props.setCurrentSearch,
// TODO: onFocus: close the Perkeep menu
placeholder: 'Search...',
ref: 'searchbox',
value: this.props.getCurrentSearch(),
}
)
)
)
},
getMainControls_: function() {
return React.DOM.td(
{
className: classNames({
'cam-header-item': true,
'cam-header-main-controls': true,
'cam-header-main-controls-empty': !this.props.mainControls.length,
}),
},
this.props.mainControls
);
},
getMenuDropdown_: function() {
var errorItems = this.props.errors.map(function(err) {
var children = [
React.DOM.i({className: 'fa fa-exclamation-circle cam-header-menu-item-icon'}),
err.error
];
return this.getMenuItem_(children, err.url, err.onClick, 'cam-header-menu-item-error');
}, this);
return React.DOM.div(
{
className: 'cam-header-menu-dropdown',
onClick: this.handleDropdownClick_,
style: cam.reactUtil.getVendorProps({
transform: 'translate3d(0, ' + this.getMenuTranslate_() + '%, 0)',
}),
},
this.getMenuItem_('Home', this.props.homeURL),
this.getMenuItem_('Upload...', null, this.props.onUpload),
// TODO(aa): Create a new permanode UI that delays creating the permanode until the user confirms, then change this to a link to that UI.
// TODO(aa): Also I keep going back and forth about whether we should call this 'permanode' or 'set' in the UI. Hrm.
this.getMenuItem_('New set', null, this.props.onNewPermanode),
this.getMenuItem_('Import share', null, this.props.onImportShare),
this.getMenuItem_('Importers', this.props.importersURL),
this.getMenuItem_('Server status', this.props.statusURL),
this.getMenuItem_('Favorites', this.props.favoritesURL),
this.getMenuItem_('Mobile Setup', this.props.mobileSetupURL),
this.getMenuItem_('Help', this.props.helpURL),
this.getMenuItem_('About', null, this.props.onAbout),
errorItems
);
},
getMenuItem_: function(text, opt_link, opt_onClick, opt_class) {
if (!text || (!opt_onClick && !opt_link)) {
return null;
}
var className = 'cam-header-menu-item';
if (opt_class) {
className += ' ' + opt_class;
}
var ctor = opt_link ? React.DOM.a : React.DOM.div;
return ctor(
{
className: className,
href: opt_link,
onClick: opt_onClick,
},
text
);
},
getMenuTranslate_: function() {
if (this.state.menuVisible) {
return 0;
} else {
// 110% because it has a shadow that we don't want to double-up with the shadow from the header.
return -110;
}
},
getKeepyHeight_: function() {
return this.props.height - this.KEEPY_MARGIN.TOP - this.KEEPY_MARGIN.BOTTOM;
},
getKeepyWidth_: function() {
return this.getKeepyScale_() * this.KEEPY_NATIVE_WIDTH;
},
getKeepyScale_: function() {
return this.getKeepyHeight_() / this.KEEPY_NATIVE_HEIGHT;
},
handleClick_: function() {
this.setState({menuVisible: !this.state.menuVisible});
},
handleDropdownClick_: function(e) {
this.clearTimer_();
this.setState({menuVisible:false});
},
setTimer_: function(show) {
this.timerId_ = this.props.timer.setTimeout(this.handleTimer_.bind(null, show), 250);
},
clearTimer_: function() {
if (this.timerId_) {
this.props.timer.clearTimeout(this.timerId_);
}
},
handleTimer_: function(show) {
this.setState({menuVisible:show});
},
handleSearchSubmit_: function(e) {
this.props.onSearch(this.getSearchNode_().value);
e.preventDefault();
},
getSearchNode_: function() {
return this.refs.searchbox;
},
});