Type tar -xvf yourfile.tar to extract the file to the current directory.
Download Image in React From URL locally
function downloadImageFromURL(imageUrl) {
if(imageUrl != null) {
let imageData = imageUrl.split('/');
let tempCount = imageData.length;
let imageName = imageData[tempCount-1];
axios({
url: imageUrl,
method: 'GET',
responseType: 'blob',
}).then((response) => {
const url = window.URL.createObjectURL(new Blob([response.data]));
const link = document.createElement('a');
link.href = url;
link.setAttribute('download', imageName);
document.body.appendChild(link);
link.click();
});
}
}
if(imageUrl != null) {
let imageData = imageUrl.split('/');
let tempCount = imageData.length;
let imageName = imageData[tempCount-1];
axios({
url: imageUrl,
method: 'GET',
responseType: 'blob',
}).then((response) => {
const url = window.URL.createObjectURL(new Blob([response.data]));
const link = document.createElement('a');
link.href = url;
link.setAttribute('download', imageName);
document.body.appendChild(link);
link.click();
});
}
}
React ternary operator
var isLoggedIn = false;
var domain = 'pt';
var passwordLogin = false;
var b = false;
var c = false;
let message = (isLoggedIn === true && domain != 'pt') ? <Component {...props} /> :
(isLoggedIn === true && config.domain == 'pt' && passwordLogin === true) ? <Component {...props} /> :
(isLoggedIn === true && config.domain == 'pt' && passwordLogin == false) ? <Redirect to={{ pathname: '/newlogin' }} /> :
(isLoggedIn === false && config.domain==='pt') ? window.location.replace('http://n.com/pt/360-vr?device=smart&offer=1') :
<Redirect to={{ pathname: '/login' }} />
alert( message );
Subscribe to:
Posts (Atom)