2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 19:29:02 +00:00
books/utils/index.js

69 lines
1.8 KiB
JavaScript
Raw Normal View History

2018-03-26 08:53:46 +00:00
Array.prototype.equals = function( array ) {
return this.length == array.length &&
this.every( function(item,i) { return item == array[i] } );
}
2018-02-07 13:23:52 +00:00
module.exports = {
2018-03-26 12:18:07 +00:00
slug(str) {
return str.replace(/(?:^\w|[A-Z]|\b\w)/g, function(letter, index) {
return index == 0 ? letter.toLowerCase() : letter.toUpperCase();
}).replace(/\s+/g, '');
2018-01-12 12:25:07 +00:00
},
2018-03-05 16:45:21 +00:00
getRandomString() {
2018-02-01 11:07:36 +00:00
return Math.random().toString(36).substr(3);
},
2018-01-12 12:25:07 +00:00
async sleep(seconds) {
return new Promise(resolve => {
setTimeout(resolve, seconds * 1000);
});
2018-02-07 13:23:52 +00:00
},
_(text, args) {
// should return translated text
return this.stringReplace(text, args);
2018-02-07 13:23:52 +00:00
},
stringReplace(str, args) {
2018-02-07 13:23:52 +00:00
if (!Array.isArray(args)) {
args = [args];
}
if(str==undefined) return str;
let unkeyed_index = 0;
return str.replace(/\{(\w*)\}/g, (match, key) => {
if (key === '') {
key = unkeyed_index;
unkeyed_index++
}
if (key == +key) {
return args[key] !== undefined
? args[key]
: match;
}
});
2018-03-26 12:18:07 +00:00
},
getQueryString(params) {
if (!params) return '';
2018-03-26 12:56:21 +00:00
let parts = [];
for (let key in params) {
if (key!=null && params[key]!=null) {
parts.push(encodeURIComponent(key) + '=' + encodeURIComponent(params[key]))
}
}
return parts.join('&');
2018-03-26 12:18:07 +00:00
},
asyncHandler(fn) {
return (req, res, next) => Promise.resolve(fn(req, res, next))
.catch((err) => {
console.log(err);
// handle error
res.status(err.status_code || 500).send({error: err.message});
});
},
2018-02-07 13:23:52 +00:00
};