本文整理汇总了TypeScript中@cycle/history.makeHistoryDriver函数的典型用法代码示例。如果您正苦于以下问题:TypeScript makeHistoryDriver函数的具体用法?TypeScript makeHistoryDriver怎么用?TypeScript makeHistoryDriver使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了makeHistoryDriver函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: makeRouterDriver
/**
* Instantiates an new router driver function using the same arguments required
* by @cycle/history.
* @public
* @method makeRouterDriver
* @return {routerDriver} The router driver function
*/
function makeRouterDriver(history: History, options?: RouterDriverOptions) {
const historyDriver = makeHistoryDriver(history, options);
/**
* The actual router driver.
* @public
* @typedef {routerDriver}
* @name routerDriver
* @method routerDriver
* @param {Stream<string|Location>} sink$ - This is the same input that the
* history driver would expect.
* @return {routerAPI}
*/
return function routerDriver(sink$: any, runSA: StreamAdapter) {
const history$ = historyDriver(sink$, runSA);
return new RouterSource(history$, [], history$.createHref, options);
};
}
开发者ID:alisd23,项目名称:cyclic-router,代码行数:24,代码来源:makeRouterDriver.ts
示例2: makeRouterDriver
/**
* Instantiates an new router driver function using the same arguments required
* by @cycle/history.
* @public
* @method makeRouterDriver
* @return {routerDriver} The router driver function
*/
function makeRouterDriver(history: History, routeMatcher: RouteMatcher) {
if (!history) {
throw new Error('Cyclic router must be given a history object');
}
const historyDriver = makeHistoryDriver(history);
/**
* The actual router driver.
* @public
* @typedef {routerDriver}
* @name routerDriver
* @method routerDriver
* @param {Stream<string|Location>} sink$ - This is the same input that the
* history driver would expect.
* @return {routerAPI}
*/
return function routerDriver(sink$: any) {
const history$ = historyDriver(sink$).remember();
return new RouterSource(history$, [], history.createHref, routeMatcher);
};
}
开发者ID:ntilwalli,项目名称:cyclic-router,代码行数:27,代码来源:makeRouterDriver.ts
示例3: makeHistoryDriver
['history', () => makeHistoryDriver()],
开发者ID:OpenDirective,项目名称:brian,代码行数:1,代码来源:drivers.ts
示例4: routerify
const mainWithRouter = routerify(main, switchPath, {
historyName: "History",
routerName: "Router"
});
function helixPiDriver(sink$: Stream<Input>) {
const worker = work(require("./worker"));
const driver = makeWebWorkerDriver(worker);
const stringifiedSink$ = sink$.map(event => JSON.stringify(event));
return driver(stringifiedSink$).map(source => JSON.parse(source));
}
const drivers = {
DOM: makeDOMDriver(document.body),
Time: timeDriver,
History: makeHistoryDriver(),
DB: makeIDBDriver("helix-pi", 1, (upgradeDb: any) => {
const projectsStore = upgradeDb.createObjectStore("projects", {
keyPath: "id"
});
projectsStore.createIndex("id", "id");
}),
HelixPi: helixPiDriver
};
run(mainWithRouter, drivers);
开发者ID:helix-pi,项目名称:helix-pi,代码行数:29,代码来源:editor.ts
注:本文中的@cycle/history.makeHistoryDriver函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论