mirror of
https://github.com/grafana/grafana.git
synced 2025-02-09 23:16:16 -06:00
* Add and configure eslint-plugin-import * Fix the lint:ts npm command * Autofix + prettier all the files * Manually fix remaining files * Move jquery code in jest-setup to external file to safely reorder imports * Resolve issue caused by circular dependencies within Prometheus * Update .betterer.results * Fix missing // @ts-ignore * ignore iconBundle.ts * Fix missing // @ts-ignore
29 lines
863 B
TypeScript
29 lines
863 B
TypeScript
import { MessageDescriptor } from '@lingui/core';
|
|
import { Trans as OriginalTrans } from '@lingui/macro';
|
|
import React from 'react';
|
|
|
|
export const Trans: typeof OriginalTrans = ({ id, children }) => {
|
|
return <>{children ?? id}</>;
|
|
};
|
|
|
|
export const Plural: React.FC = () => {
|
|
throw new Error('Plural mock not implemented yet');
|
|
};
|
|
|
|
export const Select: React.FC = () => {
|
|
throw new Error('Select mock not implemented yet');
|
|
};
|
|
|
|
export const SelectOrdinal: React.FC = () => {
|
|
throw new Error('SelectOrdinal mock not implemented yet');
|
|
};
|
|
|
|
export const t = (msg: string | { message: string }) => {
|
|
return typeof msg === 'string' ? msg : msg.message;
|
|
};
|
|
|
|
export const defineMessage = (descriptor: MessageDescriptor) => {
|
|
// We return the message as the ID so we can assert on the plain english value
|
|
return { ...descriptor, id: descriptor.message };
|
|
};
|