Publishing Take 2 #346

Merged
6ea86b96 merged 26 commits from publishing2 into master 2017-07-13 16:19:51 +02:00
33 changed files with 2479 additions and 1123 deletions

1
.gitignore vendored
View file

@ -26,3 +26,4 @@ build/daemon.zip
.vimrc
package-lock.json
ui/yarn.lock

View file

@ -10,14 +10,18 @@ Web UI version numbers should always match the corresponding version of LBRY App
### Added
* Added option to release claim when deleting a file
* Added transition to card hovers to smooth animation
* Support markdown makeup in claim description
*
### Changed
*
* Publishes now uses claims rather than files
*
### Fixed
* Fixed bug with download notice when switching window focus
*
* Fixed newly published files appearing twice
* Fixed unconfirmed published files missing channel name
* Fixed old files from updated published claims appearing in downloaded list
### Deprecated
*

View file

@ -15,6 +15,7 @@ import { selectBadgeNumber } from "selectors/app";
import { selectTotalDownloadProgress } from "selectors/file_info";
import setBadge from "util/setBadge";
import setProgressBar from "util/setProgressBar";
import { doFileList } from "actions/file_info";
import batchActions from "util/batchActions";
const { ipcRenderer } = require("electron");
@ -339,3 +340,68 @@ export function doFetchClaimListMine() {
});
};
}
export function doFetchChannelListMine() {
return function(dispatch, getState) {
dispatch({
type: types.FETCH_CHANNEL_LIST_MINE_STARTED,
});
const callback = channels => {
dispatch({
type: types.FETCH_CHANNEL_LIST_MINE_COMPLETED,
data: { claims: channels },
});
};
lbry.channel_list_mine().then(callback);
};
}
export function doCreateChannel(name, amount) {
return function(dispatch, getState) {
dispatch({
type: types.CREATE_CHANNEL_STARTED,
});
return new Promise((resolve, reject) => {
lbry
.channel_new({
channel_name: name,
amount: parseFloat(amount),
})
.then(
channelClaim => {
channelClaim.name = name;
dispatch({
type: types.CREATE_CHANNEL_COMPLETED,
data: { channelClaim },
});
resolve(channelClaim);
},
err => {
reject(err);
}
);
});
};
}
export function doPublish(params) {
return function(dispatch, getState) {
return new Promise((resolve, reject) => {
const success = claim => {
resolve(claim);
if (claim === true) dispatch(doFetchClaimListMine());
else
setTimeout(() => dispatch(doFetchClaimListMine()), 20000, {
once: true,
});
};
const failure = err => reject(err);
lbry.publishDeprecated(params, null, success, failure);
});
};
}

View file

@ -3,11 +3,11 @@ import lbry from "lbry";
import { doFetchClaimListMine } from "actions/content";
import {
selectClaimsByUri,
selectClaimListMineIsPending,
selectIsFetchingClaimListMine,
selectMyClaimsOutpoints,
} from "selectors/claims";
import {
selectFileListIsPending,
selectIsFetchingFileList,
selectFileInfosByOutpoint,
selectUrisLoading,
} from "selectors/file_info";
@ -48,16 +48,16 @@ export function doFetchFileInfo(uri) {
export function doFileList() {
return function(dispatch, getState) {
const state = getState();
const isPending = selectFileListIsPending(state);
const isFetching = selectIsFetchingFileList(state);
if (!isPending) {
if (!isFetching) {
dispatch({
type: types.FILE_LIST_STARTED,
});
lbry.file_list().then(fileInfos => {
dispatch({
type: types.FILE_LIST_COMPLETED,
type: types.FILE_LIST_SUCCEEDED,
data: {
fileInfos,
},
@ -102,14 +102,12 @@ export function doDeleteFile(outpoint, deleteFromComputer, abandonClaim) {
},
});
const success = () => {
dispatch({
type: types.ABANDON_CLAIM_COMPLETED,
data: {
claimId: fileInfo.claim_id,
},
});
};
const success = dispatch({
type: types.ABANDON_CLAIM_SUCCEEDED,
data: {
claimId: fileInfo.claim_id,
},
});
lbry.claim_abandon({ claim_id: fileInfo.claim_id }).then(success);
}
}
@ -128,10 +126,10 @@ export function doDeleteFile(outpoint, deleteFromComputer, abandonClaim) {
export function doFetchFileInfosAndPublishedClaims() {
return function(dispatch, getState) {
const state = getState(),
isClaimListMinePending = selectClaimListMineIsPending(state),
isFileInfoListPending = selectFileListIsPending(state);
isFetchingClaimListMine = selectIsFetchingClaimListMine(state),
isFetchingFileInfo = selectIsFetchingFileList(state);
dispatch(doFetchClaimListMine());
dispatch(doFileList());
if (!isFetchingClaimListMine) dispatch(doFetchClaimListMine());
if (!isFetchingFileInfo) dispatch(doFileList());
};
}

View file

@ -1,10 +1,11 @@
import React from "react";
import lbryuri from "lbryuri.js";
import Link from "component/link";
import { TruncatedText, Icon } from "component/common";
import { Thumbnail, TruncatedText, Icon } from "component/common";
import FilePrice from "component/filePrice";
import UriIndicator from "component/uriIndicator";
import NsfwOverlay from "component/nsfwOverlay";
import TruncatedMarkdown from "component/truncatedMarkdown";
class FileCard extends React.PureComponent {
constructor(props) {
@ -94,7 +95,7 @@ class FileCard extends React.PureComponent {
style={{ backgroundImage: "url('" + metadata.thumbnail + "')" }}
/>}
<div className="card__content card__subtext card__subtext--two-lines">
<TruncatedText lines={2}>{description}</TruncatedText>
<TruncatedMarkdown lines={2}>{description}</TruncatedMarkdown>
</div>
</Link>
</div>

View file

@ -67,7 +67,9 @@ class FileList extends React.PureComponent {
const content = [];
this._sortFunctions[sortBy](fileInfos).forEach(fileInfo => {
let uriParams = {};
let uriParams = {
claimId: fileInfo.claim_id,
};
if (fileInfo.channel_name) {
uriParams.channelName = fileInfo.channel_name;
uriParams.contentName = fileInfo.name;
@ -79,7 +81,7 @@ class FileList extends React.PureComponent {
content.push(
<FileTile
key={uri}
key={fileInfo.outpoint || fileInfo.claim_id}
uri={uri}
hidePrice={true}
showEmpty={this.props.fileTileShowEmpty}
@ -94,7 +96,6 @@ class FileList extends React.PureComponent {
<FormField type="select" onChange={this.handleSortChanged.bind(this)}>
<option value="date">{__("Date")}</option>
<option value="title">{__("Title")}</option>
<option value="filename">{__("File name")}</option>
</FormField>
</span>
{content}

View file

@ -64,7 +64,7 @@ class FileTile extends React.PureComponent {
const isClaimable = lbryuri.isClaimable(uri);
const title = isClaimed && metadata && metadata.title
? metadata.title
: uri;
: lbryuri.parse(uri).contentName;
const obscureNsfw = this.props.obscureNsfw && metadata && metadata.nsfw;
let onClick = () => navigate("/show", { uri });

View file

@ -1,8 +1,9 @@
import React from "react";
import FileSelector from "./file-selector.js";
import { Icon } from "./common.js";
import SimpleMDE from "react-simplemde-editor";
import style from "react-simplemde-editor/dist/simplemde.min.css";
var formFieldCounter = 0,
let formFieldCounter = 0,
formFieldFileSelectorTypes = ["file", "directory"],
formFieldNestedLabelTypes = ["radio", "checkbox"];
@ -24,6 +25,7 @@ export class FormField extends React.PureComponent {
this._fieldRequiredText = __("This field is required");
this._type = null;
this._element = null;
this._extraElementProps = {};
this.state = {
isError: null,
@ -38,6 +40,12 @@ export class FormField extends React.PureComponent {
} else if (this.props.type == "text-number") {
this._element = "input";
this._type = "text";
} else if (this.props.type == "SimpleMDE") {
this._element = SimpleMDE;
this._type = "textarea";
this._extraElementProps.options = {
hideIcons: ["guide", "heading", "image", "fullscreen", "side-by-side"],
};
} else if (formFieldFileSelectorTypes.includes(this.props.type)) {
this._element = "input";
this._type = "hidden";
@ -81,6 +89,8 @@ export class FormField extends React.PureComponent {
getValue() {
if (this.props.type == "checkbox") {
return this.refs.field.checked;
} else if (this.props.type == "SimpleMDE") {
return this.refs.field.simplemde.value();
} else {
return this.refs.field.value;
}
@ -90,6 +100,10 @@ export class FormField extends React.PureComponent {
return this.refs.field.options[this.refs.field.selectedIndex];
}
getOptions() {
return this.refs.field.options;
}
render() {
// Pass all unhandled props to the field element
const otherProps = Object.assign({}, this.props),
@ -106,7 +120,6 @@ export class FormField extends React.PureComponent {
delete otherProps.className;
delete otherProps.postfix;
delete otherProps.prefix;
const element = (
<this._element
id={elementId}
@ -122,6 +135,7 @@ export class FormField extends React.PureComponent {
(isError ? "form-field__input--error" : "")
}
{...otherProps}
{...this._extraElementProps}
>
{this.props.children}
</this._element>
@ -220,6 +234,10 @@ export class FormRow extends React.PureComponent {
return this.refs.field.getSelectedElement();
}
getOptions() {
return this.refs.field.getOptions();
}
focus() {
this.refs.field.focus();
}

View file

@ -1,27 +0,0 @@
import React from "react";
export class Notice extends React.PureComponent {
static propTypes = {
isError: React.PropTypes.bool,
};
static defaultProps = {
isError: false,
};
render() {
return (
<section
className={
"notice " +
(this.props.isError ? "notice--error " : "") +
(this.props.className || "")
}
>
{this.props.children}
</section>
);
}
}
export default Notice;

View file

@ -0,0 +1,5 @@
import React from "react";
import { connect } from "react-redux";
import PublishForm from "./view";
export default connect()(PublishForm);

View file

@ -0,0 +1,174 @@
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
import React from "react";
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
import lbryuri from "lbryuri";
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
import { FormField, FormRow } from "component/form.js";
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
import { BusyMessage } from "component/common";
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
import Link from "component/link";
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
class ChannelSection extends React.PureComponent {
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
constructor(props) {
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
super(props);
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
this.state = {
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
newChannelName: "@",
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
newChannelBid: 10,
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
addingChannel: false,
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
};
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
handleChannelChange(event) {
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
const channel = event.target.value;
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
if (channel === "new") this.setState({ addingChannel: true });
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
kauffj commented 2017-07-10 22:49:49 +02:00 (Migrated from github.com)
Review

Missing braces (mildly surprised this parses)

Missing braces (mildly surprised this parses)
6ea86b96 commented 2017-07-11 07:58:03 +02:00 (Migrated from github.com)
Review

Braces aren't required if there's only one statement. So

if (something) ...
else if (somethingElse) ...
else ...

is valid

Braces aren't required if there's only one statement. So ``` if (something) ... else if (somethingElse) ... else ... ``` is valid
else {
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
this.setState({ addingChannel: false });
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
this.props.handleChannelChange(event.target.value);
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
handleNewChannelNameChange(event) {
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
const newChannelName = event.target.value.startsWith("@")
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
? event.target.value
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
: "@" + event.target.value;
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
if (
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
newChannelName.length > 1 &&
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
!lbryuri.isValidName(newChannelName.substr(1), false)
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
) {
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
this.refs.newChannelName.showError(
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
__("LBRY channel names must contain only letters, numbers and dashes.")
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
);
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
return;
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
} else {
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
this.refs.newChannelName.clearError();
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
this.setState({
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
newChannelName,
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
});
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
handleNewChannelBidChange(event) {
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
this.setState({
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
newChannelBid: event.target.value,
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
});
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
handleCreateChannelClick(event) {
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
if (this.state.newChannelName.length < 5) {
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
kauffj commented 2017-07-10 23:05:52 +02:00 (Migrated from github.com)
Review

I'm inclined to drop this restriction (https://github.com/lbryio/lbry/issues/769). But I suppose we ought to keep it for now, especially since the error the daemon gives is unclear.

I'm inclined to drop this restriction (https://github.com/lbryio/lbry/issues/769). But I suppose we ought to keep it for now, especially since the error the daemon gives is unclear.
this.refs.newChannelName.showError(
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
__("LBRY channel names must be at least 4 characters in length.")
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
);
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
return;
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
this.setState({
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
creatingChannel: true,
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
});
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
const newChannelName = this.state.newChannelName;
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
const amount = parseFloat(this.state.newChannelBid);
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
this.setState({
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
creatingChannel: true,
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
});
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
const success = () => {
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
this.setState({
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
creatingChannel: false,
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
addingChannel: false,
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
channel: newChannelName,
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
});
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
this.props.handleChannelChange(newChannelName);
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
};
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
const failure = err => {
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
this.setState({
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
creatingChannel: false,
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
});
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
this.refs.newChannelName.showError(
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
__("Unable to create channel due to an internal error.")
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
);
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
};
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
this.props.createChannel(newChannelName, amount).then(success, failure);
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
render() {
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
const lbcInputHelp = __(
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
"This LBC remains yours and the deposit can be undone at any time."
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
);
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
const { fetchingChannels, channels = [] } = this.props;
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
let channelContent = [];
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
channelContent.push(
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
<FormRow
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
key="channel"
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
type="select"
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
tabIndex="1"
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
onChange={this.handleChannelChange.bind(this)}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
value={this.props.channel}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
>
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
<option key="anonymous" value="anonymous">
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
{__("Anonymous")}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
</option>
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
{this.props.channels.map(({ name }) =>
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
<option key={name} value={name}>{name}</option>
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
)}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
<option key="new" value="new">
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
{__("New identity...")}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
</option>
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
</FormRow>
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
);
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
if (fetchingChannels) {
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
channelContent.push(
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
<BusyMessage message="Updating channels" key="loading" />
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
);
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
return (
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
<section className="card">
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
<div className="card__title-primary">
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
<h4>{__("Identity")}</h4>
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
<div className="card__subtitle">
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
{__("Who created this content?")}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
</div>
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
</div>
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
<div className="card__content">
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
{channelContent}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
</div>
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
{this.state.addingChannel &&
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
<div className="card__content">
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
<FormRow
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
label={__("Name")}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
type="text"
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
onChange={event => {
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
this.handleNewChannelNameChange(event);
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
}}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
value={this.state.newChannelName}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
/>
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
<FormRow
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
label={__("Deposit")}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
postfix="LBC"
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
step="0.1"
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
min="0"
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
type="number"
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
helper={lbcInputHelp}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
ref="newChannelName"
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
onChange={this.handleNewChannelBidChange.bind(this)}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
value={this.state.newChannelBid}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
/>
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
<div className="form-row-submit">
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
<Link
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
button="primary"
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
label={
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
!this.state.creatingChannel
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
? __("Create identity")
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
: __("Creating identity...")
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
onClick={this.handleCreateChannelClick.bind(this)}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
disabled={this.state.creatingChannel}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
/>
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
</div>
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
</div>}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
</section>
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
);
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
}
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)
export default ChannelSection;
kauffj commented 2017-07-10 23:06:46 +02:00 (Migrated from github.com)
Review

Are these binds if necessary? The () => { } syntax automatically keeps the this context.

Are these binds if necessary? The `() => { }` syntax automatically keeps the `this` context.
6ea86b96 commented 2017-07-11 07:58:24 +02:00 (Migrated from github.com)
Review

They are not necessary :)

They are not necessary :)

View file

@ -0,0 +1,921 @@
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
import React from "react";
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
import lbry from "lbry";
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
import lbryuri from "lbryuri";
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
import { FormField, FormRow } from "component/form.js";
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
import Link from "component/link";
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
import Modal from "component/modal";
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
import { BusyMessage } from "component/common";
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
import ChannelSection from "./internal/channelSection";
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
class PublishForm extends React.PureComponent {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
constructor(props) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
super(props);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this._requiredFields = ["name", "bid", "meta_title", "tosAgree"];
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this._defaultCopyrightNotice = "All rights reserved.";
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.state = {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
rawName: "",
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
name: "",
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
bid: 10,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
hasFile: false,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
feeAmount: "",
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
feeCurrency: "USD",
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
channel: "anonymous",
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
newChannelName: "@",
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
newChannelBid: 10,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
meta_title: "",
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
meta_thumbnail: "",
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
meta_description: "",
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
meta_language: "en",
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
meta_nsfw: "0",
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
licenseType: "",
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
copyrightNotice: this._defaultCopyrightNotice,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
otherLicenseDescription: "",
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
otherLicenseUrl: "",
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
tosAgree: false,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
prefillDone: false,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
uploadProgress: 0.0,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
uploaded: false,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
errorMessage: null,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
submitting: false,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
creatingChannel: false,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
modal: null,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
};
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
_updateChannelList(channel) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const { fetchingChannels, fetchChannelListMine } = this.props;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (!fetchingChannels) fetchChannelListMine();
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
handleSubmit(event) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (typeof event !== "undefined") {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
event.preventDefault();
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
submitting: true,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
let checkFields = this._requiredFields;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (!this.myClaimExists()) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
checkFields.unshift("file");
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
let missingFieldFound = false;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
for (let fieldName of checkFields) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const field = this.refs[fieldName];
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (field) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (field.getValue() === "" || field.getValue() === false) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
field.showRequiredError();
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (!missingFieldFound) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
field.focus();
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
missingFieldFound = true;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
} else {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
field.clearError();
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (missingFieldFound) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
submitting: false,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
let metadata = {};
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
for (let metaField of ["title", "description", "thumbnail", "language"]) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const value = this.state["meta_" + metaField];
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (value) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
metadata[metaField] = value;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
metadata.license = this.getLicense();
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
metadata.licenseUrl = this.getLicenseUrl();
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
metadata.nsfw = !!parseInt(this.state.meta_nsfw);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
var doPublish = () => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
var publishArgs = {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
name: this.state.name,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
bid: parseFloat(this.state.bid),
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
metadata: metadata,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
...(this.state.channel != "new" && this.state.channel != "anonymous"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
? { channel_name: this.state.channel }
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
: {}),
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
};
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (this.refs.file.getValue() !== "") {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
publishArgs.file_path = this.refs.file.getValue();
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const success = claim => {};
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const failure = error => this.handlePublishError(error);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.handlePublishStarted();
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.props.publish(publishArgs).then(success, failure);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
};
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (this.state.isFee) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
lbry.wallet_unused_address().then(address => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
metadata.fee = {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
currency: this.state.feeCurrency,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
amount: parseFloat(this.state.feeAmount),
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
address: address,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
};
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
doPublish();
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
} else {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
doPublish();
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
handlePublishStarted() {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
modal: "publishStarted",
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
handlePublishStartedConfirmed() {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.props.navigate("/published");
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
handlePublishError(error) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
submitting: false,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
modal: "error",
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
errorMessage: error.message,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
claim() {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const { claimsByUri } = this.props;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const { uri } = this.state;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return claimsByUri[uri];
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
topClaimValue() {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (!this.claim()) return null;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return parseFloat(this.claim().amount);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
myClaimExists() {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const { myClaims } = this.props;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const { name } = this.state;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (!name) return false;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return !!myClaims.find(claim => claim.name === name);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
topClaimIsMine() {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const myClaimInfo = this.myClaimInfo();
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const { claimsByUri } = this.props;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const { uri } = this.state;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (!uri) return null;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const claim = claimsByUri[uri];
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (!claim) return true;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (!myClaimInfo) return false;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return myClaimInfo.amount >= claim.amount;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
myClaimInfo() {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const { name } = this.state;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return Object.values(this.props.myClaims).find(
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
claim => claim.name === name
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
handleNameChange(event) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
var rawName = event.target.value;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.nameChanged(rawName);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
nameChanged(rawName) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (!rawName) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
rawName: "",
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
name: "",
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
uri: "",
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
prefillDone: false,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (!lbryuri.isValidName(rawName, false)) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.refs.name.showError(
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
__("LBRY names must contain only letters, numbers and dashes.")
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
let channel = "";
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (this.state.channel !== "anonymous") channel = this.state.channel;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const name = rawName.toLowerCase();
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const uri = lbryuri.build({ contentName: name, channelName: channel });
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
rawName: rawName,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
name: name,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
prefillDone: false,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
uri,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (this.resolveUriTimeout) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
clearTimeout(this.resolveUriTimeout);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.resolveUriTimeout = undefined;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const resolve = () => this.props.resolveUri(uri);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.resolveUriTimeout = setTimeout(resolve.bind(this), 500, {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
once: true,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
handlePrefillClicked() {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const claimInfo = this.myClaimInfo();
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
license,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
licenseUrl,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
title,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
thumbnail,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
description,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
language,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
nsfw,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
} = claimInfo.value.stream.metadata;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
let newState = {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
meta_title: title,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
meta_thumbnail: thumbnail,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
meta_description: description,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
meta_language: language,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
meta_nsfw: nsfw,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
prefillDone: true,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
bid: claimInfo.amount,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
};
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (license == this._defaultCopyrightNotice) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
newState.licenseType = "copyright";
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
newState.copyrightNotice = this._defaultCopyrightNotice;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
} else {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
// If the license URL or description matches one of the drop-down options, use that
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
let licenseType = "other"; // Will be overridden if we find a match
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
for (let option of this._meta_license.getOptions()) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
option.getAttribute("data-url") === licenseUrl ||
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
option.text === license
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
licenseType = option.value;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (licenseType == "other") {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
newState.otherLicenseDescription = license;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
newState.otherLicenseUrl = licenseUrl;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
newState.licenseType = licenseType;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState(newState);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
handleBidChange(event) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
bid: event.target.value,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
handleFeeAmountChange(event) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
feeAmount: event.target.value,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
handleFeeCurrencyChange(event) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
feeCurrency: event.target.value,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
handleFeePrefChange(feeEnabled) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
isFee: feeEnabled,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
handleMetadataChange(event) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
/**
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
* This function is used for all metadata inputs that store the final value directly into state.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
* The only exceptions are inputs related to license description and license URL, which require
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
* more complex logic and the final value is determined at submit time.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
*/
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
["meta_" + event.target.name]: event.target.value,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
handleDescriptionChanged(text) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
meta_description: text,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
handleLicenseTypeChange(event) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
licenseType: event.target.value,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
handleCopyrightNoticeChange(event) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
copyrightNotice: event.target.value,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
handleOtherLicenseDescriptionChange(event) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
otherLicenseDescription: event.target.value,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
handleOtherLicenseUrlChange(event) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
otherLicenseUrl: event.target.value,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
handleChannelChange(channelName) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
channel: channelName,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const nameChanged = () => this.nameChanged(this.state.rawName);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
setTimeout(nameChanged.bind(this), 500, { once: true });
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
handleTOSChange(event) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
tosAgree: event.target.checked,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
handleCreateChannelClick(event) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (this.state.newChannelName.length < 5) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.refs.newChannelName.showError(
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
__("LBRY channel names must be at least 4 characters in length.")
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
creatingChannel: true,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const newChannelName = this.state.newChannelName;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
lbry
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
.channel_new({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
channel_name: newChannelName,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
amount: parseFloat(this.state.newChannelBid),
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
})
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
.then(
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
() => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
setTimeout(() => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
creatingChannel: false,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this._updateChannelList(newChannelName);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}, 10000);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
},
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
error => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
// TODO: better error handling
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.refs.newChannelName.showError(
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
__("Unable to create channel due to an internal error.")
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
creatingChannel: false,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
getLicense() {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
switch (this.state.licenseType) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
case "copyright":
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return this.state.copyrightNotice;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
case "other":
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return this.state.otherLicenseDescription;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
default:
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return this._meta_license.getSelectedElement().text;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
getLicenseUrl() {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
switch (this.state.licenseType) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
case "copyright":
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return "";
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
case "other":
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return this.state.otherLicenseUrl;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
default:
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return this._meta_license.getSelectedElement().getAttribute("data-url");
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
componentWillMount() {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.props.fetchClaimListMine();
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this._updateChannelList();
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onFileChange() {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (this.refs.file.getValue()) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({ hasFile: true });
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
} else {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({ hasFile: false });
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
getNameBidHelpText() {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (this.state.prefillDone) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return __("Existing claim data was prefilled");
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.state.uri &&
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.props.resolvingUris.indexOf(this.state.uri) !== -1 &&
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.claim() === undefined
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return __("Checking...");
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
} else if (!this.state.name) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return __("Select a URL for this publish.");
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
} else if (!this.claim()) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return __("This URL is unused.");
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
} else if (this.myClaimExists() && !this.state.prefillDone) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return (
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<span>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{__("You already have a claim with this name.")}{" "}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<Link
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
label={__("Use data from my existing claim")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onClick={() => this.handlePrefillClicked()}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
/>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</span>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
} else if (this.claim()) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
if (this.topClaimValue() === 1) {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return (
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<span>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{__(
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
'A deposit of at least one credit is required to win "%s". However, you can still get a permanent URL for any amount.',
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.state.name
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
)}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</span>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
} else {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return (
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<span>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{__(
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
'A deposit of at least "%s" credits is required to win "%s". However, you can still get a permanent URL for any amount.',
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.topClaimValue(),
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.state.name
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
)}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</span>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
} else {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return "";
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
closeModal() {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.setState({
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
modal: null,
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
});
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
render() {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
const lbcInputHelp = __(
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
"This LBC remains yours and the deposit can be undone at any time."
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
return (
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<main className="main--single-column">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<form
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onSubmit={event => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.handleSubmit(event);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<section className="card">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<div className="card__title-primary">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<h4>{__("Content")}</h4>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<div className="card__subtitle">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{__("What are you publishing?")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</div>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</div>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<div className="card__content">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<FormRow
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
name="file"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
label="File"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
ref="file"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
type="file"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onChange={event => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.onFileChange(event);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
helper={
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.myClaimExists()
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
? __(
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
"If you don't choose a file, the file from your existing claim will be used."
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
)
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
: null
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
/>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</div>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{!this.state.hasFile && !this.myClaimExists()
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
? null
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
: <div>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<div className="card__content">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<FormRow
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
label={__("Title")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
type="text"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
name="title"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
value={this.state.meta_title}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
placeholder="Titular Title"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onChange={event => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.handleMetadataChange(event);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
/>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</div>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<div className="card__content">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<FormRow
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
type="text"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
label={__("Thumbnail URL")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
name="thumbnail"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
value={this.state.meta_thumbnail}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
placeholder="http://spee.ch/mylogo"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onChange={event => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.handleMetadataChange(event);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
/>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</div>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<div className="card__content">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<FormRow
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
label={__("Description")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
type="SimpleMDE"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
ref="meta_description"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
name="description"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
value={this.state.meta_description}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
placeholder={__("Description of your content")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onChange={text => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.handleDescriptionChanged(text);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
/>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</div>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<div className="card__content">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<FormRow
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
label={__("Language")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
type="select"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
value={this.state.meta_language}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
name="language"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onChange={event => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.handleMetadataChange(event);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<option value="en">{__("English")}</option>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<option value="zh">{__("Chinese")}</option>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<option value="fr">{__("French")}</option>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<option value="de">{__("German")}</option>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<option value="jp">{__("Japanese")}</option>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<option value="ru">{__("Russian")}</option>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<option value="es">{__("Spanish")}</option>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</FormRow>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</div>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<div className="card__content">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<FormRow
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
type="select"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
label={__("Maturity")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
value={this.state.meta_nsfw}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
name="nsfw"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onChange={event => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.handleMetadataChange(event);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{/* <option value=""></option> */}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<option value="0">{__("All Ages")}</option>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<option value="1">{__("Adults Only")}</option>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</FormRow>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</div>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</div>}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</section>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<section className="card">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<div className="card__title-primary">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<h4>{__("Access")}</h4>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<div className="card__subtitle">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{__("How much does this content cost?")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</div>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</div>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<div className="card__content">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<div className="form-row__label-row">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<label className="form-row__label">{__("Price")}</label>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</div>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<FormRow
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
label={__("Free")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
type="radio"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
name="isFree"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
value="1"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onChange={() => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.handleFeePrefChange(false);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
defaultChecked={!this.state.isFee}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
/>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<FormField
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
type="radio"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
name="isFree"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
label={!this.state.isFee ? __("Choose price...") : __("Price ")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onChange={() => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.handleFeePrefChange(true);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
defaultChecked={this.state.isFee}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
/>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<span className={!this.state.isFee ? "hidden" : ""}>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<FormField
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
type="number"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
className="form-field__input--inline"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
step="0.01"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
placeholder="1.00"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
min="0.01"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onChange={event => this.handleFeeAmountChange(event)}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
/>{" "}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<FormField
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
type="select"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onChange={event => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.handleFeeCurrencyChange(event);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<option value="USD">{__("US Dollars")}</option>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<option value="LBC">{__("LBRY credits")}</option>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</FormField>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</span>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{this.state.isFee
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
? <div className="form-field__helper">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{__(
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
"If you choose to price this content in dollars, the number of credits charged will be adjusted based on the value of LBRY credits at the time of purchase."
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
)}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</div>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
: ""}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<FormRow
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
label="License"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
type="select"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
value={this.state.licenseType}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
ref={row => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this._meta_license = row;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onChange={event => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.handleLicenseTypeChange(event);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<option />
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<option value="publicDomain">{__("Public Domain")}</option>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<option
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
value="cc-by"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
data-url="https://creativecommons.org/licenses/by/4.0/legalcode"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{__("Creative Commons Attribution 4.0 International")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</option>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<option
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
value="cc-by-sa"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
data-url="https://creativecommons.org/licenses/by-sa/4.0/legalcode"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{__(
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
"Creative Commons Attribution-ShareAlike 4.0 International"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
)}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</option>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<option
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
value="cc-by-nd"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
data-url="https://creativecommons.org/licenses/by-nd/4.0/legalcode"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{__(
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
"Creative Commons Attribution-NoDerivatives 4.0 International"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
)}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</option>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<option
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
value="cc-by-nc"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
data-url="https://creativecommons.org/licenses/by-nc/4.0/legalcode"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{__(
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
"Creative Commons Attribution-NonCommercial 4.0 International"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
)}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</option>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<option
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
value="cc-by-nc-sa"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
data-url="https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{__(
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
"Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
)}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</option>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<option
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
value="cc-by-nc-nd"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
data-url="https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{__(
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
"Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
)}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</option>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<option value="copyright">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{__("Copyrighted...")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</option>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<option value="other">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{__("Other...")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</option>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</FormRow>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{this.state.licenseType == "copyright"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
? <FormRow
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
label={__("Copyright notice")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
type="text"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
name="copyright-notice"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
value={this.state.copyrightNotice}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onChange={event => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.handleCopyrightNoticeChange(event);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
/>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
: null}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{this.state.licenseType == "other"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
? <FormRow
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
label={__("License description")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
type="text"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
name="other-license-description"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
value={this.state.otherLicenseDescription}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onChange={event => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.handleOtherLicenseDescriptionChange(event);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
/>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
: null}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{this.state.licenseType == "other"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
? <FormRow
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
label={__("License URL")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
type="text"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
name="other-license-url"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
value={this.state.otherLicenseUrl}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onChange={event => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.handleOtherLicenseUrlChange(event);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
/>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
: null}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</div>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</section>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<ChannelSection
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{...this.props}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
handleChannelChange={this.handleChannelChange.bind(this)}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
channel={this.state.channel}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
/>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<section className="card">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<div className="card__title-primary">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<h4>{__("Address")}</h4>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<div className="card__subtitle">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{__("Where should this content permanently reside?")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{" "}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<Link
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
label={__("Read more")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
href="https://lbry.io/faq/naming"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
/>.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</div>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</div>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<div className="card__content">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<FormRow
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
prefix={`lbry://${this.state.channel === "anonymous"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
? ""
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
: `${this.state.channel}/`}`}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
type="text"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
ref="name"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
placeholder="myname"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
value={this.state.rawName}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onChange={event => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.handleNameChange(event);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
helper={this.getNameBidHelpText()}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
/>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</div>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{this.state.rawName
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
? <div className="card__content">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<FormRow
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
ref="bid"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
type="number"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
step="0.01"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
label={__("Deposit")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
postfix="LBC"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onChange={event => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.handleBidChange(event);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
value={this.state.bid}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
placeholder={this.claim() ? this.topClaimValue() + 10 : 100}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
helper={lbcInputHelp}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
/>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</div>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
: ""}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</section>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<section className="card">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<div className="card__title-primary">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<h4>{__("Terms of Service")}</h4>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</div>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<div className="card__content">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<FormRow
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
label={
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<span>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{__("I agree to the")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{" "}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<Link
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
href="https://www.lbry.io/termsofservice"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
label={__("LBRY terms of service")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
/>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</span>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
type="checkbox"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
checked={this.state.tosAgree}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onChange={event => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.handleTOSChange(event);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
/>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</div>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</section>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<div className="card-series-submit">
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<Link
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
button="primary"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
label={
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
!this.state.submitting ? __("Publish") : __("Publishing...")
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onClick={event => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.handleSubmit(event);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
disabled={
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.state.submitting ||
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
(this.state.uri &&
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.props.resolvingUris.indexOf(this.state.uri) !== -1) ||
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
(this.claim() &&
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
!this.topClaimIsMine() &&
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.state.bid <= this.topClaimValue())
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
/>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<Link
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
button="cancel"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onClick={this.props.back}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
label={__("Cancel")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
/>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<input type="submit" className="hidden" />
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</div>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</form>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<Modal
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
isOpen={this.state.modal == "publishStarted"}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
contentLabel={__("File published")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onConfirmed={event => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.handlePublishStartedConfirmed(event);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<p>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{__("Your file has been published to LBRY at the address")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{" "}<code>{this.state.uri}</code>!
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</p>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<p>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{__(
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
'The file will take a few minutes to appear for other LBRY users. Until then it will be listed as "pending" under your published files.'
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
)}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</p>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</Modal>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
<Modal
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
isOpen={this.state.modal == "error"}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
contentLabel={__("Error publishing file")}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
onConfirmed={event => {
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
this.closeModal(event);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
{__(
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
"The following error occurred when attempting to publish your file"
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
)}: {this.state.errorMessage}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</Modal>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
</main>
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
);
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
}
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.
export default PublishForm;
kauffj commented 2017-07-10 23:19:26 +02:00 (Migrated from github.com)
Review

The Notice component was only used here and the style does not match the application. I dropped it.

The `Notice` component was only used here and the style does not match the application. I dropped it.
6ea86b96 commented 2017-07-12 09:06:08 +02:00 (Migrated from github.com)
Review

ok, dropped.

ok, dropped.

View file

@ -0,0 +1,5 @@
import React from "react";
import { connect } from "react-redux";
import TruncatedMarkdown from "./view";
export default connect()(TruncatedMarkdown);

View file

@ -0,0 +1,39 @@
import React from "react";
import ReactMarkdown from "react-markdown";
import ReactDOMServer from "react-dom/server";
class TruncatedMarkdown extends React.PureComponent {
static propTypes = {
lines: React.PropTypes.number,
};
static defaultProps = {
lines: null,
};
transformMarkdown(text) {
// render markdown to html string then trim html tag
let htmlString = ReactDOMServer.renderToStaticMarkup(
<ReactMarkdown source={this.props.children} />
);
var txt = document.createElement("textarea");
txt.innerHTML = htmlString;
return txt.value.replace(/<(?:.|\n)*?>/gm, "");
}
render() {
let content = this.props.children && typeof this.props.children === "string"
? this.transformMarkdown(this.props.children)
: this.props.children;
return (
<span
className="truncated-text"
style={{ WebkitLineClamp: this.props.lines }}
>
{content}
</span>
);
}
}
export default TruncatedMarkdown;

View file

@ -47,7 +47,7 @@ export const FETCH_CLAIM_LIST_MINE_STARTED = "FETCH_CLAIM_LIST_MINE_STARTED";
export const FETCH_CLAIM_LIST_MINE_COMPLETED =
"FETCH_CLAIM_LIST_MINE_COMPLETED";
export const FILE_LIST_STARTED = "FILE_LIST_STARTED";
export const FILE_LIST_COMPLETED = "FILE_LIST_COMPLETED";
export const FILE_LIST_SUCCEEDED = "FILE_LIST_SUCCEEDED";
export const FETCH_FILE_INFO_STARTED = "FETCH_FILE_INFO_STARTED";
export const FETCH_FILE_INFO_COMPLETED = "FETCH_FILE_INFO_COMPLETED";
export const FETCH_COST_INFO_STARTED = "FETCH_COST_INFO_STARTED";
@ -63,7 +63,16 @@ export const FETCH_AVAILABILITY_STARTED = "FETCH_AVAILABILITY_STARTED";
export const FETCH_AVAILABILITY_COMPLETED = "FETCH_AVAILABILITY_COMPLETED";
kauffj commented 2017-07-10 22:43:53 +02:00 (Migrated from github.com)
Review

I would propose that we reserve _COMPLETED for async actions that fire regardless of success or failure, and use _SUCCESS instead for actions that only fire when the async event is successful.

I would propose that we reserve `_COMPLETED` for async actions that fire regardless of success or failure, and use `_SUCCESS` instead for actions that only fire when the async event is successful.
6ea86b96 commented 2017-07-11 07:58:42 +02:00 (Migrated from github.com)
Review

Good call, I like it.

Good call, I like it.
6ea86b96 commented 2017-07-11 08:19:19 +02:00 (Migrated from github.com)
Review

maybe _SUCCEEDED

maybe `_SUCCEEDED`
export const FILE_DELETE = "FILE_DELETE";
export const ABANDON_CLAIM_STARTED = "ABANDON_CLAIM_STARTED";
export const ABANDON_CLAIM_COMPLETED = "ABANDON_CLAIM_COMPLETED";
export const ABANDON_CLAIM_SUCCEEDED = "ABANDON_CLAIM_SUCCEEDED";
export const FETCH_CHANNEL_LIST_MINE_STARTED =
"FETCH_CHANNEL_LIST_MINE_STARTED";
export const FETCH_CHANNEL_LIST_MINE_COMPLETED =
"FETCH_CHANNEL_LIST_MINE_COMPLETED";
export const CREATE_CHANNEL_STARTED = "CREATE_CHANNEL_STARTED";
export const CREATE_CHANNEL_COMPLETED = "CREATE_CHANNEL_COMPLETED";
export const PUBLISH_STARTED = "PUBLISH_STARTED";
export const PUBLISH_COMPLETED = "PUBLISH_COMPLETED";
export const PUBLISH_FAILED = "PUBLISH_FAILED";
// Search
export const SEARCH_STARTED = "SEARCH_STARTED";

View file

@ -223,45 +223,38 @@ lbry.publishDeprecated = function(
) {
lbry.publish(params).then(
result => {
if (returnedPending) {
return;
}
clearTimeout(returnPendingTimeout);
if (returnPendingTimeout) clearTimeout(returnPendingTimeout);
publishedCallback(result);
},
err => {
if (returnedPending) {
return;
}
clearTimeout(returnPendingTimeout);
if (returnPendingTimeout) clearTimeout(returnPendingTimeout);
errorCallback(err);
}
);
let returnedPending = false;
// Give a short grace period in case publish() returns right away or (more likely) gives an error
const returnPendingTimeout = setTimeout(() => {
returnedPending = true;
const returnPendingTimeout = setTimeout(
() => {
if (publishedCallback) {
savePendingPublish({
name: params.name,
channel_name: params.channel_name,
});
publishedCallback(true);
}
if (publishedCallback) {
savePendingPublish({
name: params.name,
channel_name: params.channel_name,
});
publishedCallback(true);
}
if (fileListedCallback) {
const { name, channel_name } = params;
savePendingPublish({
name: params.name,
channel_name: params.channel_name,
});
fileListedCallback(true);
}
}, 2000);
if (fileListedCallback) {
const { name, channel_name } = params;
savePendingPublish({
name: params.name,
channel_name: params.channel_name,
});
fileListedCallback(true);
}
},
2000,
{ once: true }
);
};
lbry.getClientSettings = function() {

View file

@ -203,6 +203,8 @@ lbryuri.build = function(uriObj, includeProto = true, allowExtraProps = false) {
/* Takes a parseable LBRY URI and converts it to standard, canonical format (currently this just
* consists of adding the lbry:// prefix if needed) */
lbryuri.normalize = function(uri) {
if (uri.match(/pending_claim/)) return uri;
const { name, path, bidPosition, claimSequence, claimId } = lbryuri.parse(
uri
);

View file

@ -3,15 +3,22 @@ import { connect } from "react-redux";
import { doFetchFileInfosAndPublishedClaims } from "actions/file_info";
import {
selectFileInfosDownloaded,
selectFileListDownloadedOrPublishedIsPending,
selectIsFetchingFileListDownloadedOrPublished,
} from "selectors/file_info";
import {
selectMyClaimsWithoutChannels,
selectIsFetchingClaimListMine,
} from "selectors/claims";
import { doFetchClaimListMine } from "actions/content";
import { doNavigate } from "actions/app";
import { doCancelAllResolvingUris } from "actions/content";
import FileListDownloaded from "./view";
const select = state => ({
fileInfos: selectFileInfosDownloaded(state),
isPending: selectFileListDownloadedOrPublishedIsPending(state),
isFetching: selectIsFetchingFileListDownloadedOrPublished(state),
claims: selectMyClaimsWithoutChannels(state),
isFetchingClaims: selectIsFetchingClaimListMine(state),
});
const perform = dispatch => ({
@ -19,6 +26,7 @@ const perform = dispatch => ({
fetchFileInfosDownloaded: () =>
dispatch(doFetchFileInfosAndPublishedClaims()),
cancelResolvingUris: () => dispatch(doCancelAllResolvingUris()),
fetchClaims: () => dispatch(doFetchClaimListMine()),
});
export default connect(select, perform)(FileListDownloaded);

View file

@ -12,7 +12,8 @@ import SubHeader from "component/subHeader";
class FileListDownloaded extends React.PureComponent {
componentWillMount() {
if (!this.props.isPending) this.props.fetchFileInfosDownloaded();
if (!this.props.isFetchingClaims) this.props.fetchClaims();
if (!this.props.isFetching) this.props.fetchFileInfosDownloaded();
}
componentWillUnmount() {
@ -20,13 +21,13 @@ class FileListDownloaded extends React.PureComponent {
}
render() {
const { fileInfos, isPending, navigate } = this.props;
const { fileInfos, isFetching, navigate } = this.props;
let content;
if (fileInfos && fileInfos.length > 0) {
content = <FileList fileInfos={fileInfos} fetching={isPending} />;
content = <FileList fileInfos={fileInfos} fetching={isFetching} />;
} else {
if (isPending) {
if (isFetching) {
content = <BusyMessage message={__("Loading")} />;
} else {
content = (

View file

@ -1,24 +1,24 @@
import React from "react";
import rewards from "rewards";
import { connect } from "react-redux";
import { doFetchFileInfosAndPublishedClaims } from "actions/file_info";
import { doFetchClaimListMine } from "actions/content";
import {
selectFileInfosPublished,
selectFileListDownloadedOrPublishedIsPending,
} from "selectors/file_info";
selectMyClaimsWithoutChannels,
selectIsFetchingClaimListMine,
} from "selectors/claims";
import { doClaimRewardType } from "actions/rewards";
import { doNavigate } from "actions/app";
import { doCancelAllResolvingUris } from "actions/content";
import FileListPublished from "./view";
const select = state => ({
fileInfos: selectFileInfosPublished(state),
isPending: selectFileListDownloadedOrPublishedIsPending(state),
claims: selectMyClaimsWithoutChannels(state),
isFetching: selectIsFetchingClaimListMine(state),
});
const perform = dispatch => ({
navigate: path => dispatch(doNavigate(path)),
fetchFileListPublished: () => dispatch(doFetchFileInfosAndPublishedClaims()),
fetchClaims: () => dispatch(doFetchClaimListMine()),
claimFirstPublishReward: () =>
dispatch(doClaimRewardType(rewards.TYPE_FIRST_PUBLISH)),
cancelResolvingUris: () => dispatch(doCancelAllResolvingUris()),

View file

@ -12,11 +12,11 @@ import SubHeader from "component/subHeader";
class FileListPublished extends React.PureComponent {
componentWillMount() {
if (!this.props.isPending) this.props.fetchFileListPublished();
if (!this.props.isFetching) this.props.fetchClaims();
}
componentDidUpdate() {
if (this.props.fileInfos.length > 0) this.props.claimFirstPublishReward();
// if (this.props.claims.length > 0) this.props.fetchClaims();
}
componentWillUnmount() {
@ -24,20 +24,20 @@ class FileListPublished extends React.PureComponent {
}
render() {
const { fileInfos, isPending, navigate } = this.props;
const { claims, isFetching, navigate } = this.props;
let content;
if (fileInfos && fileInfos.length > 0) {
if (claims && claims.length > 0) {
content = (
<FileList
fileInfos={fileInfos}
fetching={isPending}
fileInfos={claims}
fetching={isFetching}
fileTileShowEmpty={FileTile.SHOW_EMPTY_PENDING}
/>
);
} else {
if (isPending) {
if (isFetching) {
content = <BusyMessage message={__("Loading")} />;
} else {
content = (

View file

@ -1,4 +1,5 @@
import React from "react";
import ReactMarkdown from "react-markdown";
import lbry from "lbry.js";
import lbryuri from "lbryuri.js";
import Video from "component/video";
@ -119,7 +120,11 @@ class FilePage extends React.PureComponent {
</div>
</div>
<div className="card__content card__subtext card__subtext card__subtext--allow-newlines">
{metadata && metadata.description}
<ReactMarkdown
source={(metadata && metadata.description) || ""}
escapeHtml={true}
disallowedTypes={["Heading", "HtmlInline", "HtmlBlock"]}
/>
</div>
</div>
{metadata

View file

@ -2,13 +2,29 @@ import React from "react";
import { connect } from "react-redux";
import { doNavigate, doHistoryBack } from "actions/app";
import { doClaimRewardType } from "actions/rewards";
import { selectMyClaims } from "selectors/claims";
import { doFetchClaimListMine } from "actions/content";
import {
selectMyClaims,
selectFetchingMyChannels,
selectMyChannelClaims,
selectClaimsByUri,
} from "selectors/claims";
import { selectResolvingUris } from "selectors/content";
import {
doFetchClaimListMine,
doFetchChannelListMine,
doResolveUri,
doCreateChannel,
doPublish,
} from "actions/content";
import rewards from "rewards";
import PublishPage from "./view";
const select = state => ({
myClaims: selectMyClaims(state),
fetchingChannels: selectFetchingMyChannels(state),
channels: selectMyChannelClaims(state),
claimsByUri: selectClaimsByUri(state),
resolvingUris: selectResolvingUris(state),
});
const perform = dispatch => ({
@ -17,6 +33,10 @@ const perform = dispatch => ({
fetchClaimListMine: () => dispatch(doFetchClaimListMine()),
claimFirstChannelReward: () =>
dispatch(doClaimRewardType(rewards.TYPE_FIRST_CHANNEL)),
fetchChannelListMine: () => dispatch(doFetchChannelListMine()),
resolveUri: uri => dispatch(doResolveUri(uri)),
createChannel: (name, amount) => dispatch(doCreateChannel(name, amount)),
publish: params => dispatch(doPublish(params)),
});
export default connect(select, perform)(PublishPage);

View file

@ -1,922 +1,8 @@
import React from "react";
import lbry from "lbry";
import lbryuri from "lbryuri";
import { FormField, FormRow } from "component/form.js";
import Link from "component/link";
import rewards from "rewards";
import Modal from "component/modal";
import PublishForm from "component/publishForm";
class PublishPage extends React.PureComponent {
constructor(props) {
super(props);
this._requiredFields = ["meta_title", "name", "bid", "tos_agree"];
this.state = {
channels: null,
rawName: "",
name: "",
bid: 10,
hasFile: false,
feeAmount: "",
feeCurrency: "USD",
channel: "anonymous",
newChannelName: "@",
newChannelBid: 10,
nameResolved: null,
myClaimExists: null,
topClaimValue: 0.0,
myClaimValue: 0.0,
myClaimMetadata: null,
copyrightNotice: "",
otherLicenseDescription: "",
otherLicenseUrl: "",
uploadProgress: 0.0,
uploaded: false,
errorMessage: null,
submitting: false,
creatingChannel: false,
modal: null,
};
}
_updateChannelList(channel) {
// Calls API to update displayed list of channels. If a channel name is provided, will select
// that channel at the same time (used immediately after creating a channel)
lbry.channel_list_mine().then(channels => {
this.props.claimFirstChannelReward();
this.setState({
channels: channels,
...(channel ? { channel } : {}),
});
});
}
handleSubmit(event) {
if (typeof event !== "undefined") {
event.preventDefault();
}
this.setState({
submitting: true,
});
let checkFields = this._requiredFields;
if (!this.state.myClaimExists) {
checkFields.unshift("file");
}
let missingFieldFound = false;
for (let fieldName of checkFields) {
const field = this.refs[fieldName];
if (field) {
if (field.getValue() === "" || field.getValue() === false) {
field.showRequiredError();
if (!missingFieldFound) {
field.focus();
missingFieldFound = true;
}
} else {
field.clearError();
}
}
}
if (missingFieldFound) {
this.setState({
submitting: false,
});
return;
}
if (this.state.nameIsMine) {
// Pre-populate with existing metadata
var metadata = Object.assign({}, this.state.myClaimMetadata);
if (this.refs.file.getValue() !== "") {
delete metadata.sources;
}
} else {
var metadata = {};
}
for (let metaField of [
"title",
"description",
"thumbnail",
"license",
"license_url",
"language",
]) {
var value = this.refs["meta_" + metaField].getValue();
if (value !== "") {
metadata[metaField] = value;
}
}
metadata.nsfw = parseInt(this.refs.meta_nsfw.getValue()) === 1;
const licenseUrl = this.refs.meta_license_url.getValue();
if (licenseUrl) {
metadata.license_url = licenseUrl;
}
var doPublish = () => {
var publishArgs = {
name: this.state.name,
bid: parseFloat(this.state.bid),
metadata: metadata,
...(this.state.channel != "new" && this.state.channel != "anonymous"
? { channel_name: this.state.channel }
: {}),
};
if (this.refs.file.getValue() !== "") {
publishArgs.file_path = this.refs.file.getValue();
}
lbry.publishDeprecated(
publishArgs,
message => {
this.handlePublishStarted();
},
null,
error => {
this.handlePublishError(error);
}
);
};
if (this.state.isFee) {
lbry.wallet_unused_address().then(address => {
metadata.fee = {
currency: this.state.feeCurrency,
amount: parseFloat(this.state.feeAmount),
address: address,
};
doPublish();
});
} else {
doPublish();
}
}
handlePublishStarted() {
this.setState({
modal: "publishStarted",
});
}
handlePublishStartedConfirmed() {
this.props.navigate("/published");
}
handlePublishError(error) {
this.setState({
submitting: false,
modal: "error",
errorMessage: error.message,
});
}
handleNameChange(event) {
var rawName = event.target.value;
if (!rawName) {
this.setState({
rawName: "",
name: "",
nameResolved: false,
});
return;
}
if (!lbryuri.isValidName(rawName, false)) {
this.refs.name.showError(
__("LBRY names must contain only letters, numbers and dashes.")
);
return;
}
const name = rawName.toLowerCase();
this.setState({
rawName: rawName,
name: name,
nameResolved: null,
myClaimExists: null,
});
const myClaimInfo = Object.values(this.props.myClaims).find(
claim => claim.name === name
);
this.setState({
myClaimExists: !!myClaimInfo,
});
lbry.resolve({ uri: name }).then(
claimInfo => {
if (name != this.state.name) {
return;
}
if (!claimInfo) {
this.setState({
nameResolved: false,
});
} else {
const topClaimIsMine =
myClaimInfo && myClaimInfo.amount >= claimInfo.amount;
const newState = {
nameResolved: true,
topClaimValue: parseFloat(claimInfo.amount),
myClaimExists: !!myClaimInfo,
myClaimValue: myClaimInfo ? parseFloat(myClaimInfo.amount) : null,
myClaimMetadata: myClaimInfo ? myClaimInfo.value : null,
topClaimIsMine: topClaimIsMine,
};
if (topClaimIsMine) {
newState.bid = myClaimInfo.amount;
} else if (this.state.myClaimMetadata) {
// Just changed away from a name we have a claim on, so clear pre-fill
newState.bid = "";
}
this.setState(newState);
}
},
() => {
// Assume an error means the name is available
this.setState({
name: name,
nameResolved: false,
myClaimExists: false,
});
}
);
}
handleBidChange(event) {
this.setState({
bid: event.target.value,
});
}
handleFeeAmountChange(event) {
this.setState({
feeAmount: event.target.value,
});
}
handleFeeCurrencyChange(event) {
this.setState({
feeCurrency: event.target.value,
});
}
handleFeePrefChange(feeEnabled) {
this.setState({
isFee: feeEnabled,
});
}
handleLicenseChange(event) {
var licenseType = event.target.options[
event.target.selectedIndex
].getAttribute("data-license-type");
var newState = {
copyrightChosen: licenseType == "copyright",
otherLicenseChosen: licenseType == "other",
};
if (licenseType == "copyright") {
newState.copyrightNotice = __("All rights reserved.");
}
this.setState(newState);
}
handleCopyrightNoticeChange(event) {
this.setState({
copyrightNotice: event.target.value,
});
}
handleOtherLicenseDescriptionChange(event) {
this.setState({
otherLicenseDescription: event.target.value,
});
}
handleOtherLicenseUrlChange(event) {
this.setState({
otherLicenseUrl: event.target.value,
});
}
handleChannelChange(event) {
const channel = event.target.value;
this.setState({
channel: channel,
});
}
handleNewChannelNameChange(event) {
const newChannelName = event.target.value.startsWith("@")
? event.target.value
: "@" + event.target.value;
if (
newChannelName.length > 1 &&
!lbryuri.isValidName(newChannelName.substr(1), false)
) {
this.refs.newChannelName.showError(
__("LBRY channel names must contain only letters, numbers and dashes.")
);
return;
} else {
this.refs.newChannelName.clearError();
}
this.setState({
newChannelName: newChannelName,
});
}
handleNewChannelBidChange(event) {
this.setState({
newChannelBid: event.target.value,
});
}
handleTOSChange(event) {
this.setState({
TOSAgreed: event.target.checked,
});
}
handleCreateChannelClick(event) {
if (this.state.newChannelName.length < 5) {
this.refs.newChannelName.showError(
__("LBRY channel names must be at least 4 characters in length.")
);
return;
}
this.setState({
creatingChannel: true,
});
const newChannelName = this.state.newChannelName;
lbry
.channel_new({
channel_name: newChannelName,
amount: parseFloat(this.state.newChannelBid),
})
.then(
() => {
setTimeout(() => {
this.setState({
creatingChannel: false,
});
this._updateChannelList(newChannelName);
}, 10000);
},
error => {
// TODO: better error handling
this.refs.newChannelName.showError(
__("Unable to create channel due to an internal error.")
);
this.setState({
creatingChannel: false,
});
}
);
}
getLicenseUrl() {
if (!this.refs.meta_license) {
return "";
} else if (this.state.otherLicenseChosen) {
return this.state.otherLicenseUrl;
} else {
return (
this.refs.meta_license.getSelectedElement().getAttribute("data-url") ||
""
);
}
}
componentWillMount() {
this.props.fetchClaimListMine();
this._updateChannelList();
}
onFileChange() {
if (this.refs.file.getValue()) {
this.setState({ hasFile: true });
} else {
this.setState({ hasFile: false });
}
}
getNameBidHelpText() {
if (!this.state.name) {
return __("Select a URL for this publish.");
} else if (this.state.nameResolved === false) {
return __("This URL is unused.");
} else if (this.state.myClaimExists) {
return __(
"You have already used this URL. Publishing to it again will update your previous publish."
);
} else if (this.state.topClaimValue) {
if (this.state.topClaimValue === 1) {
return (
<span>
{__(
'A deposit of at least one credit is required to win "%s". However, you can still get a permanent URL for any amount.',
this.state.name
)}
</span>
);
} else {
return (
<span>
{__(
'A deposit of at least "%s" credits is required to win "%s". However, you can still get a permanent URL for any amount.',
this.state.topClaimValue,
this.state.name
)}
</span>
);
}
} else {
return "";
}
}
closeModal() {
this.setState({
modal: null,
});
}
render() {
if (this.state.channels === null) {
return null;
}
const lbcInputHelp = __(
"This LBC remains yours and the deposit can be undone at any time."
);
return (
<main className="main--single-column">
<form
onSubmit={event => {
this.handleSubmit(event);
}}
>
<section className="card">
<div className="card__title-primary">
<h4>{__("Content")}</h4>
<div className="card__subtitle">
{__("What are you publishing?")}
</div>
</div>
<div className="card__content">
<FormRow
name="file"
label="File"
ref="file"
type="file"
onChange={event => {
this.onFileChange(event);
}}
helper={
this.state.myClaimExists
? __(
"If you don't choose a file, the file from your existing claim will be used."
)
: null
}
/>
</div>
{!this.state.hasFile
? ""
: <div>
<div className="card__content">
<FormRow
label={__("Title")}
type="text"
ref="meta_title"
name="title"
placeholder={__("Title")}
/>
</div>
<div className="card__content">
<FormRow
type="text"
label={__("Thumbnail URL")}
ref="meta_thumbnail"
name="thumbnail"
placeholder="http://spee.ch/mylogo"
/>
</div>
<div className="card__content">
<FormRow
label={__("Description")}
type="textarea"
ref="meta_description"
name="description"
placeholder={__("Description of your content")}
/>
</div>
<div className="card__content">
<FormRow
label={__("Language")}
type="select"
defaultValue="en"
ref="meta_language"
name="language"
>
<option value="en">{__("English")}</option>
<option value="zh">{__("Chinese")}</option>
<option value="fr">{__("French")}</option>
<option value="de">{__("German")}</option>
<option value="jp">{__("Japanese")}</option>
<option value="ru">{__("Russian")}</option>
<option value="es">{__("Spanish")}</option>
</FormRow>
</div>
<div className="card__content">
<FormRow
type="select"
label={__("Maturity")}
defaultValue="en"
ref="meta_nsfw"
name="nsfw"
>
{/* <option value=""></option> */}
<option value="0">{__("All Ages")}</option>
<option value="1">{__("Adults Only")}</option>
</FormRow>
</div>
</div>}
</section>
<section className="card">
<div className="card__title-primary">
<h4>{__("Access")}</h4>
<div className="card__subtitle">
{__("How much does this content cost?")}
</div>
</div>
<div className="card__content">
<div className="form-row__label-row">
<label className="form-row__label">{__("Price")}</label>
</div>
<FormRow
label={__("Free")}
type="radio"
name="isFree"
value="1"
onChange={() => {
this.handleFeePrefChange(false);
}}
defaultChecked={!this.state.isFee}
/>
<FormField
type="radio"
name="isFree"
label={!this.state.isFee ? __("Choose price...") : __("Price ")}
onChange={() => {
this.handleFeePrefChange(true);
}}
defaultChecked={this.state.isFee}
/>
<span className={!this.state.isFee ? "hidden" : ""}>
<FormField
type="number"
className="form-field__input--inline"
step="0.01"
placeholder="1.00"
min="0.01"
onChange={event => this.handleFeeAmountChange(event)}
/>
{" "}
<FormField
type="select"
onChange={event => {
this.handleFeeCurrencyChange(event);
}}
>
<option value="USD">{__("US Dollars")}</option>
<option value="LBC">{__("LBRY credits")}</option>
</FormField>
</span>
{this.state.isFee
? <div className="form-field__helper">
{__(
"If you choose to price this content in dollars, the number of credits charged will be adjusted based on the value of LBRY credits at the time of purchase."
)}
</div>
: ""}
<FormRow
label="License"
type="select"
ref="meta_license"
name="license"
onChange={event => {
this.handleLicenseChange(event);
}}
>
<option />
<option>{__("Public Domain")}</option>
<option data-url="https://creativecommons.org/licenses/by/4.0/legalcode">
{__("Creative Commons Attribution 4.0 International")}
</option>
<option data-url="https://creativecommons.org/licenses/by-sa/4.0/legalcode">
{__(
"Creative Commons Attribution-ShareAlike 4.0 International"
)}
</option>
<option data-url="https://creativecommons.org/licenses/by-nd/4.0/legalcode">
{__(
"Creative Commons Attribution-NoDerivatives 4.0 International"
)}
</option>
<option data-url="https://creativecommons.org/licenses/by-nc/4.0/legalcode">
{__(
"Creative Commons Attribution-NonCommercial 4.0 International"
)}
</option>
<option data-url="https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode">
{__(
"Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International"
)}
</option>
<option data-url="https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode">
{__(
"Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International"
)}
</option>
<option
data-license-type="copyright"
{...(this.state.copyrightChosen
? { value: this.state.copyrightNotice }
: {})}
>
{__("Copyrighted...")}
</option>
<option
data-license-type="other"
{...(this.state.otherLicenseChosen
? { value: this.state.otherLicenseDescription }
: {})}
>
{__("Other...")}
</option>
</FormRow>
<FormField
type="hidden"
ref="meta_license_url"
name="license_url"
value={this.getLicenseUrl()}
/>
{this.state.copyrightChosen
? <FormRow
label={__("Copyright notice")}
type="text"
name="copyright-notice"
value={this.state.copyrightNotice}
onChange={event => {
this.handleCopyrightNoticeChange(event);
}}
/>
: null}
{this.state.otherLicenseChosen
? <FormRow
label={__("License description")}
type="text"
name="other-license-description"
onChange={event => {
this.handleOtherLicenseDescriptionChange();
}}
/>
: null}
{this.state.otherLicenseChosen
? <FormRow
label={__("License URL")}
type="text"
name="other-license-url"
onChange={event => {
this.handleOtherLicenseUrlChange(event);
}}
/>
: null}
</div>
</section>
<section className="card">
<div className="card__title-primary">
<h4>{__("Identity")}</h4>
<div className="card__subtitle">
{__("Who created this content?")}
</div>
</div>
<div className="card__content">
<FormRow
type="select"
tabIndex="1"
onChange={event => {
this.handleChannelChange(event);
}}
value={this.state.channel}
>
<option key="anonymous" value="anonymous">
{__("Anonymous")}
</option>
{this.state.channels.map(({ name }) =>
<option key={name} value={name}>{name}</option>
)}
<option key="new" value="new">{__("New identity...")}</option>
</FormRow>
</div>
{this.state.channel == "new"
? <div className="card__content">
<FormRow
label={__("Name")}
type="text"
onChange={event => {
this.handleNewChannelNameChange(event);
}}
ref={newChannelName => {
this.refs.newChannelName = newChannelName;
}}
value={this.state.newChannelName}
/>
<FormRow
label={__("Deposit")}
postfix={__("LBC")}
step="0.01"
min="0"
type="number"
helper={lbcInputHelp}
onChange={event => {
this.handleNewChannelBidChange(event);
}}
value={this.state.newChannelBid}
/>
<div className="form-row-submit">
<Link
button="primary"
label={
!this.state.creatingChannel
? __("Create identity")
: __("Creating identity...")
}
onClick={event => {
this.handleCreateChannelClick(event);
}}
disabled={this.state.creatingChannel}
/>
</div>
</div>
: null}
</section>
<section className="card">
<div className="card__title-primary">
<h4>{__("Address")}</h4>
<div className="card__subtitle">
{__("Where should this content permanently reside?")}
{" "}
<Link
label={__("Read more")}
href="https://lbry.io/faq/naming"
/>.
</div>
</div>
<div className="card__content">
<FormRow
prefix="lbry://"
type="text"
ref="name"
placeholder="myname"
value={this.state.rawName}
onChange={event => {
this.handleNameChange(event);
}}
helper={this.getNameBidHelpText()}
/>
</div>
{this.state.rawName
? <div className="card__content">
<FormRow
ref="bid"
type="number"
step="0.01"
label={__("Deposit")}
postfix="LBC"
onChange={event => {
this.handleBidChange(event);
}}
value={this.state.bid}
placeholder={
this.state.nameResolved
? this.state.topClaimValue + 10
: 100
}
helper={lbcInputHelp}
/>
</div>
: ""}
</section>
<section className="card">
<div className="card__title-primary">
<h4>{__("Terms of Service")}</h4>
</div>
<div className="card__content">
<FormRow
label={
<span>
{__("I agree to the")}
{" "}
<Link
href="https://www.lbry.io/termsofservice"
label={__("LBRY terms of service")}
checked={this.state.TOSAgreed}
/>
</span>
}
type="checkbox"
name="tos_agree"
ref={field => {
this.refs.tos_agree = field;
}}
onChange={event => {
this.handleTOSChange(event);
}}
/>
</div>
</section>
<div className="card-series-submit">
<Link
button="primary"
label={
!this.state.submitting ? __("Publish") : __("Publishing...")
}
onClick={event => {
this.handleSubmit(event);
}}
disabled={this.state.submitting}
/>
<Link
button="cancel"
onClick={this.props.back}
label={__("Cancel")}
/>
<input type="submit" className="hidden" />
</div>
</form>
<Modal
isOpen={this.state.modal == "publishStarted"}
contentLabel={__("File published")}
onConfirmed={event => {
this.handlePublishStartedConfirmed(event);
}}
>
<p>
{__("Your file has been published to LBRY at the address")}
{" "}<code>lbry://{this.state.name}</code>!
</p>
<p>
{__(
'The file will take a few minutes to appear for other LBRY users. Until then it will be listed as "pending" under your published files.'
)}
</p>
</Modal>
<Modal
isOpen={this.state.modal == "error"}
contentLabel={__("Error publishing file")}
onConfirmed={event => {
this.closeModal(event);
}}
>
{__(
"The following error occurred when attempting to publish your file"
)}: {this.state.errorMessage}
</Modal>
</main>
);
}
}
const PublishPage = props => {
return <PublishForm {...props} />;
};
export default PublishPage;

View file

@ -24,7 +24,7 @@ class ShowPage extends React.PureComponent {
let innerContent = "";
if (isResolvingUri && !claim) {
if ((isResolvingUri && !claim) || !claim) {
innerContent = (
<section className="card">
<div className="card__inner">

View file

@ -15,7 +15,13 @@ reducers[types.RESOLVE_URI_COMPLETED] = function(state, action) {
byUri[uri] = claim.claim_id;
} else if (claim === undefined && certificate !== undefined) {
byId[certificate.claim_id] = certificate;
byUri[uri] = certificate.claim_id;
// Don't point URI at the channel certificate unless it actually is
// a channel URI. This is brittle.
if (!uri.split(certificate.name)[1].match(/\//)) {
byUri[uri] = certificate.claim_id;
} else {
byUri[uri] = null;
}
} else {
byUri[uri] = null;
}
@ -28,43 +34,72 @@ reducers[types.RESOLVE_URI_COMPLETED] = function(state, action) {
reducers[types.FETCH_CLAIM_LIST_MINE_STARTED] = function(state, action) {
return Object.assign({}, state, {
isClaimListMinePending: true,
isFetchingClaimListMine: true,
});
};
reducers[types.FETCH_CLAIM_LIST_MINE_COMPLETED] = function(state, action) {
const { claims } = action.data;
const myClaims = new Set(state.myClaims);
const byUri = Object.assign({}, state.claimsByUri);
const byId = Object.assign({}, state.byId);
const pendingById = Object.assign({}, state.pendingById);
const abandoningById = Object.assign({}, state.abandoningById);
const myClaims = new Set(
claims
.map(claim => claim.claim_id)
.filter(claimId => Object.keys(abandoningById).indexOf(claimId) === -1)
);
claims.forEach(claim => {
myClaims.add(claim.claim_id);
byId[claim.claim_id] = claim;
const pending = Object.values(pendingById).find(pendingClaim => {
return (
pendingClaim.name == claim.name &&
pendingClaim.channel_name == claim.channel_name
);
});
if (pending) {
delete pendingById[pending.claim_id];
}
});
// Remove old timed out pending publishes
const old = Object.values(pendingById)
.filter(pendingClaim => Date.now() - pendingClaim.time >= 20 * 60 * 1000)
.forEach(pendingClaim => {
delete pendingById[pendingClaim.claim_id];
});
return Object.assign({}, state, {
isClaimListMinePending: false,
isFetchingClaimListMine: false,
myClaims: myClaims,
byId,
pendingById,
});
};
// reducers[types.FETCH_CHANNEL_CLAIMS_STARTED] = function(state, action) {
// const {
// uri,
// } = action.data
//
// const newClaims = Object.assign({}, state.claimsByChannel)
//
// if (claims !== undefined) {
// newClaims[uri] = claims
// }
//
// return Object.assign({}, state, {
// claimsByChannel: newClaims
// })
// }
reducers[types.FETCH_CHANNEL_LIST_MINE_STARTED] = function(state, action) {
return Object.assign({}, state, { fetchingMyChannels: true });
};
reducers[types.FETCH_CHANNEL_LIST_MINE_COMPLETED] = function(state, action) {
const { claims } = action.data;
const myChannelClaims = new Set(state.myChannelClaims);
const byId = Object.assign({}, state.byId);
claims.forEach(claim => {
myChannelClaims.add(claim.claim_id);
byId[claims.claim_id] = claim;
});
return Object.assign({}, state, {
byId,
fetchingMyChannels: false,
myChannelClaims,
});
};
reducers[types.FETCH_CHANNEL_CLAIMS_COMPLETED] = function(state, action) {
const { uri, claims } = action.data;
@ -80,7 +115,18 @@ reducers[types.FETCH_CHANNEL_CLAIMS_COMPLETED] = function(state, action) {
});
};
reducers[types.ABANDON_CLAIM_COMPLETED] = function(state, action) {
reducers[types.ABANDON_CLAIM_STARTED] = function(state, action) {
const { claimId } = action.data;
const abandoningById = Object.assign({}, state.abandoningById);
abandoningById[claimId] = true;
return Object.assign({}, state, {
abandoningById,
});
};
reducers[types.ABANDON_CLAIM_SUCCEEDED] = function(state, action) {
const { claimId } = action.data;
const myClaims = new Set(state.myClaims);
const byId = Object.assign({}, state.byId);
@ -103,6 +149,20 @@ reducers[types.ABANDON_CLAIM_COMPLETED] = function(state, action) {
});
};
reducers[types.CREATE_CHANNEL_COMPLETED] = function(state, action) {
const { channelClaim } = action.data;
const byId = Object.assign({}, state.byId);
const myChannelClaims = new Set(state.myChannelClaims);
byId[channelClaim.claim_id] = channelClaim;
myChannelClaims.add(channelClaim.claim_id);
return Object.assign({}, state, {
byId,
myChannelClaims,
});
};
export default function reducer(state = defaultState, action) {
const handler = reducers[action.type];
if (handler) return handler(state, action);

View file

@ -6,14 +6,15 @@ const defaultState = {};
reducers[types.FILE_LIST_STARTED] = function(state, action) {
return Object.assign({}, state, {
isFileListPending: true,
isFetchingFileList: true,
});
};
reducers[types.FILE_LIST_COMPLETED] = function(state, action) {
reducers[types.FILE_LIST_SUCCEEDED] = function(state, action) {
const { fileInfos } = action.data;
const newByOutpoint = Object.assign({}, state.byOutpoint);
const pendingByOutpoint = Object.assign({}, state.pendingByOutpoint);
fileInfos.forEach(fileInfo => {
const { outpoint } = fileInfo;
@ -21,8 +22,9 @@ reducers[types.FILE_LIST_COMPLETED] = function(state, action) {
});
return Object.assign({}, state, {
isFileListPending: false,
isFetchingFileList: false,
byOutpoint: newByOutpoint,
pendingByOutpoint,
});
};

View file

@ -51,7 +51,7 @@ export const makeSelectClaimForUri = () => {
const selectClaimForUriIsMine = (state, props) => {
const uri = lbryuri.normalize(props.uri);
const claim = selectClaimsByUri(state)[uri];
const myClaims = selectMyClaims(state);
const myClaims = selectMyClaimsRaw(state);
return myClaims.has(claim.claim_id);
};
@ -100,27 +100,72 @@ export const makeSelectContentTypeForUri = () => {
);
};
export const selectClaimListMineIsPending = createSelector(
export const selectIsFetchingClaimListMine = createSelector(
_selectState,
state => state.isClaimListMinePending
state => !!state.isFetchingClaimListMine
);
export const selectMyClaims = createSelector(
export const selectMyClaimsRaw = createSelector(
_selectState,
state => new Set(state.myClaims)
);
export const selectAbandoningIds = createSelector(_selectState, state =>
Object.keys(state.abandoningById || {})
);
export const selectPendingClaims = createSelector(_selectState, state =>
Object.values(state.pendingById || {})
);
export const selectMyClaims = createSelector(
selectMyClaimsRaw,
selectClaimsById,
selectAbandoningIds,
selectPendingClaims,
(myClaimIds, byId, abandoningIds, pendingClaims) => {
const claims = [];
myClaimIds.forEach(id => {
const claim = byId[id];
if (claim && abandoningIds.indexOf(id) == -1) claims.push(claim);
});
return [...claims, ...pendingClaims];
}
);
export const selectMyClaimsWithoutChannels = createSelector(
selectMyClaims,
myClaims => myClaims.filter(claim => !claim.name.match(/^@/))
);
export const selectMyClaimsOutpoints = createSelector(
selectMyClaims,
selectClaimsById,
(claimIds, byId) => {
myClaims => {
const outpoints = [];
claimIds.forEach(claimId => {
const claim = byId[claimId];
if (claim) outpoints.push(`${claim.txid}:${claim.nout}`);
});
myClaims.forEach(claim => outpoints.push(`${claim.txid}:${claim.nout}`));
return outpoints;
}
);
export const selectFetchingMyChannels = createSelector(
_selectState,
state => !!state.fetchingMyChannels
);
export const selectMyChannelClaims = createSelector(
_selectState,
selectClaimsById,
(state, byId) => {
const ids = state.myChannelClaims || [];
const claims = [];
ids.forEach(id => claims.push(byId[id]));
return claims;
}
);

View file

@ -2,7 +2,8 @@ import lbry from "lbry";
import { createSelector } from "reselect";
import {
selectClaimsByUri,
selectClaimListMineIsPending,
selectIsFetchingClaimListMine,
selectMyClaims,
selectMyClaimsOutpoints,
} from "selectors/claims";
@ -13,16 +14,16 @@ export const selectFileInfosByOutpoint = createSelector(
state => state.byOutpoint || {}
);
export const selectFileListIsPending = createSelector(
export const selectIsFetchingFileList = createSelector(
_selectState,
state => state.isFileListPending
state => !!state.isFetchingFileList
);
export const selectFileListDownloadedOrPublishedIsPending = createSelector(
selectFileListIsPending,
selectClaimListMineIsPending,
(isFileListPending, isClaimListMinePending) =>
isFileListPending || isClaimListMinePending
export const selectIsFetchingFileListDownloadedOrPublished = createSelector(
selectIsFetchingFileList,
selectIsFetchingClaimListMine,
(isFetchingFileList, isFetchingClaimListMine) =>
isFetchingFileList || isFetchingClaimListMine
);
export const selectFileInfoForUri = (state, props) => {
@ -69,42 +70,38 @@ export const makeSelectLoadingForUri = () => {
return createSelector(selectLoadingForUri, loading => !!loading);
};
export const selectFileInfosDownloaded = createSelector(
selectFileInfosByOutpoint,
selectMyClaimsOutpoints,
(byOutpoint, myClaimOutpoints) => {
const fileInfoList = [];
Object.values(byOutpoint).forEach(fileInfo => {
if (
fileInfo &&
myClaimOutpoints.indexOf(fileInfo.outpoint) === -1 &&
(fileInfo.completed || fileInfo.written_bytes)
) {
fileInfoList.push(fileInfo);
}
});
return fileInfoList;
}
);
export const selectFileInfosPendingPublish = createSelector(
_selectState,
state => {
return lbry.getPendingPublishes();
state => Object.values(state.pendingByOutpoint || {})
);
export const selectFileInfosDownloaded = createSelector(
selectFileInfosByOutpoint,
selectMyClaims,
(byOutpoint, myClaims) => {
return Object.values(byOutpoint).filter(fileInfo => {
const myClaimIds = myClaims.map(claim => claim.claim_id);
return (
fileInfo &&
myClaimIds.indexOf(fileInfo.claim_id) === -1 &&
(fileInfo.completed || fileInfo.written_bytes)
);
});
}
);
export const selectFileInfosPublished = createSelector(
selectFileInfosByOutpoint,
selectFileInfosPendingPublish,
selectMyClaimsOutpoints,
(byOutpoint, pendingFileInfos, outpoints) => {
selectFileInfosPendingPublish,
(byOutpoint, outpoints, pendingPublish) => {
const fileInfos = [];
outpoints.forEach(outpoint => {
const fileInfo = byOutpoint[outpoint];
if (fileInfo) fileInfos.push(fileInfo);
});
return [...fileInfos, ...pendingFileInfos];
return [...fileInfos, ...pendingPublish];
}
);
@ -133,7 +130,6 @@ export const selectFileInfosByUri = createSelector(
if (fileInfo) fileInfos[uri] = fileInfo;
}
});
return fileInfos;
}
);

View file

@ -86,18 +86,14 @@ const createStoreWithMiddleware = redux.compose(
const reduxStore = createStoreWithMiddleware(enableBatching(reducers));
const compressor = createCompressor();
const saveClaimsFilter = createFilter("claims", [
"byId",
"claimsByUri",
"myClaims",
]);
const saveClaimsFilter = createFilter("claims", ["byId", "claimsByUri"]);
const persistOptions = {
whitelist: ["claims"],
// Order is important. Needs to be compressed last or other transforms can't
// read the data
transforms: [saveClaimsFilter, compressor],
debounce: 1000,
debounce: 10000,
storage: localForage,
};
window.cacheStore = persistStore(reduxStore, persistOptions);

View file

@ -29,8 +29,10 @@
"rc-progress": "^2.0.6",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"react-markdown": "^2.5.0",
"react-modal": "^1.5.2",
"react-redux": "^5.0.3",
"react-simplemde-editor": "^3.6.11",
"redux": "^3.6.0",
"redux-action-buffer": "^1.1.0",
"redux-logger": "^3.0.1",
@ -52,6 +54,8 @@
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.18.0",
"electron-rebuild": "^1.5.11",
"css-loader": "^0.28.4",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "^1.6.1",
@ -64,6 +68,7 @@
"lint-staged": "^3.6.0",
"node-loader": "^0.6.0",
"prettier": "^1.4.2",
"style-loader": "^0.18.2",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.4",
"webpack-notifier": "^1.5.0",

View file

@ -117,6 +117,9 @@ input[type="text"].input-copyable {
border: $width-input-border solid $color-form-border;
}
}
.form-field--SimpleMDE {
display: block;
}
.form-field__label {
&[for] { cursor: pointer; }
@ -163,4 +166,8 @@ input[type="text"].input-copyable {
}
.form-field__helper {
color: $color-help;
}
.form-field__input.form-field__input-SimpleMDE .CodeMirror-scroll {
height: auto;
}

File diff suppressed because it is too large Load diff