17 lines
443 B
TypeScript
17 lines
443 B
TypeScript
// Copyright 2019-2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
export function cleanId(id: string): string {
|
|
return id.replace(/[^\u0020-\u007e\u00a0-\u00ff]/g, '_');
|
|
}
|
|
|
|
export enum WidthBreakpoint {
|
|
Wide = 'wide',
|
|
Medium = 'medium',
|
|
Narrow = 'narrow',
|
|
}
|
|
|
|
export const getConversationListWidthBreakpoint = (
|
|
width: number
|
|
): WidthBreakpoint =>
|
|
width >= 150 ? WidthBreakpoint.Wide : WidthBreakpoint.Narrow;
|