Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add capability to download fact sources from sources page #2776

Merged
merged 3 commits into from
Jun 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions templates/sources.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ <h2>Fact Sources</h2>
<span class="icon"><em class="fas fa-copy"></em></span>
<span>Duplicate Source</span>
</button>
<button class="button is-primary is-small mb-2" @click="downloadSource()"
x-bind:disabled="!selectedSourceId">
<span class="icon"><em class="fas fa-arrow-down"></em></span>
<span>Download Source</span>
</button>
<div class="hr"></div>
<button class="button is-small mb-2 is-danger is-outlined"
@click="openModal = { isOpen: true, name: 'Delete Source' }">
Expand Down Expand Up @@ -1260,6 +1265,22 @@ <h2>Fact Sources</h2>
});
},

downloadSource() {
apiV2('GET', `/api/v2/sources/${this.selectedSourceId}`)
.then((res) => {
const dataURL = `data:text/json;charset=utf-8,${encodeURIComponent(JSON.stringify(res, null, 2))}`
const fileName = `${this.selectedSource.name}.json`
const elem = document.createElement('a');
elem.setAttribute('href', dataURL);
elem.setAttribute('download', fileName);
elem.click();
elem.remove();
}).catch((error) => {
toast('Error downloading source');
console.error(error)
});
},

resetSearch() {
this.abilitySearch = {
query: '',
Expand Down