@teambit/lanes 0.0.386 → 0.0.389
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lanes.ui.runtime.d.ts +11 -0
- package/dist/lanes.ui.runtime.js +30 -14
- package/dist/lanes.ui.runtime.js.map +1 -1
- package/lanes.ui.runtime.tsx +23 -9
- package/package-tar/teambit-lanes-0.0.389.tgz +0 -0
- package/package.json +16 -16
- package/{preview-1660275011373.js → preview-1660534299706.js} +2 -2
- package/package-tar/teambit-lanes-0.0.386.tgz +0 -0
@@ -1,3 +1,4 @@
|
|
1
|
+
/// <reference types="react" />
|
1
2
|
import { RouteProps } from 'react-router-dom';
|
2
3
|
import { Harmony } from '@teambit/harmony';
|
3
4
|
import { UiUI } from '@teambit/ui';
|
@@ -31,6 +32,16 @@ export declare class LanesUI {
|
|
31
32
|
private readonly hostAspect?;
|
32
33
|
private readonly host;
|
33
34
|
private registerHostAspectRoutes;
|
35
|
+
getLaneRoutes(): {
|
36
|
+
path: string;
|
37
|
+
children: JSX.Element;
|
38
|
+
}[];
|
39
|
+
getLaneGallery(): JSX.Element;
|
40
|
+
getMenuRoutes(): {
|
41
|
+
path: string;
|
42
|
+
children: JSX.Element;
|
43
|
+
}[];
|
44
|
+
getLanesOverviewMenu(): JSX.Element;
|
34
45
|
registerMenuWidget(...menuItems: MenuWidget[]): void;
|
35
46
|
private registerLanesRoutes;
|
36
47
|
private registerRoutes;
|
package/dist/lanes.ui.runtime.js
CHANGED
@@ -159,7 +159,12 @@ class LanesUI {
|
|
159
159
|
|
160
160
|
registerHostAspectRoutes() {
|
161
161
|
if (!this.hostAspect) return;
|
162
|
-
this.hostAspect.registerRoutes(
|
162
|
+
this.hostAspect.registerRoutes(this.getLaneRoutes());
|
163
|
+
this.hostAspect.registerMenuRoutes(this.getMenuRoutes());
|
164
|
+
}
|
165
|
+
|
166
|
+
getLaneRoutes() {
|
167
|
+
return [{
|
163
168
|
path: _lanesUi().LanesModel.lanesPrefix,
|
164
169
|
children: /*#__PURE__*/_react().default.createElement(_react().default.Fragment, null, /*#__PURE__*/_react().default.createElement(_reactRouterDom().Route, {
|
165
170
|
path: _lanesUi().LanesModel.lanePath
|
@@ -172,11 +177,7 @@ class LanesUI {
|
|
172
177
|
})
|
173
178
|
}), /*#__PURE__*/_react().default.createElement(_reactRouterDom().Route, {
|
174
179
|
path: "~gallery",
|
175
|
-
element:
|
176
|
-
routeSlot: this.routeSlot,
|
177
|
-
overviewSlot: this.overviewSlot,
|
178
|
-
host: this.lanesHost
|
179
|
-
})
|
180
|
+
element: this.getLaneGallery()
|
180
181
|
}), /*#__PURE__*/_react().default.createElement(_reactRouterDom().Route, {
|
181
182
|
path: "~component/*",
|
182
183
|
element: this.componentUi.getComponentUI(this.host)
|
@@ -187,22 +188,37 @@ class LanesUI {
|
|
187
188
|
path: "*",
|
188
189
|
element: /*#__PURE__*/_react().default.createElement(_designUiPages().NotFoundPage, null)
|
189
190
|
}))
|
190
|
-
}]
|
191
|
-
|
191
|
+
}];
|
192
|
+
}
|
193
|
+
|
194
|
+
getLaneGallery() {
|
195
|
+
return /*#__PURE__*/_react().default.createElement(_lanesUi().LaneGallery, {
|
196
|
+
routeSlot: this.routeSlot,
|
197
|
+
overviewSlot: this.overviewSlot,
|
198
|
+
host: this.lanesHost
|
199
|
+
});
|
200
|
+
}
|
201
|
+
|
202
|
+
getMenuRoutes() {
|
203
|
+
return [{
|
192
204
|
path: _lanesUi().LanesModel.lanesPrefix,
|
193
205
|
children: /*#__PURE__*/_react().default.createElement(_reactRouterDom().Route, {
|
194
206
|
path: `${_lanesUi().LanesModel.lanePath}/*`
|
195
207
|
}, /*#__PURE__*/_react().default.createElement(_reactRouterDom().Route, {
|
196
208
|
path: "*",
|
197
|
-
element:
|
198
|
-
navigationSlot: this.navSlot,
|
199
|
-
widgetSlot: this.menuWidgetSlot
|
200
|
-
})
|
209
|
+
element: this.getLanesOverviewMenu()
|
201
210
|
}), /*#__PURE__*/_react().default.createElement(_reactRouterDom().Route, {
|
202
211
|
path: "~component/*",
|
203
212
|
element: this.componentUi.getMenu(this.host)
|
204
213
|
}))
|
205
|
-
}]
|
214
|
+
}];
|
215
|
+
}
|
216
|
+
|
217
|
+
getLanesOverviewMenu() {
|
218
|
+
return /*#__PURE__*/_react().default.createElement(_lanesUi().LanesOverviewMenu, {
|
219
|
+
navigationSlot: this.navSlot,
|
220
|
+
widgetSlot: this.menuWidgetSlot
|
221
|
+
});
|
206
222
|
}
|
207
223
|
|
208
224
|
registerMenuWidget(...menuItems) {
|
@@ -273,7 +289,7 @@ class LanesUI {
|
|
273
289
|
}
|
274
290
|
|
275
291
|
const lanesUi = new LanesUI(componentUi, routeSlot, navSlot, overviewSlot, menuWidgetSlot, workspace, scope);
|
276
|
-
uiUi.registerRenderHooks({
|
292
|
+
if (uiUi) uiUi.registerRenderHooks({
|
277
293
|
reactContext: lanesUi.renderContext
|
278
294
|
});
|
279
295
|
const drawer = new (_lanesUi().LanesDrawer)({
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["LanesUI","constructor","componentUi","routeSlot","navSlot","menuWidgetSlot","overviewSlot","workspace","scope","children","hostAspect","lanesHost","host","WorkspaceAspect","id","ScopeAspect","registerHostAspectRoutes","registerRoutes","path","LanesModel","lanesPrefix","lanePath","getComponentUI","registerMenuRoutes","getMenu","registerMenuWidget","menuItems","register","registerLanesRoutes","registerNavigation","props","href","exact","order","hide","lanesContext","useLanesContext","viewedLane","readmeComponent","registerRoute","route","registerOverviewLine","lines","routes","provider","uiUi","workspaceUi","scopeUi","sidebarUi","_","harmony","config","String","get","lanesUi","registerRenderHooks","reactContext","renderContext","drawer","LanesDrawer","showScope","registerDrawer","UIAspect","ComponentAspect","SidebarAspect","UIRuntime","Slot","withType","LanesAspect","addRuntime"],"sources":["lanes.ui.runtime.tsx"],"sourcesContent":["import React, { ReactNode } from 'react';\nimport { Route, RouteProps } from 'react-router-dom';\nimport { Slot, Harmony } from '@teambit/harmony';\nimport { UIRuntime, UiUI, UIAspect } from '@teambit/ui';\nimport { LanesAspect } from '@teambit/lanes';\nimport { NavigationSlot, RouteSlot } from '@teambit/ui-foundation.ui.react-router.slot-router';\nimport {\n LanesDrawer,\n LanesHost,\n LaneGallery,\n LanesOrderedNavigationSlot,\n LanesModel,\n LanesOverviewMenu,\n ViewedLaneFromUrl,\n LaneOverviewLineSlot,\n LaneOverviewLine,\n UseLaneMenu,\n useLanesContext,\n LanesNavPlugin,\n LaneReadmeOverview,\n} from '@teambit/lanes.ui.lanes';\nimport { NotFoundPage } from '@teambit/design.ui.pages.not-found';\nimport ScopeAspect, { ScopeUI } from '@teambit/scope';\nimport WorkspaceAspect, { WorkspaceUI } from '@teambit/workspace';\nimport ComponentAspect, { ComponentUI } from '@teambit/component';\nimport SidebarAspect, { SidebarUI } from '@teambit/sidebar';\nimport { MenuWidget, MenuWidgetSlot } from '@teambit/ui-foundation.ui.menu';\n\nexport class LanesUI {\n static dependencies = [UIAspect, ComponentAspect, WorkspaceAspect, ScopeAspect, SidebarAspect];\n static runtime = UIRuntime;\n static slots = [\n Slot.withType<RouteProps>(),\n Slot.withType<LaneOverviewLineSlot>(),\n Slot.withType<NavigationSlot>(),\n Slot.withType<MenuWidgetSlot>(),\n ];\n\n constructor(\n private componentUi: ComponentUI,\n private routeSlot: RouteSlot,\n private navSlot: LanesOrderedNavigationSlot,\n private menuWidgetSlot: MenuWidgetSlot,\n /**\n * overview line slot to add new lines beneath the overview section\n */\n private overviewSlot: LaneOverviewLineSlot,\n private workspace?: WorkspaceUI,\n private scope?: ScopeUI\n ) {\n this.hostAspect = workspace || scope;\n this.lanesHost = workspace ? 'workspace' : 'scope';\n this.host = workspace ? WorkspaceAspect.id : ScopeAspect.id;\n }\n\n private readonly lanesHost: LanesHost;\n private readonly hostAspect?: WorkspaceUI | ScopeUI;\n private readonly host: string;\n\n private registerHostAspectRoutes() {\n if (!this.hostAspect) return;\n this.hostAspect.registerRoutes([\n {\n path: LanesModel.lanesPrefix,\n children: (\n <>\n <Route path={LanesModel.lanePath}>\n <Route\n index\n element={\n <LaneReadmeOverview host={this.host} overviewSlot={this.overviewSlot} routeSlot={this.routeSlot} />\n }\n />\n <Route\n path=\"~gallery\"\n element={\n <LaneGallery routeSlot={this.routeSlot} overviewSlot={this.overviewSlot} host={this.lanesHost} />\n }\n />\n <Route path=\"~component/*\" element={this.componentUi.getComponentUI(this.host)} />\n <Route path=\"*\" element={<NotFoundPage />} />\n </Route>\n <Route path=\"*\" element={<NotFoundPage />} />\n </>\n ),\n },\n ]);\n this.hostAspect.registerMenuRoutes([\n {\n path: LanesModel.lanesPrefix,\n children: (\n <Route path={`${LanesModel.lanePath}/*`}>\n <Route\n path=\"*\"\n element={<LanesOverviewMenu navigationSlot={this.navSlot} widgetSlot={this.menuWidgetSlot} />}\n />\n <Route path=\"~component/*\" element={this.componentUi.getMenu(this.host)} />\n </Route>\n ),\n },\n ]);\n }\n\n registerMenuWidget(...menuItems: MenuWidget[]) {\n this.menuWidgetSlot.register(menuItems);\n }\n\n private registerLanesRoutes() {\n this.registerNavigation([\n {\n props: {\n href: '.',\n exact: true,\n children: 'README',\n },\n order: 1,\n hide: () => {\n const lanesContext = useLanesContext();\n return !lanesContext?.viewedLane?.readmeComponent;\n },\n },\n {\n props: {\n href: '~gallery',\n children: 'Gallery',\n exact: true,\n },\n order: 1,\n },\n ]);\n }\n\n private registerRoutes() {\n this.registerHostAspectRoutes();\n this.registerLanesRoutes();\n }\n\n private renderContext = ({ children }: { children: ReactNode }) => {\n return <ViewedLaneFromUrl>{children}</ViewedLaneFromUrl>;\n };\n\n registerRoute(route: RouteProps) {\n this.routeSlot.register(route);\n return this;\n }\n\n /**\n * register a new line beneath the lane overview section.\n */\n registerOverviewLine(...lines: LaneOverviewLine[]) {\n this.overviewSlot.register(lines);\n return this;\n }\n\n registerNavigation(routes: LanesNavPlugin[]) {\n this.navSlot.register(routes);\n }\n\n static async provider(\n [uiUi, componentUi, workspaceUi, scopeUi, sidebarUi]: [UiUI, ComponentUI, WorkspaceUI, ScopeUI, SidebarUI],\n _,\n [routeSlot, overviewSlot, navSlot, menuWidgetSlot]: [\n RouteSlot,\n LaneOverviewLineSlot,\n LanesOrderedNavigationSlot,\n MenuWidgetSlot\n ],\n harmony: Harmony\n ) {\n const { config } = harmony;\n const host = String(config.get('teambit.harmony/bit'));\n let workspace: WorkspaceUI | undefined;\n let scope: ScopeUI | undefined;\n if (host === WorkspaceAspect.id) {\n workspace = workspaceUi;\n }\n if (host === ScopeAspect.id) {\n scope = scopeUi;\n }\n const lanesUi = new LanesUI(componentUi, routeSlot, navSlot, overviewSlot, menuWidgetSlot, workspace, scope);\n uiUi.registerRenderHooks({ reactContext: lanesUi.renderContext });\n const drawer = new LanesDrawer({ showScope: lanesUi.lanesHost === 'workspace' });\n sidebarUi.registerDrawer(drawer);\n lanesUi.registerRoutes();\n lanesUi.registerMenuWidget(() => <UseLaneMenu host={lanesUi.lanesHost} />);\n return lanesUi;\n }\n}\n\nexport default LanesUI;\n\nLanesAspect.addRuntime(LanesUI);\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;AAAA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AACA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AACA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AACA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AACA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AAEA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AAeA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AACA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AACA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AACA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AACA;EAAA;;EAAA;IAAA;EAAA;;EAAA;AAAA;;AAGO,MAAMA,OAAN,CAAc;EAUnBC,WAAW,CACDC,WADC,EAEDC,SAFC,EAGDC,OAHC,EAIDC,cAJC;EAKT;AACJ;AACA;EACYC,YARC,EASDC,SATC,EAUDC,KAVC,EAWT;IAAA,KAVQN,WAUR,GAVQA,WAUR;IAAA,KATQC,SASR,GATQA,SASR;IAAA,KARQC,OAQR,GARQA,OAQR;IAAA,KAPQC,cAOR,GAPQA,cAOR;IAAA,KAHQC,YAGR,GAHQA,YAGR;IAAA,KAFQC,SAER,GAFQA,SAER;IAAA,KADQC,KACR,GADQA,KACR;IAAA;IAAA;IAAA;IAAA,uDAwFsB,CAAC;MAAEC;IAAF,CAAD,KAA2C;MACjE,oBAAO,+BAAC,4BAAD,QAAoBA,QAApB,CAAP;IACD,CA1FC;IACA,KAAKC,UAAL,GAAkBH,SAAS,IAAIC,KAA/B;IACA,KAAKG,SAAL,GAAiBJ,SAAS,GAAG,WAAH,GAAiB,OAA3C;IACA,KAAKK,IAAL,GAAYL,SAAS,GAAGM,oBAAA,CAAgBC,EAAnB,GAAwBC,gBAAA,CAAYD,EAAzD;EACD;;EAMOE,wBAAwB,GAAG;IACjC,IAAI,CAAC,KAAKN,UAAV,EAAsB;IACtB,KAAKA,UAAL,CAAgBO,cAAhB,CAA+B,CAC7B;MACEC,IAAI,EAAEC,qBAAA,CAAWC,WADnB;MAEEX,QAAQ,eACN,6EACE,+BAAC,uBAAD;QAAO,IAAI,EAAEU,qBAAA,CAAWE;MAAxB,gBACE,+BAAC,uBAAD;QACE,KAAK,MADP;QAEE,OAAO,eACL,+BAAC,6BAAD;UAAoB,IAAI,EAAE,KAAKT,IAA/B;UAAqC,YAAY,EAAE,KAAKN,YAAxD;UAAsE,SAAS,EAAE,KAAKH;QAAtF;MAHJ,EADF,eAOE,+BAAC,uBAAD;QACE,IAAI,EAAC,UADP;QAEE,OAAO,eACL,+BAAC,sBAAD;UAAa,SAAS,EAAE,KAAKA,SAA7B;UAAwC,YAAY,EAAE,KAAKG,YAA3D;UAAyE,IAAI,EAAE,KAAKK;QAApF;MAHJ,EAPF,eAaE,+BAAC,uBAAD;QAAO,IAAI,EAAC,cAAZ;QAA2B,OAAO,EAAE,KAAKT,WAAL,CAAiBoB,cAAjB,CAAgC,KAAKV,IAArC;MAApC,EAbF,eAcE,+BAAC,uBAAD;QAAO,IAAI,EAAC,GAAZ;QAAgB,OAAO,eAAE,+BAAC,6BAAD;MAAzB,EAdF,CADF,eAiBE,+BAAC,uBAAD;QAAO,IAAI,EAAC,GAAZ;QAAgB,OAAO,eAAE,+BAAC,6BAAD;MAAzB,EAjBF;IAHJ,CAD6B,CAA/B;IA0BA,KAAKF,UAAL,CAAgBa,kBAAhB,CAAmC,CACjC;MACEL,IAAI,EAAEC,qBAAA,CAAWC,WADnB;MAEEX,QAAQ,eACN,+BAAC,uBAAD;QAAO,IAAI,EAAG,GAAEU,qBAAA,CAAWE,QAAS;MAApC,gBACE,+BAAC,uBAAD;QACE,IAAI,EAAC,GADP;QAEE,OAAO,eAAE,+BAAC,4BAAD;UAAmB,cAAc,EAAE,KAAKjB,OAAxC;UAAiD,UAAU,EAAE,KAAKC;QAAlE;MAFX,EADF,eAKE,+BAAC,uBAAD;QAAO,IAAI,EAAC,cAAZ;QAA2B,OAAO,EAAE,KAAKH,WAAL,CAAiBsB,OAAjB,CAAyB,KAAKZ,IAA9B;MAApC,EALF;IAHJ,CADiC,CAAnC;EAcD;;EAEDa,kBAAkB,CAAC,GAAGC,SAAJ,EAA6B;IAC7C,KAAKrB,cAAL,CAAoBsB,QAApB,CAA6BD,SAA7B;EACD;;EAEOE,mBAAmB,GAAG;IAC5B,KAAKC,kBAAL,CAAwB,CACtB;MACEC,KAAK,EAAE;QACLC,IAAI,EAAE,GADD;QAELC,KAAK,EAAE,IAFF;QAGLvB,QAAQ,EAAE;MAHL,CADT;MAMEwB,KAAK,EAAE,CANT;MAOEC,IAAI,EAAE,MAAM;QAAA;;QACV,MAAMC,YAAY,GAAG,IAAAC,0BAAA,GAArB;QACA,OAAO,EAACD,YAAD,aAACA,YAAD,wCAACA,YAAY,CAAEE,UAAf,kDAAC,sBAA0BC,eAA3B,CAAP;MACD;IAVH,CADsB,EAatB;MACER,KAAK,EAAE;QACLC,IAAI,EAAE,UADD;QAELtB,QAAQ,EAAE,SAFL;QAGLuB,KAAK,EAAE;MAHF,CADT;MAMEC,KAAK,EAAE;IANT,CAbsB,CAAxB;EAsBD;;EAEOhB,cAAc,GAAG;IACvB,KAAKD,wBAAL;IACA,KAAKY,mBAAL;EACD;;EAMDW,aAAa,CAACC,KAAD,EAAoB;IAC/B,KAAKrC,SAAL,CAAewB,QAAf,CAAwBa,KAAxB;IACA,OAAO,IAAP;EACD;EAED;AACF;AACA;;;EACEC,oBAAoB,CAAC,GAAGC,KAAJ,EAA+B;IACjD,KAAKpC,YAAL,CAAkBqB,QAAlB,CAA2Be,KAA3B;IACA,OAAO,IAAP;EACD;;EAEDb,kBAAkB,CAACc,MAAD,EAA2B;IAC3C,KAAKvC,OAAL,CAAauB,QAAb,CAAsBgB,MAAtB;EACD;;EAEoB,aAARC,QAAQ,CACnB,CAACC,IAAD,EAAO3C,WAAP,EAAoB4C,WAApB,EAAiCC,OAAjC,EAA0CC,SAA1C,CADmB,EAEnBC,CAFmB,EAGnB,CAAC9C,SAAD,EAAYG,YAAZ,EAA0BF,OAA1B,EAAmCC,cAAnC,CAHmB,EASnB6C,OATmB,EAUnB;IACA,MAAM;MAAEC;IAAF,IAAaD,OAAnB;IACA,MAAMtC,IAAI,GAAGwC,MAAM,CAACD,MAAM,CAACE,GAAP,CAAW,qBAAX,CAAD,CAAnB;IACA,IAAI9C,SAAJ;IACA,IAAIC,KAAJ;;IACA,IAAII,IAAI,KAAKC,oBAAA,CAAgBC,EAA7B,EAAiC;MAC/BP,SAAS,GAAGuC,WAAZ;IACD;;IACD,IAAIlC,IAAI,KAAKG,gBAAA,CAAYD,EAAzB,EAA6B;MAC3BN,KAAK,GAAGuC,OAAR;IACD;;IACD,MAAMO,OAAO,GAAG,IAAItD,OAAJ,CAAYE,WAAZ,EAAyBC,SAAzB,EAAoCC,OAApC,EAA6CE,YAA7C,EAA2DD,cAA3D,EAA2EE,SAA3E,EAAsFC,KAAtF,CAAhB;IACAqC,IAAI,CAACU,mBAAL,CAAyB;MAAEC,YAAY,EAAEF,OAAO,CAACG;IAAxB,CAAzB;IACA,MAAMC,MAAM,GAAG,KAAIC,sBAAJ,EAAgB;MAAEC,SAAS,EAAEN,OAAO,CAAC3C,SAAR,KAAsB;IAAnC,CAAhB,CAAf;IACAqC,SAAS,CAACa,cAAV,CAAyBH,MAAzB;IACAJ,OAAO,CAACrC,cAAR;IACAqC,OAAO,CAAC7B,kBAAR,CAA2B,mBAAM,+BAAC,sBAAD;MAAa,IAAI,EAAE6B,OAAO,CAAC3C;IAA3B,EAAjC;IACA,OAAO2C,OAAP;EACD;;AA9JkB;;;gCAARtD,O,kBACW,CAAC8D,cAAD,EAAWC,oBAAX,EAA4BlD,oBAA5B,EAA6CE,gBAA7C,EAA0DiD,kBAA1D,C;gCADXhE,O,aAEMiE,e;gCAFNjE,O,WAGI,CACbkE,eAAA,CAAKC,QAAL,EADa,EAEbD,eAAA,CAAKC,QAAL,EAFa,EAGbD,eAAA,CAAKC,QAAL,EAHa,EAIbD,eAAA,CAAKC,QAAL,EAJa,C;eA8JFnE,O;;;AAEfoE,oBAAA,CAAYC,UAAZ,CAAuBrE,OAAvB"}
|
1
|
+
{"version":3,"names":["LanesUI","constructor","componentUi","routeSlot","navSlot","menuWidgetSlot","overviewSlot","workspace","scope","children","hostAspect","lanesHost","host","WorkspaceAspect","id","ScopeAspect","registerHostAspectRoutes","registerRoutes","getLaneRoutes","registerMenuRoutes","getMenuRoutes","path","LanesModel","lanesPrefix","lanePath","getLaneGallery","getComponentUI","getLanesOverviewMenu","getMenu","registerMenuWidget","menuItems","register","registerLanesRoutes","registerNavigation","props","href","exact","order","hide","lanesContext","useLanesContext","viewedLane","readmeComponent","registerRoute","route","registerOverviewLine","lines","routes","provider","uiUi","workspaceUi","scopeUi","sidebarUi","_","harmony","config","String","get","lanesUi","registerRenderHooks","reactContext","renderContext","drawer","LanesDrawer","showScope","registerDrawer","UIAspect","ComponentAspect","SidebarAspect","UIRuntime","Slot","withType","LanesAspect","addRuntime"],"sources":["lanes.ui.runtime.tsx"],"sourcesContent":["import React, { ReactNode } from 'react';\nimport { Route, RouteProps } from 'react-router-dom';\nimport { Slot, Harmony } from '@teambit/harmony';\nimport { UIRuntime, UiUI, UIAspect } from '@teambit/ui';\nimport { LanesAspect } from '@teambit/lanes';\nimport { NavigationSlot, RouteSlot } from '@teambit/ui-foundation.ui.react-router.slot-router';\nimport {\n LanesDrawer,\n LanesHost,\n LaneGallery,\n LanesOrderedNavigationSlot,\n LanesModel,\n LanesOverviewMenu,\n ViewedLaneFromUrl,\n LaneOverviewLineSlot,\n LaneOverviewLine,\n UseLaneMenu,\n useLanesContext,\n LanesNavPlugin,\n LaneReadmeOverview,\n} from '@teambit/lanes.ui.lanes';\nimport { NotFoundPage } from '@teambit/design.ui.pages.not-found';\nimport ScopeAspect, { ScopeUI } from '@teambit/scope';\nimport WorkspaceAspect, { WorkspaceUI } from '@teambit/workspace';\nimport ComponentAspect, { ComponentUI } from '@teambit/component';\nimport SidebarAspect, { SidebarUI } from '@teambit/sidebar';\nimport { MenuWidget, MenuWidgetSlot } from '@teambit/ui-foundation.ui.menu';\n\nexport class LanesUI {\n static dependencies = [UIAspect, ComponentAspect, WorkspaceAspect, ScopeAspect, SidebarAspect];\n static runtime = UIRuntime;\n static slots = [\n Slot.withType<RouteProps>(),\n Slot.withType<LaneOverviewLineSlot>(),\n Slot.withType<NavigationSlot>(),\n Slot.withType<MenuWidgetSlot>(),\n ];\n\n constructor(\n private componentUi: ComponentUI,\n private routeSlot: RouteSlot,\n private navSlot: LanesOrderedNavigationSlot,\n private menuWidgetSlot: MenuWidgetSlot,\n /**\n * overview line slot to add new lines beneath the overview section\n */\n private overviewSlot: LaneOverviewLineSlot,\n private workspace?: WorkspaceUI,\n private scope?: ScopeUI\n ) {\n this.hostAspect = workspace || scope;\n this.lanesHost = workspace ? 'workspace' : 'scope';\n this.host = workspace ? WorkspaceAspect.id : ScopeAspect.id;\n }\n\n private readonly lanesHost: LanesHost;\n private readonly hostAspect?: WorkspaceUI | ScopeUI;\n private readonly host: string;\n\n private registerHostAspectRoutes() {\n if (!this.hostAspect) return;\n this.hostAspect.registerRoutes(this.getLaneRoutes());\n this.hostAspect.registerMenuRoutes(this.getMenuRoutes());\n }\n\n getLaneRoutes() {\n return [\n {\n path: LanesModel.lanesPrefix,\n children: (\n <>\n <Route path={LanesModel.lanePath}>\n <Route\n index\n element={\n <LaneReadmeOverview host={this.host} overviewSlot={this.overviewSlot} routeSlot={this.routeSlot} />\n }\n />\n <Route\n path=\"~gallery\"\n element={this.getLaneGallery()}\n />\n <Route path=\"~component/*\" element={this.componentUi.getComponentUI(this.host)} />\n <Route path=\"*\" element={<NotFoundPage />} />\n </Route>\n <Route path=\"*\" element={<NotFoundPage />} />\n </>\n ),\n },\n ];\n }\n\n getLaneGallery() {\n return <LaneGallery routeSlot={this.routeSlot} overviewSlot={this.overviewSlot} host={this.lanesHost} />;\n }\n\n getMenuRoutes() {\n return [\n {\n path: LanesModel.lanesPrefix,\n children: (\n <Route path={`${LanesModel.lanePath}/*`}>\n <Route\n path=\"*\"\n element={this.getLanesOverviewMenu()}\n />\n <Route path=\"~component/*\" element={this.componentUi.getMenu(this.host)} />\n </Route>\n ),\n },\n ];\n }\n\n getLanesOverviewMenu() {\n return <LanesOverviewMenu navigationSlot={this.navSlot} widgetSlot={this.menuWidgetSlot} />;\n }\n\n registerMenuWidget(...menuItems: MenuWidget[]) {\n this.menuWidgetSlot.register(menuItems);\n }\n\n private registerLanesRoutes() {\n this.registerNavigation([\n {\n props: {\n href: '.',\n exact: true,\n children: 'README',\n },\n order: 1,\n hide: () => {\n const lanesContext = useLanesContext();\n return !lanesContext?.viewedLane?.readmeComponent;\n },\n },\n {\n props: {\n href: '~gallery',\n children: 'Gallery',\n exact: true,\n },\n order: 1,\n },\n ]);\n }\n\n private registerRoutes() {\n this.registerHostAspectRoutes();\n this.registerLanesRoutes();\n }\n\n private renderContext = ({ children }: { children: ReactNode }) => {\n return <ViewedLaneFromUrl>{children}</ViewedLaneFromUrl>;\n };\n\n registerRoute(route: RouteProps) {\n this.routeSlot.register(route);\n return this;\n }\n\n /**\n * register a new line beneath the lane overview section.\n */\n registerOverviewLine(...lines: LaneOverviewLine[]) {\n this.overviewSlot.register(lines);\n return this;\n }\n\n registerNavigation(routes: LanesNavPlugin[]) {\n this.navSlot.register(routes);\n }\n\n static async provider(\n [uiUi, componentUi, workspaceUi, scopeUi, sidebarUi]: [UiUI, ComponentUI, WorkspaceUI, ScopeUI, SidebarUI],\n _,\n [routeSlot, overviewSlot, navSlot, menuWidgetSlot]: [\n RouteSlot,\n LaneOverviewLineSlot,\n LanesOrderedNavigationSlot,\n MenuWidgetSlot\n ],\n harmony: Harmony\n ) {\n const { config } = harmony;\n const host = String(config.get('teambit.harmony/bit'));\n let workspace: WorkspaceUI | undefined;\n let scope: ScopeUI | undefined;\n if (host === WorkspaceAspect.id) {\n workspace = workspaceUi;\n }\n if (host === ScopeAspect.id) {\n scope = scopeUi;\n }\n const lanesUi = new LanesUI(componentUi, routeSlot, navSlot, overviewSlot, menuWidgetSlot, workspace, scope);\n if (uiUi) uiUi.registerRenderHooks({ reactContext: lanesUi.renderContext });\n const drawer = new LanesDrawer({ showScope: lanesUi.lanesHost === 'workspace' });\n sidebarUi.registerDrawer(drawer);\n lanesUi.registerRoutes();\n lanesUi.registerMenuWidget(() => <UseLaneMenu host={lanesUi.lanesHost} />);\n return lanesUi;\n }\n}\n\nexport default LanesUI;\n\nLanesAspect.addRuntime(LanesUI);\n"],"mappings":"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"}
|
package/lanes.ui.runtime.tsx
CHANGED
@@ -59,7 +59,12 @@ export class LanesUI {
|
|
59
59
|
|
60
60
|
private registerHostAspectRoutes() {
|
61
61
|
if (!this.hostAspect) return;
|
62
|
-
this.hostAspect.registerRoutes(
|
62
|
+
this.hostAspect.registerRoutes(this.getLaneRoutes());
|
63
|
+
this.hostAspect.registerMenuRoutes(this.getMenuRoutes());
|
64
|
+
}
|
65
|
+
|
66
|
+
getLaneRoutes() {
|
67
|
+
return [
|
63
68
|
{
|
64
69
|
path: LanesModel.lanesPrefix,
|
65
70
|
children: (
|
@@ -73,9 +78,7 @@ export class LanesUI {
|
|
73
78
|
/>
|
74
79
|
<Route
|
75
80
|
path="~gallery"
|
76
|
-
element={
|
77
|
-
<LaneGallery routeSlot={this.routeSlot} overviewSlot={this.overviewSlot} host={this.lanesHost} />
|
78
|
-
}
|
81
|
+
element={this.getLaneGallery()}
|
79
82
|
/>
|
80
83
|
<Route path="~component/*" element={this.componentUi.getComponentUI(this.host)} />
|
81
84
|
<Route path="*" element={<NotFoundPage />} />
|
@@ -84,21 +87,32 @@ export class LanesUI {
|
|
84
87
|
</>
|
85
88
|
),
|
86
89
|
},
|
87
|
-
]
|
88
|
-
|
90
|
+
];
|
91
|
+
}
|
92
|
+
|
93
|
+
getLaneGallery() {
|
94
|
+
return <LaneGallery routeSlot={this.routeSlot} overviewSlot={this.overviewSlot} host={this.lanesHost} />;
|
95
|
+
}
|
96
|
+
|
97
|
+
getMenuRoutes() {
|
98
|
+
return [
|
89
99
|
{
|
90
100
|
path: LanesModel.lanesPrefix,
|
91
101
|
children: (
|
92
102
|
<Route path={`${LanesModel.lanePath}/*`}>
|
93
103
|
<Route
|
94
104
|
path="*"
|
95
|
-
element={
|
105
|
+
element={this.getLanesOverviewMenu()}
|
96
106
|
/>
|
97
107
|
<Route path="~component/*" element={this.componentUi.getMenu(this.host)} />
|
98
108
|
</Route>
|
99
109
|
),
|
100
110
|
},
|
101
|
-
]
|
111
|
+
];
|
112
|
+
}
|
113
|
+
|
114
|
+
getLanesOverviewMenu() {
|
115
|
+
return <LanesOverviewMenu navigationSlot={this.navSlot} widgetSlot={this.menuWidgetSlot} />;
|
102
116
|
}
|
103
117
|
|
104
118
|
registerMenuWidget(...menuItems: MenuWidget[]) {
|
@@ -178,7 +192,7 @@ export class LanesUI {
|
|
178
192
|
scope = scopeUi;
|
179
193
|
}
|
180
194
|
const lanesUi = new LanesUI(componentUi, routeSlot, navSlot, overviewSlot, menuWidgetSlot, workspace, scope);
|
181
|
-
uiUi.registerRenderHooks({ reactContext: lanesUi.renderContext });
|
195
|
+
if (uiUi) uiUi.registerRenderHooks({ reactContext: lanesUi.renderContext });
|
182
196
|
const drawer = new LanesDrawer({ showScope: lanesUi.lanesHost === 'workspace' });
|
183
197
|
sidebarUi.registerDrawer(drawer);
|
184
198
|
lanesUi.registerRoutes();
|
Binary file
|
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@teambit/lanes",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.389",
|
4
4
|
"homepage": "https://bit.dev/teambit/lanes/lanes",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"componentId": {
|
7
7
|
"scope": "teambit.lanes",
|
8
8
|
"name": "lanes",
|
9
|
-
"version": "0.0.
|
9
|
+
"version": "0.0.389"
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"chalk": "2.4.2",
|
@@ -18,23 +18,23 @@
|
|
18
18
|
"core-js": "^3.0.0",
|
19
19
|
"@teambit/harmony": "0.3.3",
|
20
20
|
"@teambit/bit-error": "0.0.394",
|
21
|
-
"@teambit/lane-id": "0.0.
|
22
|
-
"@teambit/cli": "0.0.
|
23
|
-
"@teambit/merging": "0.0.
|
24
|
-
"@teambit/scope": "0.0.
|
25
|
-
"@teambit/workspace": "0.0.
|
26
|
-
"@teambit/graphql": "0.0.
|
27
|
-
"@teambit/community": "0.0.
|
28
|
-
"@teambit/component": "0.0.
|
29
|
-
"@teambit/lanes.modules.diff": "0.0.
|
21
|
+
"@teambit/lane-id": "0.0.64",
|
22
|
+
"@teambit/cli": "0.0.545",
|
23
|
+
"@teambit/merging": "0.0.132",
|
24
|
+
"@teambit/scope": "0.0.817",
|
25
|
+
"@teambit/workspace": "0.0.817",
|
26
|
+
"@teambit/graphql": "0.0.817",
|
27
|
+
"@teambit/community": "0.0.93",
|
28
|
+
"@teambit/component": "0.0.817",
|
29
|
+
"@teambit/lanes.modules.diff": "0.0.174",
|
30
30
|
"@teambit/legacy-bit-id": "0.0.402",
|
31
|
-
"@teambit/logger": "0.0.
|
31
|
+
"@teambit/logger": "0.0.638",
|
32
32
|
"@teambit/design.ui.pages.not-found": "0.0.356",
|
33
|
-
"@teambit/lanes.ui.lanes": "0.0.
|
34
|
-
"@teambit/sidebar": "0.0.
|
33
|
+
"@teambit/lanes.ui.lanes": "0.0.114",
|
34
|
+
"@teambit/sidebar": "0.0.817",
|
35
35
|
"@teambit/ui-foundation.ui.menu": "0.0.487",
|
36
36
|
"@teambit/ui-foundation.ui.react-router.slot-router": "0.0.490",
|
37
|
-
"@teambit/ui": "0.0.
|
37
|
+
"@teambit/ui": "0.0.817",
|
38
38
|
"@teambit/component-id": "0.0.405"
|
39
39
|
},
|
40
40
|
"devDependencies": {
|
@@ -51,7 +51,7 @@
|
|
51
51
|
},
|
52
52
|
"peerDependencies": {
|
53
53
|
"react-router-dom": "^6.0.0",
|
54
|
-
"@teambit/legacy": "1.0.
|
54
|
+
"@teambit/legacy": "1.0.328",
|
55
55
|
"react-dom": "^16.8.0 || ^17.0.0",
|
56
56
|
"react": "^16.8.0 || ^17.0.0"
|
57
57
|
},
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.lanes_lanes@0.0.
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.lanes_lanes@0.0.
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.lanes_lanes@0.0.389/dist/lanes.composition.js';
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.lanes_lanes@0.0.389/dist/lanes.docs.mdx';
|
3
3
|
|
4
4
|
export const compositions = [compositions_0];
|
5
5
|
export const overview = [overview_0];
|
Binary file
|