react-native-flip
Version:
67 lines (53 loc) • 2.15 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getProjectStringsXMLPathAsync = getProjectStringsXMLPathAsync;
exports.setStringItem = setStringItem;
exports.removeStringItem = removeStringItem;
function _Paths() {
const data = require("./Paths");
_Paths = function () {
return data;
};
return data;
}
async function getProjectStringsXMLPathAsync(projectRoot, {
kind
} = {}) {
return (0, _Paths().getResourceXMLPathAsync)(projectRoot, {
kind,
name: 'strings'
});
}
function setStringItem(itemToAdd, stringFileContentsJSON) {
var _stringFileContentsJS;
if (stringFileContentsJSON !== null && stringFileContentsJSON !== void 0 && (_stringFileContentsJS = stringFileContentsJSON.resources) !== null && _stringFileContentsJS !== void 0 && _stringFileContentsJS.string) {
const stringNameExists = stringFileContentsJSON.resources.string.filter(e => e.$.name === itemToAdd[0].$.name)[0];
if (stringNameExists) {
// replace the previous value
stringNameExists._ = itemToAdd[0]._;
} else {
stringFileContentsJSON.resources.string = stringFileContentsJSON.resources.string.concat(itemToAdd);
}
} else {
if (!stringFileContentsJSON.resources || typeof stringFileContentsJSON.resources === 'string') {
// file was empty and JSON is `{resources : ''}`
stringFileContentsJSON.resources = {};
}
stringFileContentsJSON.resources.string = itemToAdd;
}
return stringFileContentsJSON;
}
function removeStringItem(named, stringFileContentsJSON) {
var _stringFileContentsJS2;
if (stringFileContentsJSON !== null && stringFileContentsJSON !== void 0 && (_stringFileContentsJS2 = stringFileContentsJSON.resources) !== null && _stringFileContentsJS2 !== void 0 && _stringFileContentsJS2.string) {
const stringNameExists = stringFileContentsJSON.resources.string.findIndex(e => e.$.name === named);
if (stringNameExists > -1) {
// replace the previous value
stringFileContentsJSON.resources.string.splice(stringNameExists, 1);
}
}
return stringFileContentsJSON;
}
//# sourceMappingURL=Strings.js.map