locale.tsx 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. import {cloneElement, Fragment, isValidElement} from 'react';
  2. import Jed from 'jed';
  3. import {sprintf} from 'sprintf-js';
  4. import toArray from 'sentry/utils/array/toArray';
  5. import localStorage from 'sentry/utils/localStorage';
  6. const markerStyles = {
  7. background: '#ff801790',
  8. outline: '2px solid #ff801790',
  9. };
  10. const LOCALE_DEBUG = localStorage.getItem('localeDebug') === '1';
  11. export const DEFAULT_LOCALE_DATA = {
  12. '': {
  13. domain: 'sentry',
  14. lang: 'en',
  15. plural_forms: 'nplurals=2; plural=(n != 1);',
  16. },
  17. };
  18. export function setLocaleDebug(value: boolean) {
  19. localStorage.setItem('localeDebug', value ? '1' : '0');
  20. // eslint-disable-next-line no-console
  21. console.log(`Locale debug is: ${value ? 'on' : 'off'}. Reload page to apply changes!`);
  22. }
  23. /**
  24. * Toggles the locale debug flag in local storage, but does _not_ reload the
  25. * page. The caller should do this.
  26. */
  27. export function toggleLocaleDebug() {
  28. const currentValue = localStorage.getItem('localeDebug');
  29. setLocaleDebug(currentValue !== '1');
  30. }
  31. /**
  32. * Global Jed locale object loaded with translations via setLocale
  33. */
  34. let i18n: Jed | null = null;
  35. const staticTranslations = new Set<string>();
  36. /**
  37. * Set the current application locale.
  38. *
  39. * NOTE: This MUST be called early in the application before calls to any
  40. * translation functions, as this mutates a singleton translation object used
  41. * to lookup translations at runtime.
  42. */
  43. export function setLocale(translations: any): Jed {
  44. i18n = new Jed({
  45. domain: 'sentry',
  46. missing_key_callback: () => {},
  47. locale_data: {
  48. sentry: translations,
  49. },
  50. });
  51. return i18n;
  52. }
  53. type FormatArg = ComponentMap | React.ReactNode;
  54. /**
  55. * Helper to return the i18n client, and initialize for the default locale (English)
  56. * if it has otherwise not been initialized.
  57. */
  58. function getClient(): Jed | null {
  59. if (!i18n) {
  60. // If this happens, it could mean that an import was added/changed where
  61. // locale initialization does not happen soon enough.
  62. // eslint-disable-next-line no-console
  63. console.warn('Locale not set, defaulting to English');
  64. return setLocale(DEFAULT_LOCALE_DATA);
  65. }
  66. return i18n;
  67. }
  68. export function isStaticString(formatString: string): boolean {
  69. if (formatString.trim() === '') {
  70. return false;
  71. }
  72. return staticTranslations.has(formatString);
  73. }
  74. /**
  75. * printf style string formatting which render as react nodes.
  76. */
  77. function formatForReact(formatString: string, args: FormatArg[]): React.ReactNode[] {
  78. const nodes: React.ReactNode[] = [];
  79. let cursor = 0;
  80. // always re-parse, do not cache, because we change the match
  81. sprintf.parse(formatString).forEach((match: any, idx: number) => {
  82. if (typeof match === 'string') {
  83. nodes.push(match);
  84. return;
  85. }
  86. let arg: FormatArg = null;
  87. if (match[2]) {
  88. arg = (args[0] as ComponentMap)[match[2][0]];
  89. } else if (match[1]) {
  90. arg = args[parseInt(match[1], 10) - 1];
  91. } else {
  92. arg = args[cursor++];
  93. }
  94. // this points to a react element!
  95. if (isValidElement(arg)) {
  96. nodes.push(cloneElement(arg, {key: idx}));
  97. } else {
  98. // Not a react element, massage it so that sprintf.format can format it
  99. // for us. We make sure match[2] is null so that we do not go down the
  100. // object path, and we set match[1] to the first index and then pass an
  101. // array with two items in.
  102. match[2] = null;
  103. match[1] = 1;
  104. nodes.push(<Fragment key={idx++}>{sprintf.format([match], [null, arg])}</Fragment>);
  105. }
  106. });
  107. return nodes;
  108. }
  109. /**
  110. * Determine if any arguments include React elements.
  111. */
  112. function argsInvolveReact(args: FormatArg[]): boolean {
  113. if (args.some(isValidElement)) {
  114. return true;
  115. }
  116. if (args.length !== 1 || !args[0] || typeof args[0] !== 'object') {
  117. return false;
  118. }
  119. const componentMap = args[0] as ComponentMap;
  120. return Object.keys(componentMap).some(key => isValidElement(componentMap[key]));
  121. }
  122. /**
  123. * Parse template strings will be parsed into an array of TemplateSubvalue's,
  124. * this represents either a portion of the string, or a object with the group
  125. * key indicating the group to lookup the group value in.
  126. */
  127. type TemplateSubvalue = string | {group: string};
  128. /**
  129. * ParsedTemplate is a mapping of group names to Template Subvalue arrays.
  130. */
  131. type ParsedTemplate = {[group: string]: TemplateSubvalue[]};
  132. /**
  133. * ComponentMap maps template group keys to react node instances.
  134. *
  135. * NOTE: template group keys that include additional sub values (e.g.
  136. * [groupName:this string is the sub value]) will override the mapped react
  137. * nodes children prop.
  138. *
  139. * In the above example the component map of {groupName: <strong>text</strong>}
  140. * will be translated to `<strong>this string is the sub value</strong>`.
  141. */
  142. type ComponentMap = {[group: string]: React.ReactNode};
  143. /**
  144. * Parses a template string into groups.
  145. *
  146. * The top level group will be keyed as `root`. All other group names will have
  147. * been extracted from the template string.
  148. */
  149. export function parseComponentTemplate(template: string): ParsedTemplate {
  150. const parsed: ParsedTemplate = {};
  151. function process(startPos: number, group: string, inGroup: boolean) {
  152. const regex = /\[(.*?)(:|\])|\]/g;
  153. const buf: TemplateSubvalue[] = [];
  154. let satisfied = false;
  155. let match: ReturnType<typeof regex.exec>;
  156. let pos = (regex.lastIndex = startPos);
  157. // eslint-disable-next-line no-cond-assign
  158. while ((match = regex.exec(template)) !== null) {
  159. const substr = template.substring(pos, match.index);
  160. if (substr !== '') {
  161. buf.push(substr);
  162. }
  163. const [fullMatch, groupName, closeBraceOrValueSeparator] = match;
  164. if (fullMatch === ']') {
  165. if (inGroup) {
  166. satisfied = true;
  167. break;
  168. } else {
  169. pos = regex.lastIndex;
  170. continue;
  171. }
  172. }
  173. if (closeBraceOrValueSeparator === ']') {
  174. pos = regex.lastIndex;
  175. } else {
  176. pos = regex.lastIndex = process(regex.lastIndex, groupName, true);
  177. }
  178. buf.push({group: groupName});
  179. }
  180. let endPos = regex.lastIndex;
  181. if (!satisfied) {
  182. const rest = template.substring(pos);
  183. if (rest) {
  184. buf.push(rest);
  185. }
  186. endPos = template.length;
  187. }
  188. parsed[group] = buf;
  189. return endPos;
  190. }
  191. process(0, 'root', false);
  192. return parsed;
  193. }
  194. /**
  195. * Renders a parsed template into a React tree given a ComponentMap to use for
  196. * the parsed groups.
  197. */
  198. export function renderTemplate(
  199. template: ParsedTemplate,
  200. components: ComponentMap
  201. ): React.ReactNode {
  202. let idx = 0;
  203. function renderGroup(groupKey: string) {
  204. const children: React.ReactNode[] = [];
  205. const group = template[groupKey] || [];
  206. for (const item of group) {
  207. if (typeof item === 'string') {
  208. children.push(<Fragment key={idx++}>{item}</Fragment>);
  209. } else {
  210. children.push(renderGroup(item.group));
  211. }
  212. }
  213. // In case we cannot find our component, we call back to an empty
  214. // span so that stuff shows up at least.
  215. let reference = components[groupKey] ?? <Fragment key={idx++} />;
  216. if (!isValidElement(reference)) {
  217. reference = <Fragment key={idx++}>{reference}</Fragment>;
  218. }
  219. const element = reference as React.ReactElement;
  220. return children.length === 0
  221. ? cloneElement(element, {key: idx++})
  222. : cloneElement(element, {key: idx++}, children);
  223. }
  224. return <Fragment>{renderGroup('root')}</Fragment>;
  225. }
  226. /**
  227. * mark is used to debug translations by visually marking translated strings.
  228. *
  229. * NOTE: This is a no-op and will return the node if LOCALE_DEBUG is not
  230. * currently enabled. See setLocaleDebug and toggleLocaleDebug.
  231. */
  232. function mark<T extends React.ReactNode>(node: T): T {
  233. if (!LOCALE_DEBUG) {
  234. return node;
  235. }
  236. // TODO(epurkhiser): Explain why we manually create a react node and assign
  237. // the toString function. This could likely also use better typing, but will
  238. // require some understanding of reacts internal types.
  239. const proxy = {
  240. $$typeof: Symbol.for('react.element'),
  241. type: Symbol.for('react.fragment'),
  242. key: null,
  243. ref: null,
  244. props: {
  245. style: markerStyles,
  246. children: toArray(node),
  247. },
  248. _owner: null,
  249. _store: {},
  250. };
  251. proxy.toString = () => '✅' + node + '✅';
  252. // TODO(TS): Should proxy be created using `React.createElement`?
  253. return proxy as any as T;
  254. }
  255. /**
  256. * sprintf style string formatting. Does not handle translations.
  257. *
  258. * See the sprintf-js library [0] for specifics on the argument
  259. * parameterization format.
  260. *
  261. * [0]: https://github.com/alexei/sprintf.js
  262. */
  263. export function format(formatString: string, args: FormatArg[]): React.ReactNode {
  264. if (argsInvolveReact(args)) {
  265. return formatForReact(formatString, args);
  266. }
  267. return sprintf(formatString, ...args) as string;
  268. }
  269. /**
  270. * Translates a string to the current locale.
  271. *
  272. * See the sprintf-js library [0] for specifics on the argument
  273. * parameterization format.
  274. *
  275. * [0]: https://github.com/alexei/sprintf.js
  276. */
  277. export function gettext(string: string, ...args: FormatArg[]): string {
  278. const val: string = getClient().gettext(string);
  279. if (args.length === 0) {
  280. staticTranslations.add(val);
  281. return mark(val);
  282. }
  283. // XXX(ts): It IS possible to use gettext in such a way that it will return a
  284. // React.ReactNodeArray, however we currently rarely (if at all) use it in
  285. // this way, and usually just expect strings back.
  286. return mark(format(val, args) as string);
  287. }
  288. /**
  289. * Translates a singular and plural string to the current locale. Supports
  290. * argument parameterization, and will use the first argument as the counter to
  291. * determine which message to use.
  292. *
  293. * See the sprintf-js library [0] for specifics on the argument
  294. * parameterization format.
  295. *
  296. * [0]: https://github.com/alexei/sprintf.js
  297. */
  298. export function ngettext(singular: string, plural: string, ...args: FormatArg[]): string {
  299. let countArg = 0;
  300. if (args.length > 0) {
  301. countArg = Math.abs(args[0] as number) || 0;
  302. // `toLocaleString` will render `999` as `"999"` but `9999` as `"9,999"`.
  303. // This means that any call with `tn` or `ngettext` cannot use `%d` in the
  304. // codebase but has to use `%s`.
  305. //
  306. // This means a string is always being passed in as an argument, but
  307. // `sprintf-js` implicitly coerces strings that can be parsed as integers
  308. // into an integer.
  309. //
  310. // This would break under any locale that used different formatting and
  311. // other undesirable behaviors.
  312. if ((singular + plural).includes('%d')) {
  313. // eslint-disable-next-line no-console
  314. console.error(new Error('You should not use %d within tn(), use %s instead'));
  315. } else {
  316. args = [countArg.toLocaleString(), ...args.slice(1)];
  317. }
  318. }
  319. // XXX(ts): See XXX in gettext.
  320. return mark(format(getClient().ngettext(singular, plural, countArg), args) as string);
  321. }
  322. /**
  323. * special form of gettext where you can render nested react components in
  324. * template strings.
  325. *
  326. * ```jsx
  327. * gettextComponentTemplate('Welcome. Click [link:here]', {
  328. * root: <p/>,
  329. * link: <a href="#" />,
  330. * });
  331. * ```
  332. *
  333. * The root string is always called "root", the rest is prefixed with the name
  334. * in the brackets
  335. *
  336. * You may recursively nest additional groups within the grouped string values.
  337. */
  338. export function gettextComponentTemplate(
  339. template: string,
  340. components: ComponentMap
  341. ): JSX.Element {
  342. const parsedTemplate = parseComponentTemplate(getClient().gettext(template));
  343. return mark(renderTemplate(parsedTemplate, components) as JSX.Element);
  344. }
  345. /**
  346. * Shorthand versions should primarily be used.
  347. */
  348. export {gettext as t, gettextComponentTemplate as tct, ngettext as tn};