@stackend/api
Version:
JS bindings to api.stackend.com
216 lines • 8.04 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __generator = (this && this.__generator) || function (thisArg, body) {
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
function verb(n) { return function (v) { return step([n, v]); }; }
function step(op) {
if (f) throw new TypeError("Generator is already executing.");
while (_) try {
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
if (y = 0, t) op = [op[0] & 2, t.value];
switch (op[0]) {
case 0: case 1: t = op; break;
case 4: _.label++; return { value: op[1], done: false };
case 5: _.label++; y = op[1]; op = [0]; continue;
case 7: op = _.ops.pop(); _.trys.pop(); continue;
default:
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
if (t[2]) _.ops.pop();
_.trys.pop(); continue;
}
op = body.call(thisArg, _);
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
}
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.getCurrencyFormatter = exports.EMAIL_VALIDATION_REGEXP_RELAXED = exports.removeLocalStorageItem = exports.getLocalStorageItem = exports.setLocalStorageItem = exports._getLocalStorageKey = exports.getLocalStorageKey = exports.getLocale = exports.getStackendLocale = exports.hash = exports.generateClassName = void 0;
var deburr_1 = __importDefault(require("lodash/deburr"));
var api_1 = require("../api");
var get_1 = __importDefault(require("lodash/get"));
var stackend_1 = require("../stackend");
/**
* Generate a class name
* @param s
*/
function generateClassName(s) {
if (!s) {
return '0';
}
var c = (0, deburr_1.default)(s);
c = c
.toLowerCase()
.replace(/[^a-z0-9-]/g, '-')
.replace(/--+/g, '-');
if (c) {
return c;
}
return '' + hash(c);
}
exports.generateClassName = generateClassName;
/**
* Calculate a hash number from a string
* @param s
*/
function hash(s) {
if (!s) {
return 0;
}
var hash = 0;
var chr;
for (var i = 0; i < s.length; i++) {
chr = s.charCodeAt(i);
hash = (hash << 5) - hash + chr;
hash |= 0; // Convert to 32bit integer
}
return hash;
}
exports.hash = hash;
var STACKEND_LOCALES_BY_LANGUAGE = {
sv: 'sv_SE',
fi: 'fi_FI',
de: 'de_DE',
en: 'en_US'
};
/**
* Get a stackend supported locale given the corresponding language code
* @param language
*/
function getStackendLocale(language) {
if (!language) {
return 'en_US';
}
// To unix / java locale
var l = language.replace('-', '_');
if (l.indexOf('_')) {
l = l.split('_')[0];
}
l = STACKEND_LOCALES_BY_LANGUAGE[l.toLowerCase()];
return l || 'en_US';
}
exports.getStackendLocale = getStackendLocale;
/**
* Get the locale, falling back to the community locale if not supplied
* @param locale
*/
function getLocale(locale) {
var _this = this;
return function (dispatch, getState) { return __awaiter(_this, void 0, void 0, function () {
var l, state;
var _a, _b;
return __generator(this, function (_c) {
l = locale;
if (!l) {
state = getState();
l = getStackendLocale((_b = (_a = state === null || state === void 0 ? void 0 : state.communities) === null || _a === void 0 ? void 0 : _a.community) === null || _b === void 0 ? void 0 : _b.locale);
}
if (!l) {
throw Error('No locale supplied');
}
return [2 /*return*/, l];
});
}); };
}
exports.getLocale = getLocale;
/**
* Get a local storage key name prefixed with the current community permalink
* @param name
*/
function getLocalStorageKey(name) {
return function (dispatch, getState) {
return _getLocalStorageKey(getState(), name);
};
}
exports.getLocalStorageKey = getLocalStorageKey;
/**
* Get a local storage key name prefixed with the current community permalink
* @param state
* @param name
*/
function _getLocalStorageKey(state, name) {
return (0, get_1.default)(state, 'communities.community.permalink', stackend_1.STACKEND_COMMUNITY) + '-' + name;
}
exports._getLocalStorageKey = _getLocalStorageKey;
/**
* Store any object in local storage under a community unique key
* @param name
* @param value
*/
function setLocalStorageItem(name, value) {
return function (dispatch) {
if ((0, api_1.isRunningInBrowser)()) {
var key = dispatch(getLocalStorageKey(name));
localStorage.setItem(key, value);
}
};
}
exports.setLocalStorageItem = setLocalStorageItem;
/**
* Get any object from local storage using a community unique key
* @param name
*/
function getLocalStorageItem(name) {
return function (dispatch) {
if ((0, api_1.isRunningInBrowser)()) {
var key = dispatch(getLocalStorageKey(name));
return localStorage.getItem(key);
}
return null;
};
}
exports.getLocalStorageItem = getLocalStorageItem;
/**
* Remove an object from local storage using a community unique key
* @param name
*/
function removeLocalStorageItem(name) {
return function (dispatch) {
if ((0, api_1.isRunningInBrowser)()) {
var key = dispatch(getLocalStorageKey(name));
localStorage.removeItem(key);
}
};
}
exports.removeLocalStorageItem = removeLocalStorageItem;
/**
* An email validation regular expression that covers most cases without
* being to costly to evaluate. Not 100% correct, but covers most use cases.
*/
exports.EMAIL_VALIDATION_REGEXP_RELAXED = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
var CURRENCY_FORMATTERS = {};
/**
* Get a (cached) currency formatter.
* @param currencyCode
* @param locale
*/
function getCurrencyFormatter(currencyCode, locale) {
// js does not accept java / unix format locale
locale = locale.replace('_', '-');
var key = currencyCode.toUpperCase() + ';' + locale.toUpperCase();
var formatter = CURRENCY_FORMATTERS[key];
if (!formatter) {
formatter = new Intl.NumberFormat(locale, {
style: 'currency',
currency: currencyCode
});
CURRENCY_FORMATTERS[key] = formatter;
}
return formatter;
}
exports.getCurrencyFormatter = getCurrencyFormatter;
//# sourceMappingURL=index.js.map