Merge pull request #852 from asaadmahmoodspin/plt-383

plt-383 - Slack upload UI improvements
Этот коммит содержится в:
Joram Wilander
2015-09-30 11:11:24 -04:00
родитель 13ebb5fe94 62f7e7c03e
Коммит 9dee8cd2d7
2 изменённых файлов: 26 добавлений и 21 удалений

Просмотреть файл

@@ -7,11 +7,11 @@ export default class SettingsUpload extends React.Component {
this.doFileSelect = this.doFileSelect.bind(this); this.doFileSelect = this.doFileSelect.bind(this);
this.doSubmit = this.doSubmit.bind(this); this.doSubmit = this.doSubmit.bind(this);
this.onFileSelect = this.onFileSelect.bind(this);
this.state = { this.state = {
clientError: this.props.clientError, clientError: this.props.clientError,
serverError: this.props.serverError serverError: this.props.serverError,
filename: ''
}; };
} }
@@ -24,9 +24,14 @@ export default class SettingsUpload extends React.Component {
doFileSelect(e) { doFileSelect(e) {
e.preventDefault(); e.preventDefault();
var filename = $(e.target).val();
if (filename.substring(3, 11) === 'fakepath') {
filename = filename.substring(12);
}
this.setState({ this.setState({
clientError: '', clientError: '',
serverError: '' serverError: '',
filename
}); });
} }
@@ -40,28 +45,28 @@ export default class SettingsUpload extends React.Component {
} }
} }
onFileSelect(e) {
var filename = $(e.target).val();
if (filename.substring(3, 11) === 'fakepath') {
filename = filename.substring(12);
}
$(e.target).closest('li').find('.file-status').addClass('hide');
$(e.target).closest('li').find('.file-name').removeClass('hide').html(filename);
}
render() { render() {
var clientError = null; let clientError = null;
if (this.state.clientError) { if (this.state.clientError) {
clientError = ( clientError = (
<div className='file-status'>{this.state.clientError}</div> <div className='file-status'>{this.state.clientError}</div>
); );
} }
var serverError = null; let serverError = null;
if (this.state.serverError) { if (this.state.serverError) {
serverError = ( serverError = (
<div className='file-status'>{this.state.serverError}</div> <div className='file-status'>{this.state.serverError}</div>
); );
} }
let fileNameText = null;
let submitButtonClass = 'btn btn-sm btn-primary disabled';
if (this.state.filename) {
fileNameText = (
<div className='file-status file-name'>{this.state.filename}</div>
);
submitButtonClass = 'btn btn-sm btn-primary';
}
return ( return (
<ul className='section-max'> <ul className='section-max'>
<li className='col-sm-12 section-title'>{this.props.title}</li> <li className='col-sm-12 section-title'>{this.props.title}</li>
@@ -70,21 +75,21 @@ export default class SettingsUpload extends React.Component {
<ul className='setting-list'> <ul className='setting-list'>
<li className='setting-list-item'> <li className='setting-list-item'>
<span className='btn btn-sm btn-primary btn-file sel-btn'> <span className='btn btn-sm btn-primary btn-file sel-btn'>
Select file {'Select file'}
<input <input
ref='uploadinput' ref='uploadinput'
accept={this.props.fileTypesAccepted} accept={this.props.fileTypesAccepted}
type='file' type='file'
onChange={this.onFileSelect} onChange={this.doFileSelect}
/> />
</span> </span>
<a <a
className={'btn btn-sm btn-primary'} className={submitButtonClass}
onClick={this.doSubmit} onClick={this.doSubmit}
> >
Import {'Import'}
</a> </a>
<div className='file-status file-name hide'></div> {fileNameText}
{serverError} {serverError}
{clientError} {clientError}
</li> </li>
@@ -102,4 +107,4 @@ SettingsUpload.propTypes = {
clientError: React.PropTypes.string, clientError: React.PropTypes.string,
serverError: React.PropTypes.string, serverError: React.PropTypes.string,
helpText: React.PropTypes.object helpText: React.PropTypes.object
}; };

Просмотреть файл

@@ -483,7 +483,7 @@ export function applyTheme(theme) {
changeCss('.post-image__column', 'border-color:' + changeOpacity(theme.centerChannelColor, 0.2), 2); changeCss('.post-image__column', 'border-color:' + changeOpacity(theme.centerChannelColor, 0.2), 2);
changeCss('.post-image__column .post-image__details', 'color:' + theme.centerChannelColor, 2); changeCss('.post-image__column .post-image__details', 'color:' + theme.centerChannelColor, 2);
changeCss('.post-image__column a, .post-image__column a:hover, .post-image__column a:focus', 'color:' + theme.centerChannelColor, 1); changeCss('.post-image__column a, .post-image__column a:hover, .post-image__column a:focus', 'color:' + theme.centerChannelColor, 1);
changeCss('.search-bar__container .search__form .search-bar', 'background:' + changeOpacity(theme.centerChannelColor, 0.2), 1); changeCss('@media(max-width: 768px){.search-bar__container .search__form .search-bar', 'background:' + changeOpacity(theme.centerChannelColor, 0.2), 1);
changeCss('.search-bar__container .search__form', 'border-color:' + changeOpacity(theme.centerChannelColor, 0.2), 1); changeCss('.search-bar__container .search__form', 'border-color:' + changeOpacity(theme.centerChannelColor, 0.2), 1);
changeCss('.channel-intro .channel-intro__content', 'background:' + changeOpacity(theme.centerChannelColor, 0.05), 1); changeCss('.channel-intro .channel-intro__content', 'background:' + changeOpacity(theme.centerChannelColor, 0.05), 1);
changeCss('.date-separator .separator__text', 'color:' + theme.centerChannelColor, 2); changeCss('.date-separator .separator__text', 'color:' + theme.centerChannelColor, 2);