1
0
mirror of https://github.com/lancedikson/bowser synced 2024-09-28 22:30:44 +00:00
lancedikson_bowser/src/bowser.js

78 lines
1.8 KiB
JavaScript
Raw Normal View History

2016-05-06 18:29:22 +00:00
/*!
* Bowser - a browser detector
2018-06-27 20:04:25 +00:00
* https://github.com/lancedikson/bowser
2018-06-27 19:52:43 +00:00
* MIT License | (c) Dustin Diaz 2012-2015
* MIT License | (c) Denis Demchenko 2015-2019
2016-05-06 18:29:22 +00:00
*/
import Parser from './parser.js';
2019-12-19 21:50:05 +00:00
import {
BROWSER_MAP,
ENGINE_MAP,
OS_MAP,
PLATFORMS_MAP,
} from './constants.js';
2016-05-06 18:29:22 +00:00
2018-06-27 19:52:43 +00:00
/**
2018-07-05 19:44:43 +00:00
* Bowser class.
* Keep it simple as much as it can be.
* It's supposed to work with collections of {@link Parser} instances
2018-07-04 19:36:46 +00:00
* rather then solve one-instance problems.
* All the one-instance stuff is located in Parser class.
*
* @class
* @classdesc Bowser is a static object, that provides an API to the Parsers
* @hideconstructor
2018-06-27 19:52:43 +00:00
*/
class Bowser {
/**
* Creates a {@link Parser} instance
2018-07-04 19:36:46 +00:00
*
2018-07-05 19:44:43 +00:00
* @param {String} UA UserAgent string
* @param {Boolean} [skipParsing=false] Will make the Parser postpone parsing until you ask it
* explicitly. Same as `skipParsing` for {@link Parser}.
2018-07-04 19:36:46 +00:00
* @returns {Parser}
* @throws {Error} when UA is not a String
2016-06-16 10:41:21 +00:00
*
* @example
* const parser = Bowser.getParser(window.navigator.userAgent);
* const result = parser.getResult();
*/
2018-08-02 18:24:08 +00:00
static getParser(UA, skipParsing = false) {
2018-06-30 16:21:09 +00:00
if (typeof UA !== 'string') {
throw new Error('UserAgent should be a string');
}
2018-06-30 14:25:47 +00:00
return new Parser(UA, skipParsing);
}
2018-07-05 19:44:43 +00:00
/**
* Creates a {@link Parser} instance and runs {@link Parser.getResult} immediately
*
* @param UA
* @return {ParsedResult}
*
* @example
* const result = Bowser.parse(window.navigator.userAgent);
2018-07-05 19:44:43 +00:00
*/
2018-06-27 19:52:43 +00:00
static parse(UA) {
2018-07-05 19:58:14 +00:00
return (new Parser(UA)).getResult();
}
2011-04-27 22:14:35 +00:00
static get BROWSER_MAP() {
return BROWSER_MAP;
}
static get ENGINE_MAP() {
return ENGINE_MAP;
}
static get OS_MAP() {
return OS_MAP;
}
static get PLATFORMS_MAP() {
return PLATFORMS_MAP;
}
}
2018-06-27 19:52:43 +00:00
export default Bowser;