Spaces:
Sleeping
Sleeping
File size: 966 Bytes
b593f0b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | // @flow
import {plugin as rtlTextPlugin} from '../source/rtl_text_plugin';
import type SymbolStyleLayer from '../style/style_layer/symbol_style_layer';
import type {Feature} from '../style-spec/expression';
import Formatted from '../style-spec/expression/types/formatted';
function transformText(text: string, layer: SymbolStyleLayer, feature: Feature) {
const transform = layer.layout.get('text-transform').evaluate(feature, {});
if (transform === 'uppercase') {
text = text.toLocaleUpperCase();
} else if (transform === 'lowercase') {
text = text.toLocaleLowerCase();
}
if (rtlTextPlugin.applyArabicShaping) {
text = rtlTextPlugin.applyArabicShaping(text);
}
return text;
}
export default function(text: Formatted, layer: SymbolStyleLayer, feature: Feature): Formatted {
text.sections.forEach(section => {
section.text = transformText(section.text, layer, feature);
});
return text;
}
|