mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-07-19 22:18:03 +00:00
Housekeeping
This commit is contained in:
13
frontend/src/lib/actions/controlkey.js
Normal file
13
frontend/src/lib/actions/controlkey.js
Normal file
@ -0,0 +1,13 @@
|
||||
import environment from '$lib/stores/environment';
|
||||
import { get } from 'svelte/store';
|
||||
|
||||
export function controlKeyDown(event) {
|
||||
const env = get(environment);
|
||||
// @ts-ignore
|
||||
if (env?.platform === 'darwin') {
|
||||
return event?.metaKey;
|
||||
}
|
||||
else {
|
||||
return event?.ctrlKey;
|
||||
}
|
||||
}
|
@ -1,6 +1,7 @@
|
||||
import { canBeObjectId, int32, int64, isInt, uint64 } from './utils';
|
||||
import { isInt } from '$lib/math';
|
||||
import { canBeObjectId, int32, int64, uint64 } from '$lib/mongo';
|
||||
|
||||
export function input(node, { autofocus, type, onValid, onInvalid, mandatory } = {
|
||||
export default function input(node, { autofocus, type, onValid, onInvalid, mandatory } = {
|
||||
autofocus: false,
|
||||
type: '',
|
||||
onValid: () => 0,
|
7
frontend/src/lib/constants.js
Normal file
7
frontend/src/lib/constants.js
Normal file
@ -0,0 +1,7 @@
|
||||
// Months
|
||||
export const months = [ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December' ];
|
||||
export const monthsAbbr = months.map(m => m.slice(0, 3));
|
||||
|
||||
// Days
|
||||
export const days = [ 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday' ];
|
||||
export const daysAbbr = days.map(d => d.slice(0, 3));
|
58
frontend/src/lib/keypaths.js
Normal file
58
frontend/src/lib/keypaths.js
Normal file
@ -0,0 +1,58 @@
|
||||
// Get a value from an object with a JSON path, from Webdesq core
|
||||
export function resolveKeypath(object, path) {
|
||||
const parts = path.split('.').flatMap(part => {
|
||||
const indexMatch = part.match(/\[\d+\]/g);
|
||||
if (indexMatch) {
|
||||
// Convert strings to numbers
|
||||
const indexes = indexMatch.map(index => Number(index.slice(1, -1)));
|
||||
const base = part.slice(0, part.indexOf(indexMatch[0]));
|
||||
return base.length ? [ base, ...indexes ] : indexes;
|
||||
}
|
||||
return part;
|
||||
});
|
||||
|
||||
let result = object;
|
||||
while (result && parts.length) {
|
||||
result = result[parts.shift()];
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
// Set a value in an object with a JSON path, from Webdesq core
|
||||
export function setValue(object, path, value) {
|
||||
const parts = path.split('.').flatMap(part => {
|
||||
let indexMatch = part.match(/\[\d+\]/g);
|
||||
if (indexMatch) {
|
||||
// Convert strings to numbers
|
||||
const indexes = indexMatch.map(index => Number(index.slice(1, -1)));
|
||||
const base = part.slice(0, part.indexOf(indexMatch[0]));
|
||||
return base.length ? [ base, ...indexes ] : indexes;
|
||||
}
|
||||
indexMatch = part.match(/^\d+$/g);
|
||||
if (indexMatch) {
|
||||
// Convert strings to numbers
|
||||
const indexes = indexMatch.map(index => Number(index.slice(1, -1)));
|
||||
const base = part.slice(0, part.indexOf(indexMatch[0]));
|
||||
return base.length ? [ base, ...indexes ] : indexes;
|
||||
}
|
||||
return part;
|
||||
});
|
||||
|
||||
let result = object;
|
||||
while (parts.length) {
|
||||
const part = parts.shift();
|
||||
if (!parts.length) {
|
||||
// No parts left, we can set the value
|
||||
result[part] = value;
|
||||
break;
|
||||
}
|
||||
if (!result[part]) {
|
||||
// Default value if none is found
|
||||
result[part] = (typeof parts[0] === 'number') ? [] : {};
|
||||
}
|
||||
result = result[part];
|
||||
}
|
||||
|
||||
return object;
|
||||
}
|
23
frontend/src/lib/math.js
Normal file
23
frontend/src/lib/math.js
Normal file
@ -0,0 +1,23 @@
|
||||
// https://stackoverflow.com/a/14794066
|
||||
export function isInt(value) {
|
||||
if (isNaN(value)) {
|
||||
return false;
|
||||
}
|
||||
const x = parseFloat(value);
|
||||
return (x | 0) === x;
|
||||
}
|
||||
|
||||
export function randInt(min, max) {
|
||||
return Math.round(Math.random() * (max - min) + min);
|
||||
}
|
||||
|
||||
export function randomString(length = 12) {
|
||||
const chars = 'qwertyuiopasdfghjklzxcvbnm1234567890';
|
||||
let output = '';
|
||||
|
||||
Array(length).fill('').forEach(() => {
|
||||
output += chars[randInt(0, chars.length - 1)];
|
||||
});
|
||||
|
||||
return output;
|
||||
}
|
34
frontend/src/lib/mongo.js
Normal file
34
frontend/src/lib/mongo.js
Normal file
@ -0,0 +1,34 @@
|
||||
import { ObjectId } from 'bson';
|
||||
|
||||
// Calculate the min and max values of (un)signed integers with n bits
|
||||
export const intMin = bits => Math.pow(2, bits - 1) * -1;
|
||||
export const intMax = bits => Math.pow(2, bits - 1) - 1;
|
||||
export const uintMax = bits => Math.pow(2, bits) - 1;
|
||||
|
||||
// Boundaries for some ubiquitous integer types
|
||||
export const int32 = [ intMin(32), intMax(32) ];
|
||||
export const int64 = [ intMin(64), intMax(64) ];
|
||||
export const uint64 = [ 0, uintMax(64) ];
|
||||
|
||||
// Input types
|
||||
export const numericInputTypes = [ 'int', 'long', 'uint64', 'double', 'decimal' ];
|
||||
export const inputTypes = [ 'string', 'objectid', 'bool', 'date', ...numericInputTypes ];
|
||||
|
||||
export function isBsonBuiltin(value) {
|
||||
return (
|
||||
(typeof value === 'object') &&
|
||||
(value !== null) &&
|
||||
(typeof value._bsontype === 'string') &&
|
||||
(typeof value.inspect === 'function')
|
||||
);
|
||||
}
|
||||
|
||||
export function canBeObjectId(value) {
|
||||
try {
|
||||
new ObjectId(value);
|
||||
return true;
|
||||
}
|
||||
catch {
|
||||
return false;
|
||||
}
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
import { Environment } from '$wails/go/app/App';
|
||||
import { writable } from 'svelte/store';
|
||||
import { Environment } from '../../../wailsjs/go/app/App';
|
||||
|
||||
const { set, subscribe } = writable({});
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { RemoveQuery, SavedQueries, SaveQuery, UpdateQueries } from '$wails/go/app/App';
|
||||
import { get, writable } from 'svelte/store';
|
||||
import { RemoveQuery, SavedQueries, SaveQuery, UpdateQueries } from '../../../wailsjs/go/app/App';
|
||||
|
||||
const { set, subscribe } = writable({});
|
||||
let skipUpdate = true;
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { Settings, UpdateSettings } from '$wails/go/app/App';
|
||||
import { writable } from 'svelte/store';
|
||||
import { Settings, UpdateSettings } from '../../../wailsjs/go/app/App';
|
||||
|
||||
const { set, subscribe } = writable({});
|
||||
let skipUpdate = true;
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { UpdateViewStore, Views } from '$wails/go/app/App';
|
||||
import { get, writable } from 'svelte/store';
|
||||
import { UpdateViewStore, Views } from '../../../wailsjs/go/app/App';
|
||||
|
||||
const { set, subscribe } = writable({});
|
||||
let skipUpdate = true;
|
||||
|
@ -1,138 +0,0 @@
|
||||
import { ObjectId } from 'bson';
|
||||
import { get } from 'svelte/store';
|
||||
import environment from './stores/environment';
|
||||
|
||||
// Calculate the min and max values of (un)signed integers with n bits
|
||||
export const intMin = bits => Math.pow(2, bits - 1) * -1;
|
||||
export const intMax = bits => Math.pow(2, bits - 1) - 1;
|
||||
export const uintMax = bits => Math.pow(2, bits) - 1;
|
||||
|
||||
// Boundaries for some ubiquitous integer types
|
||||
export const int32 = [ intMin(32), intMax(32) ];
|
||||
export const int64 = [ intMin(64), intMax(64) ];
|
||||
export const uint64 = [ 0, uintMax(64) ];
|
||||
|
||||
// Input types
|
||||
export const numericInputTypes = [ 'int', 'long', 'uint64', 'double', 'decimal' ];
|
||||
export const inputTypes = [ 'string', 'objectid', 'bool', 'date', ...numericInputTypes ];
|
||||
|
||||
// Months
|
||||
export const months = [ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December' ];
|
||||
export const monthsAbbr = months.map(m => m.slice(0, 3));
|
||||
|
||||
// Days
|
||||
export const days = [ 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday' ];
|
||||
export const daysAbbr = days.map(d => d.slice(0, 3));
|
||||
|
||||
// Get a value from an object with a JSON path, from Webdesq core
|
||||
export function resolveKeypath(object, path) {
|
||||
const parts = path.split('.').flatMap(part => {
|
||||
const indexMatch = part.match(/\[\d+\]/g);
|
||||
if (indexMatch) {
|
||||
// Convert strings to numbers
|
||||
const indexes = indexMatch.map(index => Number(index.slice(1, -1)));
|
||||
const base = part.slice(0, part.indexOf(indexMatch[0]));
|
||||
return base.length ? [ base, ...indexes ] : indexes;
|
||||
}
|
||||
return part;
|
||||
});
|
||||
|
||||
let result = object;
|
||||
while (result && parts.length) {
|
||||
result = result[parts.shift()];
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
// Set a value in an object with a JSON path, from Webdesq core
|
||||
export function setValue(object, path, value) {
|
||||
const parts = path.split('.').flatMap(part => {
|
||||
let indexMatch = part.match(/\[\d+\]/g);
|
||||
if (indexMatch) {
|
||||
// Convert strings to numbers
|
||||
const indexes = indexMatch.map(index => Number(index.slice(1, -1)));
|
||||
const base = part.slice(0, part.indexOf(indexMatch[0]));
|
||||
return base.length ? [ base, ...indexes ] : indexes;
|
||||
}
|
||||
indexMatch = part.match(/^\d+$/g);
|
||||
if (indexMatch) {
|
||||
// Convert strings to numbers
|
||||
const indexes = indexMatch.map(index => Number(index.slice(1, -1)));
|
||||
const base = part.slice(0, part.indexOf(indexMatch[0]));
|
||||
return base.length ? [ base, ...indexes ] : indexes;
|
||||
}
|
||||
return part;
|
||||
});
|
||||
|
||||
let result = object;
|
||||
while (parts.length) {
|
||||
const part = parts.shift();
|
||||
if (!parts.length) {
|
||||
// No parts left, we can set the value
|
||||
result[part] = value;
|
||||
break;
|
||||
}
|
||||
if (!result[part]) {
|
||||
// Default value if none is found
|
||||
result[part] = (typeof parts[0] === 'number') ? [] : {};
|
||||
}
|
||||
result = result[part];
|
||||
}
|
||||
|
||||
return object;
|
||||
}
|
||||
|
||||
export function controlKeyDown(event) {
|
||||
const env = get(environment);
|
||||
// @ts-ignore
|
||||
if (env?.platform === 'darwin') {
|
||||
return event?.metaKey;
|
||||
}
|
||||
else {
|
||||
return event?.ctrlKey;
|
||||
}
|
||||
}
|
||||
|
||||
// https://stackoverflow.com/a/14794066
|
||||
export function isInt(value) {
|
||||
if (isNaN(value)) {
|
||||
return false;
|
||||
}
|
||||
const x = parseFloat(value);
|
||||
return (x | 0) === x;
|
||||
}
|
||||
|
||||
export function randInt(min, max) {
|
||||
return Math.round(Math.random() * (max - min) + min);
|
||||
}
|
||||
|
||||
export function randomString(length = 12) {
|
||||
const chars = 'qwertyuiopasdfghjklzxcvbnm1234567890';
|
||||
let output = '';
|
||||
|
||||
Array(length).fill('').forEach(() => {
|
||||
output += chars[randInt(0, chars.length - 1)];
|
||||
});
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
export function isBsonBuiltin(value) {
|
||||
return (
|
||||
(typeof value === 'object') &&
|
||||
(value !== null) &&
|
||||
(typeof value._bsontype === 'string') &&
|
||||
(typeof value.inspect === 'function')
|
||||
);
|
||||
}
|
||||
|
||||
export function canBeObjectId(value) {
|
||||
try {
|
||||
new ObjectId(value);
|
||||
return true;
|
||||
}
|
||||
catch {
|
||||
return false;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user