Merge remote-tracking branch 'upstream/clearnet' into node-side-in-ts
commit
13e2f81f26
@ -1,45 +0,0 @@
|
||||
// Code from https://github.com/andywer/typed-emitter
|
||||
|
||||
type Arguments<T> = [T] extends [(...args: infer U) => any] ? U : [T] extends [void] ? [] : [T];
|
||||
|
||||
/**
|
||||
* Type-safe event emitter.
|
||||
*
|
||||
* Use it like this:
|
||||
*
|
||||
* interface MyEvents {
|
||||
* error: (error: Error) => void
|
||||
* message: (from: string, content: string) => void
|
||||
* }
|
||||
*
|
||||
* const myEmitter = new EventEmitter() as TypedEmitter<MyEvents>
|
||||
*
|
||||
* myEmitter.on("message", (from, content) => {
|
||||
* // ...
|
||||
* })
|
||||
*
|
||||
* myEmitter.emit("error", "x") // <- Will catch this type error
|
||||
*
|
||||
* or
|
||||
*
|
||||
* class MyEmitter extends EventEmitter implements TypedEventEmitter<MyEvents>
|
||||
*/
|
||||
export interface TypedEventEmitter<Events> {
|
||||
addListener<E extends keyof Events>(event: E, listener: Events[E]): this;
|
||||
on<E extends keyof Events>(event: E, listener: Events[E]): this;
|
||||
once<E extends keyof Events>(event: E, listener: Events[E]): this;
|
||||
prependListener<E extends keyof Events>(event: E, listener: Events[E]): this;
|
||||
prependOnceListener<E extends keyof Events>(event: E, listener: Events[E]): this;
|
||||
|
||||
off<E extends keyof Events>(event: E, listener: Events[E]): this;
|
||||
removeAllListeners<E extends keyof Events>(event?: E): this;
|
||||
removeListener<E extends keyof Events>(event: E, listener: Events[E]): this;
|
||||
|
||||
emit<E extends keyof Events>(event: E, ...args: Arguments<Events[E]>): boolean;
|
||||
eventNames(): Array<keyof Events | string | symbol>;
|
||||
listeners<E extends keyof Events>(event: E): Array<Function>;
|
||||
listenerCount<E extends keyof Events>(event: E): number;
|
||||
|
||||
getMaxListeners(): number;
|
||||
setMaxListeners(maxListeners: number): this;
|
||||
}
|
@ -0,0 +1,132 @@
|
||||
import { expect } from 'chai';
|
||||
import { getEmojiSizeClass } from '../../../../util/emoji';
|
||||
|
||||
describe('getEmojiSizeClass', () => {
|
||||
describe('empty or null string', () => {
|
||||
it('undefined as string', () => {
|
||||
expect(getEmojiSizeClass(undefined as any)).to.be.equal('small', 'should have return small');
|
||||
});
|
||||
it('null as string', () => {
|
||||
expect(getEmojiSizeClass(null as any)).to.be.equal('small', 'should have return small');
|
||||
});
|
||||
|
||||
it('empty string', () => {
|
||||
expect(getEmojiSizeClass('')).to.be.equal('small', 'should have return small');
|
||||
});
|
||||
});
|
||||
|
||||
describe('with only characters not emojis of ascii/utf8', () => {
|
||||
it('string of ascii only', () => {
|
||||
expect(
|
||||
getEmojiSizeClass('The ASCII compatible UTF-8 encoding of ISO 10646 and Unicode')
|
||||
).to.be.equal('small', 'should have return small');
|
||||
});
|
||||
|
||||
it('string of utf8 with weird chars but no', () => {
|
||||
expect(getEmojiSizeClass('ASCII safety test: 1lI|, 0OD, 8B')).to.be.equal(
|
||||
'small',
|
||||
'should have return small'
|
||||
);
|
||||
});
|
||||
|
||||
it('string of utf8 with weird chars', () => {
|
||||
// taken from https://www.w3.org/2001/06/utf-8-test/UTF-8-demo.html
|
||||
expect(
|
||||
getEmojiSizeClass('ASCII safety test: 1lI|, 0OD, 8B, γιγνώσκειν, ὦ ἄνδρες დასასწრებად')
|
||||
).to.be.equal('small', 'should have return small');
|
||||
});
|
||||
|
||||
it('short string of utf8 with weird chars', () => {
|
||||
// taken from https://www.w3.org/2001/06/utf-8-test/UTF-8-demo.html
|
||||
expect(getEmojiSizeClass('დ')).to.be.equal('small', 'should have return small');
|
||||
});
|
||||
});
|
||||
|
||||
describe('with string containing utf8 emojis', () => {
|
||||
describe('with string containing utf8 emojis and normal characters', () => {
|
||||
it('one emoji after a normal sentence', () => {
|
||||
expect(
|
||||
getEmojiSizeClass('The SMILING FACE WITH HORNS character (😈) is assigned')
|
||||
).to.be.equal('small', 'should have return small');
|
||||
});
|
||||
|
||||
it('multiple emoji after a normal sentence', () => {
|
||||
expect(
|
||||
getEmojiSizeClass('The SMILING FACE WITH HORNS character (😈) is assigned 😈 😈')
|
||||
).to.be.equal('small', 'should have return small');
|
||||
});
|
||||
|
||||
it('multiple emoji before a normal sentence', () => {
|
||||
expect(
|
||||
getEmojiSizeClass('😈 😈The SMILING FACE WITH HORNS character () is assigned')
|
||||
).to.be.equal('small', 'should have return small');
|
||||
});
|
||||
|
||||
it('one emoji with just a space after', () => {
|
||||
expect(getEmojiSizeClass('😈 ')).to.be.equal('jumbo', 'should have return jumbo');
|
||||
});
|
||||
|
||||
it('one emoji with just a space before', () => {
|
||||
expect(getEmojiSizeClass(' 😈')).to.be.equal('jumbo', 'should have return jumbo');
|
||||
});
|
||||
|
||||
it('one emoji with just a space before & after', () => {
|
||||
expect(getEmojiSizeClass(' 😈 ')).to.be.equal('jumbo', 'should have return jumbo');
|
||||
});
|
||||
});
|
||||
describe('with string containing only emojis ', () => {
|
||||
it('one emoji without other characters', () => {
|
||||
expect(getEmojiSizeClass('😈')).to.be.equal('jumbo', 'should have return jumbo');
|
||||
});
|
||||
|
||||
it('two emoji without other characters', () => {
|
||||
expect(getEmojiSizeClass('😈😈')).to.be.equal('jumbo', 'should have return jumbo');
|
||||
});
|
||||
|
||||
it('3 emoji without other characters', () => {
|
||||
expect(getEmojiSizeClass('😈😈😈')).to.be.equal('large', 'should have return large');
|
||||
});
|
||||
|
||||
it('4 emoji without other characters', () => {
|
||||
expect(getEmojiSizeClass('😈😈😈😈')).to.be.equal('large', 'should have return large');
|
||||
});
|
||||
|
||||
it('5 emoji without other characters', () => {
|
||||
expect(getEmojiSizeClass('😈😈😈😈😈')).to.be.equal('medium', 'should have return medium');
|
||||
});
|
||||
|
||||
it('6 emoji without other characters', () => {
|
||||
expect(getEmojiSizeClass('😈😈😈😈😈😈')).to.be.equal(
|
||||
'medium',
|
||||
'should have return medium'
|
||||
);
|
||||
});
|
||||
|
||||
it('7 emoji without other characters', () => {
|
||||
expect(getEmojiSizeClass('😈😈😈😈😈😈😈')).to.be.equal(
|
||||
'small',
|
||||
'should have return small'
|
||||
);
|
||||
});
|
||||
|
||||
it('lots of emojis without other characters', () => {
|
||||
expect(
|
||||
getEmojiSizeClass(
|
||||
'😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈😈'
|
||||
)
|
||||
).to.be.equal('small', 'should have return small');
|
||||
});
|
||||
|
||||
it('lots of emojis without other characters except space', () => {
|
||||
expect(getEmojiSizeClass('😈😈😈😈😈😈😈😈😈😈😈 😈😈 😈😈 😈😈 ')).to.be.equal(
|
||||
'small',
|
||||
'should have return small'
|
||||
);
|
||||
});
|
||||
|
||||
it('3 emojis without other characters except space', () => {
|
||||
expect(getEmojiSizeClass('😈 😈 😈 ')).to.be.equal('large', 'should have return small');
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
@ -0,0 +1,82 @@
|
||||
import { expect } from 'chai';
|
||||
import { getInitials } from '../../../../util/getInitials';
|
||||
|
||||
describe('getInitials', () => {
|
||||
describe('empty or null string', () => {
|
||||
it('initials: return undefined if string is undefined', () => {
|
||||
expect(getInitials(undefined)).to.be.equal('0', 'should have return 0');
|
||||
});
|
||||
|
||||
it('initials: return undefined if string is empty', () => {
|
||||
expect(getInitials('')).to.be.equal('0', 'should have return 0');
|
||||
});
|
||||
|
||||
it('initials: return undefined if string is null', () => {
|
||||
expect(getInitials(null as any)).to.be.equal('0', 'should have return 0');
|
||||
});
|
||||
});
|
||||
|
||||
describe('name is a pubkey', () => {
|
||||
it('initials: return the first char after 05 if it starts with 05 and has length >2 ', () => {
|
||||
expect(getInitials('052')).to.be.equal('2', 'should have return 2');
|
||||
});
|
||||
|
||||
it('initials: return the first char after 05 capitalized if it starts with 05 and has length >2 ', () => {
|
||||
expect(getInitials('05bcd')).to.be.equal('B', 'should have return B');
|
||||
});
|
||||
|
||||
it('initials: return the first char after 05 if it starts with 05 and has length >2 ', () => {
|
||||
expect(getInitials('059052052052052052052052')).to.be.equal('9', 'should have return 9');
|
||||
});
|
||||
});
|
||||
|
||||
describe('name has a space in its content', () => {
|
||||
it('initials: return the first char of each first 2 words if a space is present ', () => {
|
||||
expect(getInitials('John Doe')).to.be.equal('JD', 'should have return JD');
|
||||
});
|
||||
|
||||
it('initials: return the first char capitalized of each first 2 words if a space is present ', () => {
|
||||
expect(getInitials('John doe')).to.be.equal('JD', 'should have return JD capitalized');
|
||||
});
|
||||
|
||||
it('initials: return the first char capitalized of each first 2 words if a space is present, even with more than 2 words ', () => {
|
||||
expect(getInitials('John Doe Alice')).to.be.equal('JD', 'should have return JD capitalized');
|
||||
});
|
||||
|
||||
it('initials: return the first char capitalized of each first 2 words if a space is present, even with more than 2 words ', () => {
|
||||
expect(getInitials('John doe Alice')).to.be.equal('JD', 'should have return JD capitalized');
|
||||
});
|
||||
|
||||
describe('name is not ascii', () => {
|
||||
// ß maps to SS in uppercase
|
||||
it('initials: shorten to 2 char at most if the uppercase form length is > 2 ', () => {
|
||||
expect(getInitials('John ß')).to.be.equal('JS', 'should have return JS capitalized');
|
||||
});
|
||||
|
||||
it('initials: shorten to 2 char at most if the uppercase form length is > 2 ', () => {
|
||||
expect(getInitials('ß ß')).to.be.equal('SS', 'should have return SS capitalized');
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
describe('name has NO spaces in its content', () => {
|
||||
it('initials: return the first 2 chars of the first word if the name has no space ', () => {
|
||||
expect(getInitials('JOHNY')).to.be.equal('JO', 'should have return JO');
|
||||
});
|
||||
|
||||
it('initials: return the first 2 chars capitalized of the first word if the name has no space ', () => {
|
||||
expect(getInitials('Johnny')).to.be.equal('JO', 'should have return JO');
|
||||
});
|
||||
|
||||
describe('name is not ascii', () => {
|
||||
// ß maps to SS in uppercase
|
||||
it('initials: shorten to 2 char at most if the uppercase form length is > 2 ', () => {
|
||||
expect(getInitials('ß')).to.be.equal('SS', 'should have return SS capitalized');
|
||||
});
|
||||
|
||||
it('initials: shorten to 2 char at most if the uppercase form length is > 2 ', () => {
|
||||
expect(getInitials('ßß')).to.be.equal('SS', 'should have return SS capitalized');
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
@ -0,0 +1,172 @@
|
||||
import { expect } from 'chai';
|
||||
import { getIncrement, getTimerBucketIcon } from '../../../../util/timer';
|
||||
|
||||
describe('getIncrement', () => {
|
||||
describe('negative length', () => {
|
||||
it('length < 0', () => {
|
||||
expect(getIncrement(-1)).to.be.equal(1000, 'should have return 1000');
|
||||
});
|
||||
|
||||
it('length < -1000', () => {
|
||||
expect(getIncrement(-1000)).to.be.equal(1000, 'should have return 1000');
|
||||
});
|
||||
});
|
||||
|
||||
describe('positive length but less than a minute => should return 500', () => {
|
||||
it('length = 60000', () => {
|
||||
expect(getIncrement(60000)).to.be.equal(500, 'should have return 500');
|
||||
});
|
||||
|
||||
it('length = 10000', () => {
|
||||
expect(getIncrement(10000)).to.be.equal(500, 'should have return 500');
|
||||
});
|
||||
|
||||
it('length = 0', () => {
|
||||
expect(getIncrement(0)).to.be.equal(500, 'should have return 500');
|
||||
});
|
||||
});
|
||||
|
||||
describe('positive length > a minute => should return Math.ceil(length / 12) ', () => {
|
||||
it('length = 2 minutes', () => {
|
||||
expect(getIncrement(120000)).to.be.equal(10000, 'should have return 10000');
|
||||
});
|
||||
|
||||
it('length = 2 minutes not divisible by 12', () => {
|
||||
// because we have Math.ceil()
|
||||
expect(getIncrement(120001)).to.be.equal(10001, 'should have return 10000');
|
||||
});
|
||||
|
||||
it('length = 20 days', () => {
|
||||
expect(getIncrement(1000 * 60 * 60 * 24 * 20)).to.be.equal(
|
||||
144000000,
|
||||
'should have return 144000000'
|
||||
);
|
||||
});
|
||||
|
||||
it('length = 20 days not divisible by 12', () => {
|
||||
// because we have Math.ceil()
|
||||
expect(getIncrement(1000 * 60 * 60 * 24 * 20 + 1)).to.be.equal(
|
||||
144000001,
|
||||
'should have return 144000001'
|
||||
);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
describe('getTimerBucketIcon', () => {
|
||||
describe('absolute values', () => {
|
||||
it('delta < 0', () => {
|
||||
expect(getTimerBucketIcon(Date.now() - 1000, 100)).to.be.equal(
|
||||
'timer60',
|
||||
'should have return timer60'
|
||||
);
|
||||
});
|
||||
|
||||
it('delta > length by a little', () => {
|
||||
expect(getTimerBucketIcon(Date.now() + 101, 100)).to.be.equal(
|
||||
'timer00',
|
||||
'should have return timer00'
|
||||
);
|
||||
});
|
||||
|
||||
it('delta > length by a lot', () => {
|
||||
expect(getTimerBucketIcon(Date.now() + 10100000, 100)).to.be.equal(
|
||||
'timer00',
|
||||
'should have return timer00'
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
describe('calculated values for length 1000', () => {
|
||||
const length = 1000;
|
||||
it('delta = 0', () => {
|
||||
expect(getTimerBucketIcon(Date.now(), length)).to.be.equal(
|
||||
'timer00',
|
||||
'should have return timer00'
|
||||
);
|
||||
});
|
||||
it('delta = 1/12 of length', () => {
|
||||
expect(getTimerBucketIcon(Date.now() + (1 / 12) * length, length)).to.be.equal(
|
||||
'timer05',
|
||||
'should have return timer05'
|
||||
);
|
||||
});
|
||||
|
||||
it('delta = 2/12 of length', () => {
|
||||
expect(getTimerBucketIcon(Date.now() + (2 / 12) * length, length)).to.be.equal(
|
||||
'timer10',
|
||||
'should have return timer10'
|
||||
);
|
||||
});
|
||||
|
||||
it('delta = 3/12 of length', () => {
|
||||
expect(getTimerBucketIcon(Date.now() + (3 / 12) * length, length)).to.be.equal(
|
||||
'timer15',
|
||||
'should have return timer15'
|
||||
);
|
||||
});
|
||||
|
||||
it('delta = 4/12 of length', () => {
|
||||
expect(getTimerBucketIcon(Date.now() + (4 / 12) * length, length)).to.be.equal(
|
||||
'timer20',
|
||||
'should have return timer20'
|
||||
);
|
||||
});
|
||||
|
||||
it('delta = 5/12 of length', () => {
|
||||
expect(getTimerBucketIcon(Date.now() + (5 / 12) * length, length)).to.be.equal(
|
||||
'timer25',
|
||||
'should have return timer25'
|
||||
);
|
||||
});
|
||||
|
||||
it('delta = 6/12 of length', () => {
|
||||
expect(getTimerBucketIcon(Date.now() + (6 / 12) * length, length)).to.be.equal(
|
||||
'timer30',
|
||||
'should have return timer30'
|
||||
);
|
||||
});
|
||||
|
||||
it('delta = 7/12 of length', () => {
|
||||
expect(getTimerBucketIcon(Date.now() + (7 / 12) * length, length)).to.be.equal(
|
||||
'timer35',
|
||||
'should have return timer35'
|
||||
);
|
||||
});
|
||||
|
||||
it('delta = 8/12 of length', () => {
|
||||
expect(getTimerBucketIcon(Date.now() + (8 / 12) * length, length)).to.be.equal(
|
||||
'timer40',
|
||||
'should have return timer40'
|
||||
);
|
||||
});
|
||||
|
||||
it('delta = 9/12 of length', () => {
|
||||
expect(getTimerBucketIcon(Date.now() + (9 / 12) * length, length)).to.be.equal(
|
||||
'timer45',
|
||||
'should have return timer45'
|
||||
);
|
||||
});
|
||||
|
||||
it('delta = 10/12 of length', () => {
|
||||
expect(getTimerBucketIcon(Date.now() + (10 / 12) * length, length)).to.be.equal(
|
||||
'timer50',
|
||||
'should have return timer50'
|
||||
);
|
||||
});
|
||||
|
||||
it('delta = 11/12 of length', () => {
|
||||
expect(getTimerBucketIcon(Date.now() + (11 / 12) * length, length)).to.be.equal(
|
||||
'timer55',
|
||||
'should have return timer55'
|
||||
);
|
||||
});
|
||||
|
||||
it('delta = 12/12 of length', () => {
|
||||
expect(getTimerBucketIcon(Date.now() + (12 / 12) * length, length)).to.be.equal(
|
||||
'timer60',
|
||||
'should have return timer60'
|
||||
);
|
||||
});
|
||||
});
|
||||
});
|
@ -1,18 +1,35 @@
|
||||
export function getInitials(name?: string): string | undefined {
|
||||
export function getInitials(name?: string): string {
|
||||
if (!name || !name.length) {
|
||||
return;
|
||||
return '0';
|
||||
}
|
||||
|
||||
if (name.length > 2 && name.startsWith('05')) {
|
||||
return name[2];
|
||||
// Just the third char of the pubkey when the name is a pubkey
|
||||
return upperAndShorten(name[2]);
|
||||
}
|
||||
|
||||
const initials = name
|
||||
.split(' ')
|
||||
.slice(0, 2)
|
||||
.map(n => {
|
||||
return n[0];
|
||||
});
|
||||
if (name.indexOf(' ') === -1) {
|
||||
// there is no space, just return the first 2 chars of the name
|
||||
|
||||
return initials.join('');
|
||||
if (name.length > 1) {
|
||||
return upperAndShorten(name.slice(0, 2));
|
||||
}
|
||||
return upperAndShorten(name[0]);
|
||||
}
|
||||
|
||||
// name has a space, just extract the first char of each words
|
||||
return upperAndShorten(
|
||||
name
|
||||
.split(' ')
|
||||
.slice(0, 2)
|
||||
.map(n => {
|
||||
return n[0];
|
||||
})
|
||||
.join('')
|
||||
);
|
||||
}
|
||||
|
||||
function upperAndShorten(str: string) {
|
||||
// believe it or not, some chars put in uppercase can be more than one char. (ß for instance)
|
||||
return str.toLocaleUpperCase().slice(0, 2);
|
||||
}
|
||||
|
Loading…
Reference in New Issue