• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

jumpinjackie / mapguide-react-layout / 15165370206

21 May 2025 02:48PM UTC coverage: 22.447%. Remained the same
15165370206

push

github

jumpinjackie
#1555: More internalization of things that shouldn't be in the API documentation.

Also dd merge-modules plugin for typedoc which flattens our public symbol list, which makes better sense as our node module usage story is to import from a flat barrel "mapguide-react-layout" module.

878 of 1206 branches covered (72.8%)

4975 of 22163 relevant lines covered (22.45%)

6.95 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/api/default-components.tsx
1
import * as React from "react";
×
2
import { MouseCoordinatesContainer } from "../containers/mouse-coordinates";
×
3
import { NavigatorContainer } from "../containers/navigator";
×
4
import { ScaleDisplayContainer } from "../containers/scale-display";
×
5
import { TaskPaneContainer } from "../containers/task-pane";
×
6
import { About } from "../components/about";
×
7
import { MeasureContainer } from "../containers/measure";
×
8
import { BaseLayerSwitcherContainer } from "../containers/base-layer-switcher";
×
9
import { MapMenuContainer } from "../containers/map-menu";
×
10
import { CoordinateTrackerContainer } from "../containers/coordinate-tracker";
×
11
import { AddManageLayersContainer } from "../containers/add-manage-layers";
×
12
import { registerComponentFactory, DefaultComponentNames } from "../api/registry/component";
×
13
import { ViewSizeContainer } from "../containers/view-size";
×
14
import { ShareLinkToViewContainer } from '../containers/share-link-to-view';
×
15

16
/**
17
 * Registers the default set of components
18
 */
19
export function registerDefaultComponents(): void {
×
20
    registerComponentFactory(DefaultComponentNames.Navigator, (props) => <NavigatorContainer {...props} />);
×
21
    registerComponentFactory(DefaultComponentNames.MouseCoordinates, (props) => <MouseCoordinatesContainer {...props} />);
×
22
    registerComponentFactory(DefaultComponentNames.ScaleDisplay, (props) => <ScaleDisplayContainer {...props} />);
×
23
    registerComponentFactory(DefaultComponentNames.TaskPane, (props) => <TaskPaneContainer {...props} />);
×
24
    registerComponentFactory(DefaultComponentNames.About, (props) => <About {...props} />);
×
25
    registerComponentFactory(DefaultComponentNames.Measure, (props) => <MeasureContainer {...props} />);
×
26
    registerComponentFactory(DefaultComponentNames.BaseMapSwitcher, (props) => <BaseLayerSwitcherContainer {...props} />);
×
27
    registerComponentFactory(DefaultComponentNames.MapMenu, (props) => <MapMenuContainer {...props} />);
×
28
    registerComponentFactory(DefaultComponentNames.ViewSize, (props) => <ViewSizeContainer {...props} />);
×
29
    registerComponentFactory(DefaultComponentNames.CoordinateTracker, (props) => <CoordinateTrackerContainer {...props} />);
×
30
    registerComponentFactory(DefaultComponentNames.AddManageLayers, (props) => <AddManageLayersContainer {...props} />);
×
31
    registerComponentFactory(DefaultComponentNames.ShareLinkToView, (props) => <ShareLinkToViewContainer {...props} />);
×
32
}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc