|
|
|
|
|
|
|
|
|
|
|
|
|
|
const PATH_REGEXP = new RegExp( |
|
|
[ |
|
|
|
|
|
|
|
|
'(\\\\.)', |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
'([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^()])+)\\))?|\\(((?:\\\\.|[^()])+)\\))([+*?])?|(\\*))', |
|
|
].join( '|' ), |
|
|
'g' |
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function parse( str ) { |
|
|
const tokens = []; |
|
|
let key = 0; |
|
|
let index = 0; |
|
|
let path = ''; |
|
|
let res; |
|
|
|
|
|
while ( ( res = PATH_REGEXP.exec( str ) ) != null ) { |
|
|
const m = res[ 0 ]; |
|
|
const escaped = res[ 1 ]; |
|
|
const offset = res.index; |
|
|
path += str.slice( index, offset ); |
|
|
index = offset + m.length; |
|
|
|
|
|
|
|
|
if ( escaped ) { |
|
|
path += escaped[ 1 ]; |
|
|
continue; |
|
|
} |
|
|
|
|
|
|
|
|
if ( path ) { |
|
|
tokens.push( path ); |
|
|
path = ''; |
|
|
} |
|
|
|
|
|
const prefix = res[ 2 ]; |
|
|
const name = res[ 3 ]; |
|
|
const capture = res[ 4 ]; |
|
|
const group = res[ 5 ]; |
|
|
const suffix = res[ 6 ]; |
|
|
const asterisk = res[ 7 ]; |
|
|
|
|
|
const repeat = suffix === '+' || suffix === '*'; |
|
|
const optional = suffix === '?' || suffix === '*'; |
|
|
const delimiter = prefix || '/'; |
|
|
const pattern = capture || group || ( asterisk ? '.*' : '[^' + delimiter + ']+?' ); |
|
|
|
|
|
tokens.push( { |
|
|
name: name || key++, |
|
|
prefix: prefix || '', |
|
|
delimiter: delimiter, |
|
|
optional: optional, |
|
|
repeat: repeat, |
|
|
pattern: escapeGroup( pattern ), |
|
|
} ); |
|
|
} |
|
|
|
|
|
|
|
|
if ( index < str.length ) { |
|
|
path += str.substring( index ); |
|
|
} |
|
|
|
|
|
|
|
|
if ( path ) { |
|
|
tokens.push( path ); |
|
|
} |
|
|
|
|
|
return tokens; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function compile( str ) { |
|
|
return tokensToFunction( parse( str ) ); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function tokensToFunction( tokens ) { |
|
|
|
|
|
const matches = new Array( tokens.length ); |
|
|
|
|
|
|
|
|
for ( let i = 0; i < tokens.length; i++ ) { |
|
|
if ( typeof tokens[ i ] === 'object' ) { |
|
|
matches[ i ] = new RegExp( '^' + tokens[ i ].pattern + '$' ); |
|
|
} |
|
|
} |
|
|
|
|
|
return function ( obj ) { |
|
|
let path = ''; |
|
|
const data = obj || {}; |
|
|
|
|
|
for ( let i = 0; i < tokens.length; i++ ) { |
|
|
const token = tokens[ i ]; |
|
|
|
|
|
if ( typeof token === 'string' ) { |
|
|
path += token; |
|
|
continue; |
|
|
} |
|
|
|
|
|
const value = data[ token.name ]; |
|
|
|
|
|
if ( value == null ) { |
|
|
if ( token.optional ) { |
|
|
continue; |
|
|
} else { |
|
|
throw new TypeError( 'Expected "' + token.name + '" to be defined' ); |
|
|
} |
|
|
} |
|
|
|
|
|
if ( Array.isArray( value ) ) { |
|
|
if ( ! token.repeat ) { |
|
|
throw new TypeError( |
|
|
'Expected "' + token.name + '" to not repeat, but received "' + value + '"' |
|
|
); |
|
|
} |
|
|
|
|
|
if ( value.length === 0 ) { |
|
|
if ( token.optional ) { |
|
|
continue; |
|
|
} else { |
|
|
throw new TypeError( 'Expected "' + token.name + '" to not be empty' ); |
|
|
} |
|
|
} |
|
|
|
|
|
for ( let j = 0; j < value.length; j++ ) { |
|
|
const segment = encodeURIComponent( value[ j ] ); |
|
|
|
|
|
if ( ! matches[ i ].test( segment ) ) { |
|
|
throw new TypeError( |
|
|
'Expected all "' + |
|
|
token.name + |
|
|
'" to match "' + |
|
|
token.pattern + |
|
|
'", but received "' + |
|
|
segment + |
|
|
'"' |
|
|
); |
|
|
} |
|
|
|
|
|
path += ( j === 0 ? token.prefix : token.delimiter ) + segment; |
|
|
} |
|
|
|
|
|
continue; |
|
|
} |
|
|
|
|
|
const segment = encodeURIComponent( value ); |
|
|
|
|
|
if ( ! matches[ i ].test( segment ) ) { |
|
|
throw new TypeError( |
|
|
'Expected "' + |
|
|
token.name + |
|
|
'" to match "' + |
|
|
token.pattern + |
|
|
'", but received "' + |
|
|
segment + |
|
|
'"' |
|
|
); |
|
|
} |
|
|
|
|
|
path += token.prefix + segment; |
|
|
} |
|
|
|
|
|
return path; |
|
|
}; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function escapeString( str ) { |
|
|
return str.replace( /([.+*?=^!:${}()[\]|/])/g, '\\$1' ); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function escapeGroup( group ) { |
|
|
return group.replace( /([=!:$/()])/g, '\\$1' ); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function attachKeys( re, keys ) { |
|
|
re.keys = keys; |
|
|
return re; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function flags( options ) { |
|
|
return options.sensitive ? '' : 'i'; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function regexpToRegexp( path, keys ) { |
|
|
|
|
|
const groups = path.source.match( /\((?!\?)/g ); |
|
|
|
|
|
if ( groups ) { |
|
|
for ( let i = 0; i < groups.length; i++ ) { |
|
|
keys.push( { |
|
|
name: i, |
|
|
prefix: null, |
|
|
delimiter: null, |
|
|
optional: false, |
|
|
repeat: false, |
|
|
pattern: null, |
|
|
} ); |
|
|
} |
|
|
} |
|
|
|
|
|
return attachKeys( path, keys ); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function arrayToRegexp( path, keys, options ) { |
|
|
const parts = []; |
|
|
|
|
|
for ( let i = 0; i < path.length; i++ ) { |
|
|
parts.push( pathToRegexp( path[ i ], keys, options ).source ); |
|
|
} |
|
|
|
|
|
const regexp = new RegExp( '(?:' + parts.join( '|' ) + ')', flags( options ) ); |
|
|
|
|
|
return attachKeys( regexp, keys ); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function stringToRegexp( path, keys, options ) { |
|
|
const tokens = parse( path ); |
|
|
const re = tokensToRegExp( tokens, options ); |
|
|
|
|
|
|
|
|
for ( let i = 0; i < tokens.length; i++ ) { |
|
|
if ( typeof tokens[ i ] !== 'string' ) { |
|
|
keys.push( tokens[ i ] ); |
|
|
} |
|
|
} |
|
|
|
|
|
return attachKeys( re, keys ); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function tokensToRegExp( tokens, options ) { |
|
|
options = options || {}; |
|
|
|
|
|
const strict = options.strict; |
|
|
const end = options.end !== false; |
|
|
let route = ''; |
|
|
const lastToken = tokens[ tokens.length - 1 ]; |
|
|
const endsWithSlash = typeof lastToken === 'string' && /\/$/.test( lastToken ); |
|
|
|
|
|
|
|
|
for ( const token of tokens ) { |
|
|
if ( typeof token === 'string' ) { |
|
|
route += escapeString( token ); |
|
|
} else { |
|
|
const prefix = escapeString( token.prefix ); |
|
|
let capture = token.pattern; |
|
|
|
|
|
if ( token.repeat ) { |
|
|
capture += '(?:' + prefix + capture + ')*'; |
|
|
} |
|
|
|
|
|
if ( token.optional ) { |
|
|
if ( prefix ) { |
|
|
capture = '(?:' + prefix + '(' + capture + '))?'; |
|
|
} else { |
|
|
capture = '(' + capture + ')?'; |
|
|
} |
|
|
} else { |
|
|
capture = prefix + '(' + capture + ')'; |
|
|
} |
|
|
|
|
|
route += capture; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ( ! strict ) { |
|
|
route = ( endsWithSlash ? route.slice( 0, -2 ) : route ) + '(?:\\/(?=$))?'; |
|
|
} |
|
|
|
|
|
if ( end ) { |
|
|
route += '$'; |
|
|
} else { |
|
|
|
|
|
|
|
|
route += strict && endsWithSlash ? '' : '(?=\\/|$)'; |
|
|
} |
|
|
|
|
|
return new RegExp( '^' + route, flags( options ) ); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function pathToRegexp( path, keys, options ) { |
|
|
keys = keys || []; |
|
|
|
|
|
if ( ! Array.isArray( keys ) ) { |
|
|
options = keys; |
|
|
keys = []; |
|
|
} else if ( ! options ) { |
|
|
options = {}; |
|
|
} |
|
|
|
|
|
if ( path instanceof RegExp ) { |
|
|
return regexpToRegexp( path, keys, options ); |
|
|
} |
|
|
|
|
|
if ( Array.isArray( path ) ) { |
|
|
return arrayToRegexp( path, keys, options ); |
|
|
} |
|
|
|
|
|
return stringToRegexp( path, keys, options ); |
|
|
} |
|
|
|
|
|
pathToRegexp.parse = parse; |
|
|
pathToRegexp.compile = compile; |
|
|
pathToRegexp.tokensToFunction = tokensToFunction; |
|
|
pathToRegexp.tokensToRegExp = tokensToRegExp; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const hasDocument = 'undefined' !== typeof document; |
|
|
const hasWindow = 'undefined' !== typeof window; |
|
|
const hasHistory = 'undefined' !== typeof history; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const clickEvent = hasDocument && document.ontouchstart ? 'touchstart' : 'click'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const isLocation = hasWindow && !! ( window.history.location || window.location ); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function Page() { |
|
|
|
|
|
this.callbacks = []; |
|
|
this.exits = []; |
|
|
this.current = ''; |
|
|
this.len = 0; |
|
|
|
|
|
|
|
|
this._base = ''; |
|
|
this._strict = false; |
|
|
this._running = false; |
|
|
this._hashbang = false; |
|
|
|
|
|
|
|
|
this.clickHandler = this.clickHandler.bind( this ); |
|
|
this._onpopstate = this._onpopstate.bind( this ); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Page.prototype.configure = function ( options ) { |
|
|
const opts = options || {}; |
|
|
|
|
|
this._window = opts.window || ( hasWindow && window ); |
|
|
this._popstate = opts.popstate !== false && hasWindow; |
|
|
this._click = opts.click !== false && hasDocument; |
|
|
this._hashbang = !! opts.hashbang; |
|
|
|
|
|
const _window = this._window; |
|
|
if ( this._popstate ) { |
|
|
_window.addEventListener( 'popstate', this._onpopstate, false ); |
|
|
} else if ( hasWindow ) { |
|
|
_window.removeEventListener( 'popstate', this._onpopstate, false ); |
|
|
} |
|
|
|
|
|
if ( this._click ) { |
|
|
_window.document.addEventListener( clickEvent, this.clickHandler, false ); |
|
|
} else if ( hasDocument ) { |
|
|
_window.document.removeEventListener( clickEvent, this.clickHandler, false ); |
|
|
} |
|
|
|
|
|
if ( this._hashbang && hasWindow && ! hasHistory ) { |
|
|
_window.addEventListener( 'hashchange', this._onpopstate, false ); |
|
|
} else if ( hasWindow ) { |
|
|
_window.removeEventListener( 'hashchange', this._onpopstate, false ); |
|
|
} |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Page.prototype.base = function ( path ) { |
|
|
if ( 0 === arguments.length ) { |
|
|
return this._base; |
|
|
} |
|
|
this._base = path; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Page.prototype._getBase = function () { |
|
|
let base = this._base; |
|
|
if ( base ) { |
|
|
return base; |
|
|
} |
|
|
const loc = hasWindow && this._window && this._window.location; |
|
|
|
|
|
if ( hasWindow && this._hashbang && loc && loc.protocol === 'file:' ) { |
|
|
base = loc.pathname; |
|
|
} |
|
|
|
|
|
return base; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Page.prototype.strict = function ( enable ) { |
|
|
if ( 0 === arguments.length ) { |
|
|
return this._strict; |
|
|
} |
|
|
this._strict = enable; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Page.prototype.start = function ( options ) { |
|
|
const opts = options || {}; |
|
|
this.configure( opts ); |
|
|
|
|
|
if ( false === opts.dispatch ) { |
|
|
return; |
|
|
} |
|
|
this._running = true; |
|
|
|
|
|
let url; |
|
|
if ( isLocation ) { |
|
|
const window = this._window; |
|
|
const loc = window.location; |
|
|
|
|
|
if ( this._hashbang && loc.hash.indexOf( '#!' ) !== -1 ) { |
|
|
url = loc.hash.substr( 2 ) + loc.search; |
|
|
} else if ( this._hashbang ) { |
|
|
url = loc.search + loc.hash; |
|
|
} else { |
|
|
url = loc.pathname + loc.search + loc.hash; |
|
|
} |
|
|
} |
|
|
|
|
|
this.replace( url, null, true, opts.dispatch ); |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Page.prototype.stop = function () { |
|
|
if ( ! this._running ) { |
|
|
return; |
|
|
} |
|
|
this.current = ''; |
|
|
this.len = 0; |
|
|
this._running = false; |
|
|
|
|
|
const window = this._window; |
|
|
this._click && window.document.removeEventListener( clickEvent, this.clickHandler, false ); |
|
|
hasWindow && window.removeEventListener( 'popstate', this._onpopstate, false ); |
|
|
hasWindow && window.removeEventListener( 'hashchange', this._onpopstate, false ); |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Page.prototype.show = function ( path, state, dispatch, push ) { |
|
|
const ctx = new Context( path, state, this ); |
|
|
const prev = this.prevContext; |
|
|
this.prevContext = ctx; |
|
|
this.current = ctx.path; |
|
|
if ( false !== dispatch ) { |
|
|
this.dispatch( ctx, prev ); |
|
|
} |
|
|
if ( false !== ctx.handled && false !== push ) { |
|
|
ctx.pushState(); |
|
|
} |
|
|
return ctx; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Page.prototype.back = function ( path, state ) { |
|
|
if ( this.len > 0 ) { |
|
|
const window = this._window; |
|
|
|
|
|
|
|
|
hasHistory && window.history.back(); |
|
|
this.len--; |
|
|
} else if ( path ) { |
|
|
setTimeout( () => { |
|
|
this.show( path, state ); |
|
|
}, 0 ); |
|
|
} else { |
|
|
setTimeout( () => { |
|
|
this.show( this._getBase(), state ); |
|
|
}, 0 ); |
|
|
} |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Page.prototype.redirect = function ( from, to ) { |
|
|
|
|
|
if ( 'string' === typeof from && 'string' === typeof to ) { |
|
|
page.call( this, from, () => { |
|
|
setTimeout( () => { |
|
|
this.replace( ( to ) ); |
|
|
}, 0 ); |
|
|
} ); |
|
|
} |
|
|
|
|
|
|
|
|
if ( 'string' === typeof from && 'undefined' === typeof to ) { |
|
|
setTimeout( () => { |
|
|
this.replace( from ); |
|
|
}, 0 ); |
|
|
} |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Page.prototype.replace = function ( path, state, init, dispatch ) { |
|
|
const ctx = new Context( path, state, this ); |
|
|
const prev = this.prevContext; |
|
|
this.prevContext = ctx; |
|
|
this.current = ctx.path; |
|
|
ctx.init = init; |
|
|
ctx.save(); |
|
|
if ( false !== dispatch ) { |
|
|
this.dispatch( ctx, prev ); |
|
|
} |
|
|
return ctx; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Page.prototype.dispatch = function ( ctx, prev ) { |
|
|
let i = 0; |
|
|
let j = 0; |
|
|
|
|
|
const nextEnter = () => { |
|
|
if ( ctx.path !== this.current ) { |
|
|
ctx.handled = false; |
|
|
return; |
|
|
} |
|
|
let fn; |
|
|
while ( 1 ) { |
|
|
fn = this.callbacks[ i++ ]; |
|
|
if ( ! fn ) { |
|
|
return unhandled.call( this, ctx ); |
|
|
} |
|
|
if ( fn.match( ctx ) ) { |
|
|
break; |
|
|
} |
|
|
} |
|
|
fn( ctx, nextEnter ); |
|
|
}; |
|
|
|
|
|
const nextExit = () => { |
|
|
let fn; |
|
|
while ( 1 ) { |
|
|
fn = this.exits[ j++ ]; |
|
|
if ( ! fn ) { |
|
|
return nextEnter(); |
|
|
} |
|
|
if ( fn.match( prev ) ) { |
|
|
break; |
|
|
} |
|
|
} |
|
|
fn( prev, nextExit ); |
|
|
}; |
|
|
|
|
|
if ( prev ) { |
|
|
nextExit(); |
|
|
} else { |
|
|
nextEnter(); |
|
|
} |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Page.prototype.exit = function ( path, ...fns ) { |
|
|
if ( typeof path === 'function' ) { |
|
|
return this.exit( '*', path ); |
|
|
} |
|
|
|
|
|
const route = new Route( path, null, this ); |
|
|
for ( const fn of fns ) { |
|
|
this.exits.push( route.middleware( fn ) ); |
|
|
} |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Page.prototype.clickHandler = function ( e ) { |
|
|
if ( 1 !== this._which( e ) ) { |
|
|
return; |
|
|
} |
|
|
|
|
|
if ( e.metaKey || e.ctrlKey || e.shiftKey ) { |
|
|
return; |
|
|
} |
|
|
if ( e.defaultPrevented ) { |
|
|
return; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let el = e.target; |
|
|
const eventPath = e.path || ( e.composedPath ? e.composedPath() : null ); |
|
|
|
|
|
if ( eventPath ) { |
|
|
for ( let i = 0; i < eventPath.length; i++ ) { |
|
|
if ( ! eventPath[ i ].nodeName ) { |
|
|
continue; |
|
|
} |
|
|
if ( eventPath[ i ].nodeName.toUpperCase() !== 'A' ) { |
|
|
continue; |
|
|
} |
|
|
if ( ! eventPath[ i ].href ) { |
|
|
continue; |
|
|
} |
|
|
|
|
|
el = eventPath[ i ]; |
|
|
break; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
while ( el && 'A' !== el.nodeName.toUpperCase() ) { |
|
|
el = el.parentNode; |
|
|
} |
|
|
if ( ! el || 'A' !== el.nodeName.toUpperCase() ) { |
|
|
return; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const svg = typeof el.href === 'object' && el.href.constructor.name === 'SVGAnimatedString'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ( el.hasAttribute( 'download' ) || el.getAttribute( 'rel' ) === 'external' ) { |
|
|
return; |
|
|
} |
|
|
|
|
|
|
|
|
const link = el.getAttribute( 'href' ); |
|
|
if ( ! this._hashbang && this._samePath( el ) && ( el.hash || '#' === link ) ) { |
|
|
return; |
|
|
} |
|
|
|
|
|
|
|
|
if ( link && link.indexOf( 'mailto:' ) > -1 ) { |
|
|
return; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if ( svg ? el.target.baseVal : el.target ) { |
|
|
return; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ( ! svg && ! this.sameOrigin( el.href ) ) { |
|
|
return; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let path = svg ? el.href.baseVal : el.pathname + el.search + ( el.hash || '' ); |
|
|
|
|
|
path = path[ 0 ] !== '/' ? '/' + path : path; |
|
|
|
|
|
|
|
|
const orig = path; |
|
|
const pageBase = this._getBase(); |
|
|
|
|
|
if ( path.indexOf( pageBase ) === 0 ) { |
|
|
path = path.substr( pageBase.length ); |
|
|
} |
|
|
|
|
|
if ( this._hashbang ) { |
|
|
path = path.replace( '#!', '' ); |
|
|
} |
|
|
|
|
|
if ( |
|
|
pageBase && |
|
|
orig === path && |
|
|
( ! isLocation || this._window.location.protocol !== 'file:' ) |
|
|
) { |
|
|
return; |
|
|
} |
|
|
|
|
|
e.preventDefault(); |
|
|
this.show( orig ); |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Page.prototype._onpopstate = ( function () { |
|
|
let loaded = false; |
|
|
if ( ! hasWindow ) { |
|
|
return function () {}; |
|
|
} |
|
|
if ( hasDocument && document.readyState === 'complete' ) { |
|
|
loaded = true; |
|
|
} else { |
|
|
window.addEventListener( 'load', function () { |
|
|
setTimeout( function () { |
|
|
loaded = true; |
|
|
}, 0 ); |
|
|
} ); |
|
|
} |
|
|
return function onpopstate( e ) { |
|
|
if ( ! loaded ) { |
|
|
return; |
|
|
} |
|
|
if ( e.state ) { |
|
|
const path = e.state.path; |
|
|
this.replace( path, e.state ); |
|
|
} else if ( isLocation ) { |
|
|
const loc = this._window.location; |
|
|
this.show( loc.pathname + loc.search + loc.hash, undefined, undefined, false ); |
|
|
} |
|
|
}; |
|
|
} )(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Page.prototype._which = function ( e ) { |
|
|
e = e || ( hasWindow && this._window.event ); |
|
|
return null == e.which ? e.button : e.which; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Page.prototype._toURL = function ( href ) { |
|
|
const window = this._window; |
|
|
if ( typeof URL === 'function' && isLocation ) { |
|
|
return new URL( href, window.location.toString() ); |
|
|
} else if ( hasDocument ) { |
|
|
const anc = window.document.createElement( 'a' ); |
|
|
anc.href = href; |
|
|
return anc; |
|
|
} |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Page.prototype.sameOrigin = function ( href ) { |
|
|
if ( ! href || ! isLocation ) { |
|
|
return false; |
|
|
} |
|
|
|
|
|
const url = this._toURL( href ); |
|
|
const window = this._window; |
|
|
const loc = window.location; |
|
|
return loc.protocol === url.protocol && loc.hostname === url.hostname && loc.port === url.port; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Page.prototype._samePath = function ( url ) { |
|
|
if ( ! isLocation ) { |
|
|
return false; |
|
|
} |
|
|
|
|
|
const window = this._window; |
|
|
const loc = window.location; |
|
|
return url.pathname === loc.pathname && url.search === loc.search; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function createPage() { |
|
|
const pageInstance = new Page(); |
|
|
|
|
|
function pageFn( ) { |
|
|
return page.apply( pageInstance, arguments ); |
|
|
} |
|
|
|
|
|
|
|
|
pageFn.callbacks = pageInstance.callbacks; |
|
|
pageFn.exits = pageInstance.exits; |
|
|
pageFn.base = pageInstance.base.bind( pageInstance ); |
|
|
pageFn.strict = pageInstance.strict.bind( pageInstance ); |
|
|
pageFn.start = pageInstance.start.bind( pageInstance ); |
|
|
pageFn.stop = pageInstance.stop.bind( pageInstance ); |
|
|
pageFn.show = pageInstance.show.bind( pageInstance ); |
|
|
pageFn.back = pageInstance.back.bind( pageInstance ); |
|
|
pageFn.redirect = pageInstance.redirect.bind( pageInstance ); |
|
|
pageFn.replace = pageInstance.replace.bind( pageInstance ); |
|
|
pageFn.dispatch = pageInstance.dispatch.bind( pageInstance ); |
|
|
pageFn.exit = pageInstance.exit.bind( pageInstance ); |
|
|
pageFn.configure = pageInstance.configure.bind( pageInstance ); |
|
|
pageFn.sameOrigin = pageInstance.sameOrigin.bind( pageInstance ); |
|
|
pageFn.clickHandler = pageInstance.clickHandler.bind( pageInstance ); |
|
|
|
|
|
pageFn.create = createPage; |
|
|
|
|
|
Object.defineProperty( pageFn, 'len', { |
|
|
get: function () { |
|
|
return pageInstance.len; |
|
|
}, |
|
|
set: function ( val ) { |
|
|
pageInstance.len = val; |
|
|
}, |
|
|
} ); |
|
|
|
|
|
Object.defineProperty( pageFn, 'current', { |
|
|
get: function () { |
|
|
return pageInstance.current; |
|
|
}, |
|
|
set: function ( val ) { |
|
|
pageInstance.current = val; |
|
|
}, |
|
|
} ); |
|
|
|
|
|
|
|
|
pageFn.Context = Context; |
|
|
pageFn.Route = Route; |
|
|
|
|
|
return pageFn; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function page( path, fn ) { |
|
|
|
|
|
if ( 'function' === typeof path ) { |
|
|
return page.call( this, '*', path ); |
|
|
} |
|
|
|
|
|
|
|
|
if ( 'function' === typeof fn ) { |
|
|
const route = new Route( ( path ), null, this ); |
|
|
for ( let i = 1; i < arguments.length; ++i ) { |
|
|
this.callbacks.push( route.middleware( arguments[ i ] ) ); |
|
|
} |
|
|
|
|
|
} else if ( 'string' === typeof path ) { |
|
|
this[ 'string' === typeof fn ? 'redirect' : 'show' ]( path, fn ); |
|
|
|
|
|
} else { |
|
|
this.start( path ); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function unhandled( ctx ) { |
|
|
if ( ctx.handled ) { |
|
|
return; |
|
|
} |
|
|
let current; |
|
|
const window = this._window; |
|
|
|
|
|
if ( this._hashbang ) { |
|
|
current = isLocation && this._getBase() + window.location.hash.replace( '#!', '' ); |
|
|
} else { |
|
|
current = isLocation && window.location.pathname + window.location.search; |
|
|
} |
|
|
|
|
|
if ( current === ctx.canonicalPath ) { |
|
|
return; |
|
|
} |
|
|
this.stop(); |
|
|
ctx.handled = false; |
|
|
isLocation && ( window.location.href = ctx.canonicalPath ); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function escapeRegExp( s ) { |
|
|
return s.replace( /([.+*?=^!:${}()[\]|/\\])/g, '\\$1' ); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function Context( path, state, pageInstance ) { |
|
|
this.page = pageInstance; |
|
|
const window = this.page._window; |
|
|
const hashbang = this.page._hashbang; |
|
|
|
|
|
|
|
|
path = path.replace( /^[/\\]+/, '/' ); |
|
|
|
|
|
const pageBase = this.page._getBase(); |
|
|
if ( '/' === path[ 0 ] && 0 !== path.indexOf( pageBase ) ) { |
|
|
path = pageBase + ( hashbang ? '#!' : '' ) + path; |
|
|
} |
|
|
const i = path.indexOf( '?' ); |
|
|
|
|
|
this.canonicalPath = path; |
|
|
const re = new RegExp( '^' + escapeRegExp( pageBase ) ); |
|
|
this.path = path.replace( re, '' ) || '/'; |
|
|
if ( hashbang ) { |
|
|
this.path = this.path.replace( '#!', '' ) || '/'; |
|
|
} |
|
|
|
|
|
this.title = hasDocument && window.document.title; |
|
|
this.state = state || {}; |
|
|
this.state.path = path; |
|
|
this.querystring = i !== -1 ? path.slice( i + 1 ) : ''; |
|
|
this.pathname = i !== -1 ? path.slice( 0, i ) : path; |
|
|
this.params = {}; |
|
|
|
|
|
|
|
|
this.hash = ''; |
|
|
if ( ! hashbang ) { |
|
|
if ( this.path.indexOf( '#' ) === -1 ) { |
|
|
return; |
|
|
} |
|
|
const parts = this.path.split( '#' ); |
|
|
this.path = this.pathname = parts[ 0 ]; |
|
|
this.hash = parts[ 1 ] || ''; |
|
|
this.querystring = this.querystring.split( '#' )[ 0 ]; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Context.prototype.pushState = function () { |
|
|
this.page.len++; |
|
|
if ( hasHistory ) { |
|
|
this.page._window.history.pushState( |
|
|
this.state, |
|
|
this.title, |
|
|
this.page._hashbang && this.path !== '/' ? '#!' + this.path : this.canonicalPath |
|
|
); |
|
|
} |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Context.prototype.save = function () { |
|
|
if ( hasHistory ) { |
|
|
this.page._window.history.replaceState( |
|
|
this.state, |
|
|
this.title, |
|
|
this.page._hashbang && this.path !== '/' ? '#!' + this.path : this.canonicalPath |
|
|
); |
|
|
} |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function Route( path, options, pageInstance ) { |
|
|
this.page = pageInstance; |
|
|
const opts = options || {}; |
|
|
opts.strict = opts.strict || this.page._strict; |
|
|
this.path = path === '*' ? '(.*)' : path; |
|
|
this.method = 'GET'; |
|
|
this.keys = []; |
|
|
this.regexp = pathToRegexp( this.path, this.keys, opts ); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Route.prototype.middleware = function ( fn ) { |
|
|
const handler = ( ctx, next ) => fn( ctx, next ); |
|
|
handler.match = ( ctx ) => this.match( ctx.path, ctx.params ); |
|
|
return handler; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Route.prototype.match = function ( path, params ) { |
|
|
const keys = this.keys; |
|
|
const qsIndex = path.indexOf( '?' ); |
|
|
const pathname = qsIndex !== -1 ? path.slice( 0, qsIndex ) : path; |
|
|
const m = this.regexp.exec( decodeURIComponent( pathname ) ); |
|
|
|
|
|
if ( ! m ) { |
|
|
return false; |
|
|
} |
|
|
|
|
|
for ( let i = 1, len = m.length; i < len; ++i ) { |
|
|
const key = keys[ i - 1 ]; |
|
|
const val = m[ i ]; |
|
|
if ( val !== undefined || ! hasOwnProperty.call( params, key.name ) ) { |
|
|
params[ key.name ] = val; |
|
|
} |
|
|
} |
|
|
|
|
|
return true; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const globalPage = createPage(); |
|
|
export default globalPage; |
|
|
|