mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 02:16:05 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			180 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			180 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| function reloadApp() {
 | |
|     window.location.reload(true);
 | |
| }
 | |
| 
 | |
| function parseDate(str) {
 | |
|     try {
 | |
|         return new Date(Date.parse(str));
 | |
|     }
 | |
|     catch (e) {
 | |
|         throw new Error("Can't parse date from " + str + ": " + e.stack);
 | |
|     }
 | |
| }
 | |
| 
 | |
| function padNum(num) {
 | |
|     return (num <= 9 ? "0" : "") + num;
 | |
| }
 | |
| 
 | |
| function formatTime(date) {
 | |
|     return padNum(date.getHours()) + ":" + padNum(date.getMinutes());
 | |
| }
 | |
| 
 | |
| function formatTimeWithSeconds(date) {
 | |
|     return padNum(date.getHours()) + ":" + padNum(date.getMinutes()) + ":" + padNum(date.getSeconds());
 | |
| }
 | |
| 
 | |
| function formatDate(date) {
 | |
| //    return padNum(date.getDate()) + ". " + padNum(date.getMonth() + 1) + ". " + date.getFullYear();
 | |
|     // instead of european format we'll just use ISO as that's pretty unambiguous
 | |
| 
 | |
|     return formatDateISO(date);
 | |
| }
 | |
| 
 | |
| function formatDateISO(date) {
 | |
|     return date.getFullYear() + "-" + padNum(date.getMonth() + 1) + "-" + padNum(date.getDate());
 | |
| }
 | |
| 
 | |
| function formatDateTime(date) {
 | |
|     return formatDate(date) + " " + formatTime(date);
 | |
| }
 | |
| 
 | |
| function now() {
 | |
|     return formatTimeWithSeconds(new Date());
 | |
| }
 | |
| 
 | |
| function isElectron() {
 | |
|     return window && window.process && window.process.type;
 | |
| }
 | |
| 
 | |
| function isMac() {
 | |
|     return navigator.platform.indexOf('Mac') > -1;
 | |
| }
 | |
| 
 | |
| function assertArguments() {
 | |
|     for (const i in arguments) {
 | |
|         if (!arguments[i]) {
 | |
|             console.trace(`Argument idx#${i} should not be falsy: ${arguments[i]}`);
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| function isTopLevelNode(node) {
 | |
|     return isRootNode(node.getParent());
 | |
| }
 | |
| 
 | |
| function isRootNode(node) {
 | |
|     return node.data.noteId === "root";
 | |
| }
 | |
| 
 | |
| function escapeHtml(str) {
 | |
|     return $('<div/>').text(str).html();
 | |
| }
 | |
| 
 | |
| async function stopWatch(what, func) {
 | |
|     const start = new Date();
 | |
| 
 | |
|     const ret = await func();
 | |
| 
 | |
|     const tookMs = new Date().getTime() - start.getTime();
 | |
| 
 | |
|     console.log(`${what} took ${tookMs}ms`);
 | |
| 
 | |
|     return ret;
 | |
| }
 | |
| 
 | |
| function formatValueWithWhitespace(val) {
 | |
|     return /[^\w_-]/.test(val) ? '"' + val + '"' : val;
 | |
| }
 | |
| 
 | |
| function formatLabel(label) {
 | |
|     let str = "@" + formatValueWithWhitespace(label.name);
 | |
| 
 | |
|     if (label.value !== "") {
 | |
|         str += "=" + formatValueWithWhitespace(label.value);
 | |
|     }
 | |
| 
 | |
|     return str;
 | |
| }
 | |
| 
 | |
| function getHost() {
 | |
|     const url = new URL(window.location.href);
 | |
|     return url.protocol + "//" + url.hostname + ":" + url.port;
 | |
| }
 | |
| 
 | |
| function download(url) {
 | |
|     if (isElectron()) {
 | |
|         const remote = require('electron').remote;
 | |
| 
 | |
|         remote.getCurrentWebContents().downloadURL(url);
 | |
|     }
 | |
|     else {
 | |
|         window.location.href = url;
 | |
|     }
 | |
| }
 | |
| 
 | |
| function toObject(array, fn) {
 | |
|     const obj = {};
 | |
| 
 | |
|     for (const item of array) {
 | |
|         const [key, value] = fn(item);
 | |
| 
 | |
|         obj[key] = value;
 | |
|     }
 | |
| 
 | |
|     return obj;
 | |
| }
 | |
| 
 | |
| function randomString(len) {
 | |
|     let text = "";
 | |
|     const possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
 | |
| 
 | |
|     for (let i = 0; i < len; i++) {
 | |
|         text += possible.charAt(Math.floor(Math.random() * possible.length));
 | |
|     }
 | |
| 
 | |
|     return text;
 | |
| }
 | |
| 
 | |
| function bindShortcut(keyboardShortcut, handler) {
 | |
|     $(document).bind('keydown', keyboardShortcut, e => {
 | |
|         handler();
 | |
| 
 | |
|         e.preventDefault();
 | |
|     });
 | |
| }
 | |
| 
 | |
| function isMobile() {
 | |
|     return window.device === "mobile";
 | |
| }
 | |
| 
 | |
| function isDesktop() {
 | |
|     return window.device === "desktop";
 | |
| }
 | |
| 
 | |
| export default {
 | |
|     reloadApp,
 | |
|     parseDate,
 | |
|     padNum,
 | |
|     formatTime,
 | |
|     formatTimeWithSeconds,
 | |
|     formatDate,
 | |
|     formatDateISO,
 | |
|     formatDateTime,
 | |
|     now,
 | |
|     isElectron,
 | |
|     isMac,
 | |
|     assertArguments,
 | |
|     isTopLevelNode,
 | |
|     isRootNode,
 | |
|     escapeHtml,
 | |
|     stopWatch,
 | |
|     formatValueWithWhitespace,
 | |
|     formatLabel,
 | |
|     getHost,
 | |
|     download,
 | |
|     toObject,
 | |
|     randomString,
 | |
|     bindShortcut,
 | |
|     isMobile,
 | |
|     isDesktop
 | |
| }; |