1
- import { map , extend , propertyOf } from 'lodash' ;
1
+ import { map , extend , fromPairs } from 'lodash' ;
2
2
import * as i18next from 'i18next' ;
3
3
4
4
import { CompositeView } from '../core/view' ;
@@ -8,26 +8,14 @@ import { xsd } from '../common-rdf/ns';
8
8
import ScopedIriLink from './scoped-iri-href-view' ;
9
9
import template from './detected-type-help-template' ;
10
10
11
- const disambiguationHints = {
12
- [ xsd . integer ] : i18next . t ( 'typeHints.integer' ,
13
- 'Include extra leading zeros to force interpretation ' +
14
- 'as an integer type.'
15
- ) ,
16
- [ xsd . base64Binary ] : i18next . t ( 'typeHints.base64Binary' ,
17
- 'Include internal whitespace to force interpretation ' +
18
- 'as base 64 binary data.'
19
- ) ,
20
- [ xsd . gYear ] : i18next . t ( 'typeHints.gYear' ,
21
- 'Include time zone information (such as a final "Z") to force ' +
22
- 'interpretation as a Gregorian year.'
23
- ) ,
24
- [ xsd . string ] : i18next . t ( 'typeHints.string' ,
25
- 'Start with a space to force interpretation as text or ' +
26
- 'a derived string type.'
27
- ) ,
28
- } ;
29
-
30
- const getHint = propertyOf ( disambiguationHints ) ;
11
+ // i18next.t('typeHints.integer')
12
+ // i18next.t('typeHints.base64Binary')
13
+ // i18next.t('typeHints.gYear')
14
+ // i18next.t('typeHints.string')
15
+ const typesWithHints = [ 'integer' , 'base64Binary' , 'gYear' , 'string' ] ;
16
+ const typeAsPair = name => [ xsd [ name ] , `typeHints.${ name } ` ] ;
17
+ const disambiguationHints = fromPairs ( map ( typesWithHints , typeAsPair ) ) ;
18
+ const getHint = type => i18next . t ( disambiguationHints [ type ] ) ;
31
19
32
20
/**
33
21
* This is one of the p.help views used in LinkedItemEditor, to give the user
0 commit comments