Greatly improve id conversion performance

This commit is contained in:
Laura Hausmann 2023-09-26 18:47:33 +02:00
parent 76aa8eeefb
commit 7cb576a535
No known key found for this signature in database
GPG Key ID: D044E84C5BE01605

View File

@ -9,24 +9,16 @@ const chars = '0123456789abcdefghijklmnopqrstuvwxyz';
//FIXME: Make this idempotent
export function convertId(id: string, target: IdType): string {
if (target == IdType.IceshrimpId) {
let input = BigInt(id);
let result = '';
while (input !== 0n) {
result = chars.at(Number(input % 36n)) + result;
input /= 36n;
}
return result;
return BigInt(id).toString(36);
}
else if (target == IdType.MastodonId) {
let result = 0n;
const iter = id.toLowerCase().split('').reverse();
const iter = id.toLowerCase();
for (let i = 0; i < iter.length; i++){
const char = iter[i];
if (!chars.includes(char)) throw new Error('Invalid ID');
result += BigInt(chars.indexOf(char)) * BigInt(36 ** i);
result = result * 36n + BigInt(chars.indexOf(char));
}
return result.toString();