removed console logs

This commit is contained in:
bill bittner 2018-03-05 22:55:56 -08:00
parent 4da04d833c
commit 1c21ec3f70
20 changed files with 2 additions and 53 deletions

View file

@ -39,7 +39,6 @@ module.exports = (req, res) => {
.run(saga)
.done
.then(() => {
console.log('preload sagas are done');
// render component to a string
const html = renderToString(
<Provider store={store}>
@ -56,10 +55,7 @@ module.exports = (req, res) => {
// check for a redirect
if (context.url) {
console.log('REDIRECTING:', context.url);
return res.redirect(301, context.url);
} else {
console.log(`we're good, send the response`);
}
// get the initial state from our Redux store

View file

@ -71,7 +71,6 @@ module.exports = {
},
resolveUri (uri) {
logger.debug(`lbryApi >> Resolving URI for "${uri}"`);
// console.log('resolving uri', uri);
return new Promise((resolve, reject) => {
axios
.post(lbryApiUri, {

View file

@ -73,7 +73,6 @@ export function toggleMetadataInputs (showMetadataInputs) {
};
export function onNewThumbnail (file) {
console.log('new thumbnail action created');
return {
type: actions.THUMBNAIL_NEW,
data: file,

View file

@ -2,7 +2,6 @@ import Request from 'utils/request';
const { site: { host } } = require('../../config/speechConfig.js');
export function getLongClaimId (name, modifier) {
// console.log('getting long claim id for asset:', name, modifier);
let body = {};
// create request params
if (modifier) {
@ -26,13 +25,11 @@ export function getLongClaimId (name, modifier) {
};
export function getShortId (name, claimId) {
// console.log('getting short id for asset:', name, claimId);
const url = `${host}/api/claim/short-id/${claimId}/${name}`;
return Request(url);
};
export function getClaimData (name, claimId) {
// console.log('getting claim data for asset:', name, claimId);
const url = `${host}/api/claim/data/${name}/${claimId}`;
return Request(url);
};

View file

@ -2,14 +2,12 @@ import Request from 'utils/request';
const { site: { host } } = require('../../config/speechConfig.js');
export function getChannelData (name, id) {
console.log('getting channel data for channel:', name, id);
if (!id) id = 'none';
const url = `${host}/api/channel/data/${name}/${id}`;
return Request(url);
};
export function getChannelClaims (name, longId, page) {
console.log('getting channel claims for channel:', name, longId);
if (!page) page = 1;
const url = `${host}/api/channel/claims/${name}/${longId}/${page}`;
return Request(url);

View file

@ -1,24 +1,20 @@
import {buffers, END, eventChannel} from 'redux-saga';
export const makePublishRequestChannel = (fd) => {
console.log('making publish request');
return eventChannel(emitter => {
const uri = '/api/claim/publish';
const xhr = new XMLHttpRequest();
// add event listeners
const onLoadStart = () => {
console.log('load started');
emitter({loadStart: true});
};
const onProgress = (event) => {
if (event.lengthComputable) {
const percentage = Math.round((event.loaded * 100) / event.total);
console.log('progress:', percentage);
emitter({progress: percentage});
}
};
const onLoad = () => {
console.log('load completed');
emitter({load: true});
};
xhr.upload.addEventListener('loadstart', onLoadStart);

View file

@ -54,7 +54,6 @@ class ChannelCreateForm extends React.Component {
return new Promise((resolve, reject) => {
request(`/api/channel/availability/${channelWithAtSymbol}`)
.then(isAvailable => {
console.log('checkIsChannelAvailable result:', isAvailable);
if (!isAvailable) {
return reject(new Error('That channel has already been claimed'));
}
@ -69,10 +68,8 @@ class ChannelCreateForm extends React.Component {
const password = this.state.password;
return new Promise((resolve, reject) => {
if (!password || password.length < 1) {
console.log('password not provided');
return reject(new Error('Please provide a password'));
}
console.log('password provided');
resolve();
});
}
@ -88,12 +85,10 @@ class ChannelCreateForm extends React.Component {
return new Promise((resolve, reject) => {
request('/signup', params)
.then(result => {
console.log('makePublishChannelRequest result:', result);
return resolve(result);
})
.catch(error => {
console.log('create channel request failed:', error);
reject(new Error('Unfortunately, we encountered an error while creating your channel. Please let us know in Discord!'));
reject(new Error(`Unfortunately, we encountered an error while creating your channel. Please let us know in Discord! ${error.message}`));
});
});
}

View file

@ -29,7 +29,6 @@ class ChannelLoginForm extends React.Component {
};
request('login', params)
.then(({success, channelName, shortChannelId, channelClaimId, message}) => {
console.log('loginToChannel success:', success);
if (success) {
this.props.onChannelLogin(channelName, shortChannelId, channelClaimId);
} else {
@ -37,7 +36,6 @@ class ChannelLoginForm extends React.Component {
};
})
.catch(error => {
console.log('login error', error);
if (error.message) {
this.setState({'error': error.message});
} else {

View file

@ -26,7 +26,6 @@ class Dropzone extends React.Component {
this.setState({dragOver: false});
// if dropped items aren't files, reject them
const dt = event.dataTransfer;
console.log('dt', dt);
if (dt.items) {
if (dt.items[0].kind === 'file') {
const droppedFile = dt.items[0].getAsFile();

View file

@ -9,7 +9,6 @@ class LoginPage extends React.Component {
componentWillReceiveProps (newProps) {
// re-route the user to the homepage if the user is logged in
if (newProps.loggedInChannelName !== this.props.loggedInChannelName) {
console.log('user logged into new channel:', newProps.loggedInChannelName);
this.props.history.push(`/`);
}
}

View file

@ -39,9 +39,7 @@ class NavBar extends React.Component {
});
}
handleSelection (event) {
console.log('handling selection', event);
const value = event.target.selectedOptions[0].value;
console.log('value', value);
switch (value) {
case LOGOUT:
this.logoutUser();

View file

@ -42,7 +42,6 @@ class PublishThumbnailInput extends React.Component {
const previewReader = new FileReader();
previewReader.readAsDataURL(file);
previewReader.onloadend = () => {
console.log('preview reader complete');
const dataUri = previewReader.result;
const blob = dataURItoBlob(dataUri);
const videoSource = URL.createObjectURL(blob);

View file

@ -44,12 +44,10 @@ class PublishUrlInput extends React.Component {
return this.props.onUrlError('Enter a url above');
}
request(`/api/claim/availability/${claim}`)
.then(response => {
console.log('api/claim/availability response:', response);
.then(() => {
this.props.onUrlError(null);
})
.catch((error) => {
console.log('api/claim/availability error:', error);
this.props.onUrlError(error.message);
});
}

View file

@ -10,7 +10,6 @@ import { createPublishMetadata, createPublishFormData, createThumbnailUrl } from
import { makePublishRequestChannel } from 'channels/publish';
function * publishFile (action) {
console.log('publishing file');
const { history } = action.data;
const { publishInChannel, selectedChannel, file, claim, metadata, thumbnailChannel, thumbnailChannelId, thumbnail, error: { url: urlError } } = yield select(selectPublishState);
const { loggedInChannel } = yield select(selectChannelState);

View file

@ -12,16 +12,13 @@ export function * newAssetRequest (action) {
// If this uri is in the request list, it's already been fetched
const state = yield select(selectShowState);
if (state.requestList[requestId]) {
console.log('that request already exists in the request list!');
return null;
}
// get long id && add request to request list
console.log(`getting asset long id ${name}`);
let longId;
try {
({data: longId} = yield call(getLongClaimId, name, modifier));
} catch (error) {
console.log('error:', error);
return yield put(onRequestError(error.message));
}
const assetKey = `a#${name}#${longId}`;
@ -29,11 +26,9 @@ export function * newAssetRequest (action) {
// is this an existing asset?
// If this asset is in the asset list, it's already been fetched
if (state.assetList[assetKey]) {
console.log('that asset already exists in the asset list!');
return null;
}
// get short Id
console.log(`getting asset short id ${name} ${longId}`);
let shortId;
try {
({data: shortId} = yield call(getShortId, name, longId));
@ -41,7 +36,6 @@ export function * newAssetRequest (action) {
return yield put(onRequestError(error.message));
}
// get asset claim data
console.log(`getting asset claim data ${name} ${longId}`);
let claimData;
try {
({data: claimData} = yield call(getClaimData, name, longId));

View file

@ -12,11 +12,9 @@ export function * newChannelRequest (action) {
// If this uri is in the request list, it's already been fetched
const state = yield select(selectShowState);
if (state.requestList[requestId]) {
console.log('that request already exists in the request list!');
return null;
}
// get channel long id
console.log('getting channel long id and short id');
let longId, shortId;
try {
({ data: {longChannelClaimId: longId, shortChannelClaimId: shortId} } = yield call(getChannelData, channelName, channelId));
@ -29,11 +27,9 @@ export function * newChannelRequest (action) {
// is this an existing channel?
// If this channel is in the channel list, it's already been fetched
if (state.channelList[channelKey]) {
console.log('that channel already exists in the channel list!');
return null;
}
// get channel claims data
console.log('getting channel claims data');
let claimsData;
try {
({ data: claimsData } = yield call(getChannelClaims, channelName, longId, 1));

View file

@ -6,7 +6,6 @@ import { newChannelRequest } from 'sagas/show_channel';
import lbryUri from 'utils/lbryUri';
function * parseAndUpdateIdentifierAndClaim (modifier, claim) {
console.log('parseAndUpdateIdentifierAndClaim');
// this is a request for an asset
// claim will be an asset claim
// the identifier could be a channel or a claim id
@ -24,7 +23,6 @@ function * parseAndUpdateIdentifierAndClaim (modifier, claim) {
yield call(newAssetRequest, onNewAssetRequest(claimName, claimId, null, null, extension));
}
function * parseAndUpdateClaimOnly (claim) {
console.log('parseAndUpdateIdentifierAndClaim');
// this could be a request for an asset or a channel page
// claim could be an asset claim or a channel claim
let isChannel, channelName, channelClaimId;
@ -49,7 +47,6 @@ function * parseAndUpdateClaimOnly (claim) {
}
export function * handleShowPageUri (action) {
console.log('handleShowPageUri');
const { identifier, claim } = action.data;
if (identifier) {
return yield call(parseAndUpdateIdentifierAndClaim, identifier, claim);

View file

@ -1,11 +1,9 @@
module.exports = {
validateFile (file) {
if (!file) {
console.log('no file found');
throw new Error('no file provided');
}
if (/'/.test(file.name)) {
console.log('file name had apostrophe in it');
throw new Error('apostrophes are not allowed in the file name');
}
// validate size and type
@ -14,24 +12,20 @@ module.exports = {
case 'image/jpg':
case 'image/png':
if (file.size > 10000000) {
console.log('file was too big');
throw new Error('Sorry, images are limited to 10 megabytes.');
}
break;
case 'image/gif':
if (file.size > 30000000) {
console.log('file was too big');
throw new Error('Sorry, GIFs are limited to 30 megabytes.');
}
break;
case 'video/mp4':
if (file.size > 20000000) {
console.log('file was too big');
throw new Error('Sorry, videos are limited to 20 megabytes.');
}
break;
default:
console.log('file type is not supported');
throw new Error(file.type + ' is not a supported file type. Only, .jpeg, .png, .gif, and .mp4 files are currently supported.');
}
},

View file

@ -1,12 +1,10 @@
export const validateChannelSelection = (publishInChannel, selectedChannel, loggedInChannel) => {
console.log('validating channel selection');
if (publishInChannel && (selectedChannel !== loggedInChannel.name)) {
throw new Error('Log in to a channel or select Anonymous');
}
};
export const validatePublishParams = (file, claim, urlError) => {
console.log('validating publish params');
if (!file) {
throw new Error('Please choose a file');
}