2025-02-10 16:49:47 +11:00
|
|
|
import { useMemo } from 'react';
|
|
|
|
|
import { MessageLayout } from '../state/settings';
|
|
|
|
|
|
|
|
|
|
export type MessageLayoutItem = {
|
|
|
|
|
name: string;
|
|
|
|
|
layout: MessageLayout;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const useMessageLayoutItems = (): MessageLayoutItem[] =>
|
|
|
|
|
useMemo(
|
|
|
|
|
() => [
|
|
|
|
|
{
|
|
|
|
|
layout: MessageLayout.Modern,
|
|
|
|
|
name: 'Modern',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
layout: MessageLayout.Compact,
|
|
|
|
|
name: 'Compact',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
layout: MessageLayout.Bubble,
|
|
|
|
|
name: 'Bubble',
|
|
|
|
|
},
|
|
|
|
|
],
|
2026-05-21 23:30:50 -04:00
|
|
|
[],
|
2025-02-10 16:49:47 +11:00
|
|
|
);
|