20 lines
587 B
JavaScript
20 lines
587 B
JavaScript
|
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');
|
||
|
}
|
||
|
if (!claim) {
|
||
|
throw new Error('Please enter a URL');
|
||
|
}
|
||
|
if (urlError) {
|
||
|
throw new Error('Fix the url');
|
||
|
}
|
||
|
};
|