[Ivan Diaz] - Fix dropdown issues, update icon support
This commit is contained in:
parent
220ff697f8
commit
07a7915bad
|
@ -32,13 +32,10 @@ let MainLayoutHeader = React.createClass({
|
|||
},
|
||||
|
||||
getLanguageList() {
|
||||
return languageList.map((item) => {
|
||||
return languageList.map((language) => {
|
||||
return {
|
||||
content: (
|
||||
<span>
|
||||
<Icon name={codeLanguages[item]} />{item}
|
||||
</span>
|
||||
)
|
||||
content: language,
|
||||
icon: codeLanguages[language]
|
||||
};
|
||||
});
|
||||
},
|
||||
|
|
|
@ -19,9 +19,5 @@
|
|||
position: relative;
|
||||
top: 5px;
|
||||
left: -6px;
|
||||
|
||||
.language-icon {
|
||||
margin-right: 10px;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,18 +1,19 @@
|
|||
import React from 'react';
|
||||
import classNames from 'classnames';
|
||||
import _ from 'lodash';
|
||||
import {Motion, spring} from 'react-motion';
|
||||
const React = require('react');
|
||||
const classNames = require('classnames');
|
||||
const _ = require('lodash');
|
||||
const {Motion, spring} = require('react-motion');
|
||||
const callback = require('lib-core/callback');
|
||||
|
||||
import callback from 'lib-core/callback';
|
||||
const Icon = require('core-components/icon');
|
||||
|
||||
let DropDown = React.createClass({
|
||||
const DropDown = React.createClass({
|
||||
|
||||
propTypes: {
|
||||
defaultSelectedIndex: React.PropTypes.number,
|
||||
selectedIndex: React.PropTypes.number,
|
||||
|
||||
items: React.PropTypes.arrayOf(React.PropTypes.shape({
|
||||
content: React.PropTypes.node.isRequired,
|
||||
content: React.PropTypes.string.isRequired,
|
||||
icon: React.PropTypes.string
|
||||
})).isRequired
|
||||
},
|
||||
|
@ -48,11 +49,12 @@ let DropDown = React.createClass({
|
|||
|
||||
render() {
|
||||
let animation = this.getAnimationStyles();
|
||||
let selectedItem = this.props.items[this.getSelectedIndex()];
|
||||
|
||||
return (
|
||||
<div className={this.getClass()}>
|
||||
<div className="drop-down--current" onBlur={this.handleBlur} onClick={this.handleClick} tabIndex="0" ref="current">
|
||||
{this.props.items[this.getSelectedIndex()].content}
|
||||
{this.renderItem(selectedItem)}
|
||||
</div>
|
||||
<Motion defaultStyle={animation.defaultStyle} style={animation.style}>
|
||||
{this.renderList}
|
||||
|
@ -67,23 +69,38 @@ let DropDown = React.createClass({
|
|||
return (
|
||||
<div className="drop-down--list-container" style={style}>
|
||||
<ul className="drop-down--list">
|
||||
{this.props.items.map(this.renderItem)}
|
||||
{this.props.items.map(this.renderListItem)}
|
||||
</ul>
|
||||
</div>
|
||||
);
|
||||
},
|
||||
|
||||
renderItem(item, index) {
|
||||
renderListItem(item, index) {
|
||||
return (
|
||||
<li {...this.getItemProps(index)}>
|
||||
{item.content}
|
||||
{this.renderItem(item)}
|
||||
</li>
|
||||
);
|
||||
},
|
||||
|
||||
renderItem(item) {
|
||||
return (
|
||||
<span>
|
||||
{(item.icon) ? this.renderIcon(item.icon) : null}{item.content}
|
||||
</span>
|
||||
);
|
||||
},
|
||||
|
||||
renderIcon(icon) {
|
||||
return (
|
||||
<Icon className="drop-down--icon" name={icon} />
|
||||
);
|
||||
},
|
||||
|
||||
getClass() {
|
||||
let classes = {
|
||||
'drop-down': true,
|
||||
'drop-down_closed': !this.state.opened,
|
||||
|
||||
[this.props.className]: (this.props.className)
|
||||
};
|
||||
|
|
|
@ -18,6 +18,7 @@
|
|||
background-color: white;
|
||||
position: absolute;
|
||||
width: 150px;
|
||||
z-index: 5;
|
||||
}
|
||||
|
||||
&--list {
|
||||
|
@ -35,4 +36,16 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
&--icon {
|
||||
margin-right: 8px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
&_closed {
|
||||
|
||||
.drop-down--list-container {
|
||||
pointer-events: none;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -8,7 +8,7 @@ let Icon = React.createClass({
|
|||
|
||||
render() {
|
||||
return (
|
||||
<img className="language-icon" src={`../images/icons/${this.props.name}.png`} />
|
||||
<img className={this.props.className} src={`../images/icons/${this.props.name}.png`} />
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
# DELETE ALL TABLES
|
||||
TABLES=$(mysql -u root development -e "SHOW TABLES IN os_dev;" | awk '{ print $1}' | grep -v '^Tables')
|
||||
TABLES=$(mysql -u root development -e "SHOW TABLES IN development;" | awk '{ print $1}' | grep -v '^Tables')
|
||||
|
||||
for t in $TABLES
|
||||
do
|
||||
|
|
Loading…
Reference in New Issue