1
0
Fork 0
mirror of synced 2024-10-02 01:56:57 +13:00

Fixing issue #2193, also fixing the name of the file on export, as well as fixing an issue with the exporters not handling relationships.

This commit is contained in:
mike12345567 2021-08-04 18:20:51 +01:00
parent 3f99d7427e
commit 217e5a02bf
3 changed files with 11 additions and 3 deletions

View file

@ -18,10 +18,12 @@
let exportFormat = FORMATS[0].key
async function exportView() {
const filename = `export.${exportFormat}`
download(
`/api/views/export?view=${encodeURIComponent(
view
)}&format=${exportFormat}`
)}&format=${exportFormat}`,
filename
)
}
</script>

View file

@ -3,7 +3,11 @@ exports.csv = function (headers, rows) {
for (let row of rows) {
csv = `${csv}\n${headers
.map(header => `"${row[header]}"`.trim())
.map(header => {
let val = row[header]
val = typeof val === "object" ? JSON.stringify(val) : val
return `"${val}"`.trim()
})
.join(",")}`
}
return csv

View file

@ -10,7 +10,7 @@ const CouchDB = require("../db")
module.exports = async (ctx, next) => {
// try to get the appID from the request
const requestAppId = getAppId(ctx)
let requestAppId = getAppId(ctx)
// get app cookie if it exists
let appCookie = null
try {
@ -29,6 +29,8 @@ module.exports = async (ctx, next) => {
clearCookie(ctx, Cookies.CurrentApp)
return next()
}
// if the request app ID wasn't set, update it with the cookie
requestAppId = requestAppId || appId
}
let appId,