ios download

This commit is contained in:
CPunisher 2020-05-22 22:17:26 +08:00
parent ec2090567b
commit e42d8945d0
2 changed files with 38 additions and 27 deletions

View File

@ -49,7 +49,7 @@ export function increaseDownloadData(value, callback) {
})
}
export function recordDownloadDetail({text, value, type, params, history}) {
export function recordDownloadDetail({text, value, type, params, history}, callback) {
if (!isLogin) return;
db.collection('QRDownloadData').add({
date: new Date().toString(),
@ -58,5 +58,7 @@ export function recordDownloadDetail({text, value, type, params, history}) {
type: type,
params: params,
history: history
}).catch(console.error)
}).then(res => {
if (callback) callback(res);
}).catch(console.error);
}

View File

@ -5,15 +5,8 @@ import {getDownloadCount, increaseDownloadData, recordDownloadDetail} from "../.
import {getParamDetailedValue, outerHtml} from "../../utils/util";
function saveDB(state, type, updateDownloadData) {
return new Promise(resolve => {
increaseDownloadData(state.value, () => {
getDownloadCount((res) => {
let downloadData = [];
res.data.forEach((item) => {
downloadData[item.value] = item.count;
});
updateDownloadData(downloadData);
});
});
recordDownloadDetail({
text: state.textUrl,
value: state.value,
@ -28,6 +21,17 @@ function saveDB(state, type, updateDownloadData) {
}
}),
history: state.history
}, () => {
getDownloadCount((res) => {
let downloadData = [];
res.data.forEach((item) => {
downloadData[item.value] = item.count;
});
updateDownloadData(downloadData);
resolve()
});
});
});
});
}
@ -35,12 +39,17 @@ const mapStateToProps = (state, ownProps) => ({
value: state.value,
downloadCount: state.downloadData[state.value],
onSvgDownload: () => {
saveSvg(state.value, outerHtml(state.selectedIndex))
saveDB(state, 'svg', ownProps.updateDownloadData)
saveSvg(state.value, outerHtml(state.selectedIndex));
saveDB(state, 'svg', ownProps.updateDownloadData);
},
onJpgDownload: () => {
saveDB(state, 'jpg', ownProps.updateDownloadData)
return saveImg(state.value, outerHtml(state.selectedIndex), 1500, 1500)
return new Promise(resolve => {
saveImg(state.value, outerHtml(state.selectedIndex), 1500, 1500).then((res) => {
saveDB(state, 'jpg', ownProps.updateDownloadData).then(() => {
resolve(res)
});
});
});
}
})