Created
January 25, 2024 14:27
-
-
Save svierk/91b9f292c92f640c6f1885fb029a6d25 to your computer and use it in GitHub Desktop.
JS Code for Content Document Preview LWC
This file contains hidden or 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 { CurrentPageReference, NavigationMixin } from 'lightning/navigation'; | |
import { LightningElement, api, wire } from 'lwc'; | |
export default class ContentDocumentPreview extends NavigationMixin(LightningElement) { | |
@wire(CurrentPageReference) pageRef; | |
@api preview; | |
showPreview() { | |
this[NavigationMixin.Navigate]({ | |
type: 'standard__namedPage', | |
attributes: { | |
pageName: 'filePreview' | |
}, | |
state: { | |
selectedRecordId: this.preview.id | |
} | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment