Last active
August 1, 2020 15:58
-
-
Save dhaniksahni/47ffd80bfb25fdcfd2332ac697e47b16 to your computer and use it in GitHub Desktop.
View S3 File information using LWC
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<template if:true={imageUrl}> | |
<iframe src={imageUrl}></iframe> | |
</template> | |
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { LightningElement, track, wire, api } from 'lwc'; | |
import awsjssdk from '@salesforce/resourceUrl/awsjssdk'; | |
import { loadStyle, loadScript } from 'lightning/platformResourceLoader'; | |
import getFileUrl from '@salesforce/apex/S3FileController.getFileUrl'; | |
export default class viewFile extends LightningElement { | |
@api recordId; | |
@track url; | |
imageUrl; | |
renderedCallback() { | |
Promise.all([ | |
loadScript(this, awsjssdk), | |
]) | |
.then(() => { | |
console.log('Files loaded.'); | |
}) | |
.catch(error => { | |
console.log(error.body.message); | |
}); | |
} | |
@wire(getFileUrl, {record: '$recordId'}) | |
wiredDocs({data,error}) { | |
if (data) { | |
if (data != undefined) { | |
this.url = data[0].toString(); | |
} | |
this.error = undefined; | |
this.showDocument(); | |
} else if (error) { | |
this.error = error; | |
this.url = undefined; | |
} | |
} | |
async showDocument() { | |
const AWS = window.AWS; | |
AWS.config.update({ | |
accessKeyId: "your acess key", | |
secretAccessKey: "your secret key", | |
region_config: "eu-west-2" | |
}); | |
var s3 = new AWS.S3(); | |
var strImageUrl = this.url; | |
if (strImageUrl != null && strImageUrl != '') { | |
var keyindex = strImageUrl.lastIndexOf("/"); | |
var strKey = strImageUrl.substring(keyindex + 1); | |
var bcktindex = strImageUrl.indexOf("amazonaws.com/") + 14; | |
var strBucket = strImageUrl.substring(bcktindex, keyindex); | |
} | |
async function getSignedUrl(key) { | |
return new Promise((resolve, reject) => { | |
let params = { | |
Bucket: strBucket, | |
Key: strKey | |
}; | |
s3.getSignedUrl('getObject', params, (err, url) => { | |
if (err) reject(err) | |
resolve(url); | |
}) | |
}); | |
} | |
async function processFiles(items) { | |
for (let item of items) { | |
const signedUrl = await getSignedUrl(item.fileName); | |
item.url = signedUrl; | |
} | |
return items; | |
} | |
//Create array if multiple file | |
let files = [ | |
{ | |
fileName: strImageUrl | |
} | |
]; | |
processFiles(files).then(res => { | |
//res is array. So if you are passing multiple file then assign values based on array | |
this.imageUrl = res[0].url | |
}); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata"> | |
<apiVersion>48.0</apiVersion> | |
<isExposed>true</isExposed> | |
<targets> | |
<target>lightning__RecordPage</target> | |
</targets> | |
</LightningComponentBundle> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment