1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- 'use strict';
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- var UnicodeBidi = require('./UnicodeBidi');
- var UnicodeBidiDirection = require('./UnicodeBidiDirection');
- var invariant = require('./invariant');
- var UnicodeBidiService = function () {
-
- function UnicodeBidiService(defaultDir) {
- _classCallCheck(this, UnicodeBidiService);
- if (!defaultDir) {
- defaultDir = UnicodeBidiDirection.getGlobalDir();
- } else {
- !UnicodeBidiDirection.isStrong(defaultDir) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Default direction must be a strong direction (LTR or RTL)') : invariant(false) : void 0;
- }
- this._defaultDir = defaultDir;
- this.reset();
- }
-
- UnicodeBidiService.prototype.reset = function reset() {
- this._lastDir = this._defaultDir;
- };
-
- UnicodeBidiService.prototype.getDirection = function getDirection(str) {
- this._lastDir = UnicodeBidi.getDirection(str, this._lastDir);
- return this._lastDir;
- };
- return UnicodeBidiService;
- }();
- module.exports = UnicodeBidiService;
|