Add settings page for managing forecasting API key and URL via UI
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
cae411eae7
commit
1c411e402e
19809 changed files with 1962608 additions and 97 deletions
271
frontend/node_modules/recharts/es6/polar/PolarAngleAxis.js
generated
vendored
Normal file
271
frontend/node_modules/recharts/es6/polar/PolarAngleAxis.js
generated
vendored
Normal file
|
|
@ -0,0 +1,271 @@
|
|||
var _excluded = ["children", "type"],
|
||||
_excluded2 = ["ref"];
|
||||
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
||||
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
||||
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
||||
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
||||
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
||||
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
||||
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
||||
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
||||
import * as React from 'react';
|
||||
import { useEffect, useMemo } from 'react';
|
||||
import { clsx } from 'clsx';
|
||||
import { Layer } from '../container/Layer';
|
||||
import { Dot } from '../shape/Dot';
|
||||
import { Polygon } from '../shape/Polygon';
|
||||
import { Text } from '../component/Text';
|
||||
import { adaptEventsOfChild } from '../util/types';
|
||||
import { degreeToRadian, polarToCartesian } from '../util/PolarUtils';
|
||||
import { addAngleAxis, removeAngleAxis } from '../state/polarAxisSlice';
|
||||
import { useAppDispatch, useAppSelector } from '../state/hooks';
|
||||
import { selectPolarAngleAxisTicks, selectPolarAxisScale } from '../state/selectors/polarScaleSelectors';
|
||||
import { selectAngleAxis, selectPolarViewBox } from '../state/selectors/polarAxisSelectors';
|
||||
import { defaultPolarAngleAxisProps } from './defaultPolarAngleAxisProps';
|
||||
import { useIsPanorama } from '../context/PanoramaContext';
|
||||
import { svgPropertiesNoEvents, svgPropertiesNoEventsFromUnknown } from '../util/svgPropertiesNoEvents';
|
||||
import { resolveDefaultProps } from '../util/resolveDefaultProps';
|
||||
import { ZIndexLayer } from '../zIndex/ZIndexLayer';
|
||||
import { usePolarChartLayout } from '../context/chartLayoutContext';
|
||||
import { noop } from '../util/DataUtils';
|
||||
import { getAxisTypeBasedOnLayout } from '../util/getAxisTypeBasedOnLayout';
|
||||
import { getClassNameFromUnknown } from '../util/getClassNameFromUnknown';
|
||||
var eps = 1e-5;
|
||||
var COS_45 = Math.cos(degreeToRadian(45));
|
||||
var AXIS_TYPE = 'angleAxis';
|
||||
function SetAngleAxisSettings(props) {
|
||||
var dispatch = useAppDispatch();
|
||||
var layout = usePolarChartLayout();
|
||||
var settings = useMemo(() => {
|
||||
var children = props.children,
|
||||
typeFromProps = props.type,
|
||||
rest = _objectWithoutProperties(props, _excluded);
|
||||
var evaluatedType = getAxisTypeBasedOnLayout(layout, 'angleAxis', typeFromProps);
|
||||
if (evaluatedType == null) {
|
||||
return undefined;
|
||||
}
|
||||
return _objectSpread(_objectSpread({}, rest), {}, {
|
||||
type: evaluatedType
|
||||
});
|
||||
}, [props, layout]);
|
||||
var synchronizedSettings = useAppSelector(state => selectAngleAxis(state, settings === null || settings === void 0 ? void 0 : settings.id));
|
||||
var settingsAreSynchronized = settings === synchronizedSettings;
|
||||
useEffect(() => {
|
||||
if (settings == null) {
|
||||
return noop;
|
||||
}
|
||||
dispatch(addAngleAxis(settings));
|
||||
return () => {
|
||||
dispatch(removeAngleAxis(settings));
|
||||
};
|
||||
}, [dispatch, settings]);
|
||||
if (settingsAreSynchronized) {
|
||||
return props.children;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Calculate the coordinate of line endpoint
|
||||
* @param data The data if there are ticks
|
||||
* @param props axis settings
|
||||
* @return (x1, y1): The point close to text,
|
||||
* (x2, y2): The point close to axis
|
||||
*/
|
||||
var getTickLineCoord = (data, props) => {
|
||||
var cx = props.cx,
|
||||
cy = props.cy,
|
||||
radius = props.radius,
|
||||
orientation = props.orientation,
|
||||
tickSize = props.tickSize;
|
||||
var tickLineSize = tickSize || 8;
|
||||
var p1 = polarToCartesian(cx, cy, radius, data.coordinate);
|
||||
var p2 = polarToCartesian(cx, cy, radius + (orientation === 'inner' ? -1 : 1) * tickLineSize, data.coordinate);
|
||||
return {
|
||||
x1: p1.x,
|
||||
y1: p1.y,
|
||||
x2: p2.x,
|
||||
y2: p2.y
|
||||
};
|
||||
};
|
||||
|
||||
/**
|
||||
* Get the text-anchor of each tick
|
||||
* @param data Data of ticks
|
||||
* @param orientation of the axis ticks
|
||||
* @return text-anchor
|
||||
*/
|
||||
var getTickTextAnchor = (data, orientation) => {
|
||||
var cos = Math.cos(degreeToRadian(-data.coordinate));
|
||||
if (cos > eps) {
|
||||
return orientation === 'outer' ? 'start' : 'end';
|
||||
}
|
||||
if (cos < -eps) {
|
||||
return orientation === 'outer' ? 'end' : 'start';
|
||||
}
|
||||
return 'middle';
|
||||
};
|
||||
|
||||
/**
|
||||
* Get the text vertical anchor of each tick
|
||||
* @param data Data of a tick
|
||||
* @return text vertical anchor
|
||||
*/
|
||||
var getTickTextVerticalAnchor = data => {
|
||||
var cos = Math.cos(degreeToRadian(-data.coordinate));
|
||||
var sin = Math.sin(degreeToRadian(-data.coordinate));
|
||||
|
||||
// handle top and bottom sectors: 90±45deg and 270±45deg
|
||||
if (Math.abs(cos) <= COS_45) {
|
||||
// sin > 0: top sector, sin < 0: bottom sector
|
||||
return sin > 0 ? 'start' : 'end';
|
||||
}
|
||||
return 'middle';
|
||||
};
|
||||
var AxisLine = props => {
|
||||
var cx = props.cx,
|
||||
cy = props.cy,
|
||||
radius = props.radius,
|
||||
axisLineType = props.axisLineType,
|
||||
axisLine = props.axisLine,
|
||||
ticks = props.ticks;
|
||||
if (!axisLine) {
|
||||
return null;
|
||||
}
|
||||
var axisLineProps = _objectSpread(_objectSpread({}, svgPropertiesNoEvents(props)), {}, {
|
||||
fill: 'none'
|
||||
}, svgPropertiesNoEvents(axisLine));
|
||||
if (axisLineType === 'circle') {
|
||||
// @ts-expect-error wrong SVG element type
|
||||
return /*#__PURE__*/React.createElement(Dot, _extends({
|
||||
className: "recharts-polar-angle-axis-line"
|
||||
}, axisLineProps, {
|
||||
cx: cx,
|
||||
cy: cy,
|
||||
r: radius
|
||||
}));
|
||||
}
|
||||
var points = ticks.map(entry => polarToCartesian(cx, cy, radius, entry.coordinate));
|
||||
|
||||
// @ts-expect-error wrong SVG element type
|
||||
return /*#__PURE__*/React.createElement(Polygon, _extends({
|
||||
className: "recharts-polar-angle-axis-line"
|
||||
}, axisLineProps, {
|
||||
points: points
|
||||
}));
|
||||
};
|
||||
var TickItemText = _ref => {
|
||||
var tick = _ref.tick,
|
||||
tickProps = _ref.tickProps,
|
||||
value = _ref.value;
|
||||
if (!tick) {
|
||||
return null;
|
||||
}
|
||||
if (/*#__PURE__*/React.isValidElement(tick)) {
|
||||
return /*#__PURE__*/React.cloneElement(tick, tickProps);
|
||||
}
|
||||
if (typeof tick === 'function') {
|
||||
return tick(tickProps);
|
||||
}
|
||||
return /*#__PURE__*/React.createElement(Text, _extends({}, tickProps, {
|
||||
className: "recharts-polar-angle-axis-tick-value"
|
||||
}), value);
|
||||
};
|
||||
var Ticks = props => {
|
||||
var tick = props.tick,
|
||||
tickLine = props.tickLine,
|
||||
tickFormatter = props.tickFormatter,
|
||||
stroke = props.stroke,
|
||||
ticks = props.ticks;
|
||||
var _svgPropertiesNoEvent = svgPropertiesNoEvents(props),
|
||||
ref = _svgPropertiesNoEvent.ref,
|
||||
axisProps = _objectWithoutProperties(_svgPropertiesNoEvent, _excluded2);
|
||||
var customTickProps = svgPropertiesNoEventsFromUnknown(tick);
|
||||
var tickLineProps = _objectSpread(_objectSpread({}, axisProps), {}, {
|
||||
fill: 'none'
|
||||
}, svgPropertiesNoEvents(tickLine));
|
||||
var items = ticks.map((entry, i) => {
|
||||
var lineCoord = getTickLineCoord(entry, props);
|
||||
var textAnchor = getTickTextAnchor(entry, props.orientation);
|
||||
var verticalAnchor = getTickTextVerticalAnchor(entry);
|
||||
var tickProps = _objectSpread(_objectSpread(_objectSpread({}, axisProps), {}, {
|
||||
// @ts-expect-error customTickProps is contributing unknown props
|
||||
textAnchor,
|
||||
verticalAnchor,
|
||||
// @ts-expect-error customTickProps is contributing unknown props
|
||||
stroke: 'none',
|
||||
// @ts-expect-error customTickProps is contributing unknown props
|
||||
fill: stroke
|
||||
}, customTickProps), {}, {
|
||||
index: i,
|
||||
payload: entry,
|
||||
x: lineCoord.x2,
|
||||
y: lineCoord.y2
|
||||
});
|
||||
return /*#__PURE__*/React.createElement(Layer, _extends({
|
||||
className: clsx('recharts-polar-angle-axis-tick', getClassNameFromUnknown(tick)),
|
||||
key: "tick-".concat(entry.coordinate)
|
||||
}, adaptEventsOfChild(props, entry, i)), tickLine && /*#__PURE__*/React.createElement("line", _extends({
|
||||
className: "recharts-polar-angle-axis-tick-line"
|
||||
}, tickLineProps, lineCoord)), /*#__PURE__*/React.createElement(TickItemText, {
|
||||
tick: tick,
|
||||
tickProps: tickProps,
|
||||
value: tickFormatter ? tickFormatter(entry.value, i) : entry.value
|
||||
}));
|
||||
});
|
||||
return /*#__PURE__*/React.createElement(Layer, {
|
||||
className: "recharts-polar-angle-axis-ticks"
|
||||
}, items);
|
||||
};
|
||||
export var PolarAngleAxisWrapper = defaultsAndInputs => {
|
||||
var angleAxisId = defaultsAndInputs.angleAxisId;
|
||||
var viewBox = useAppSelector(selectPolarViewBox);
|
||||
var scale = useAppSelector(state => selectPolarAxisScale(state, 'angleAxis', angleAxisId));
|
||||
var isPanorama = useIsPanorama();
|
||||
var ticks = useAppSelector(state => selectPolarAngleAxisTicks(state, 'angleAxis', angleAxisId, isPanorama));
|
||||
if (viewBox == null || !ticks || !ticks.length || scale == null) {
|
||||
return null;
|
||||
}
|
||||
var props = _objectSpread(_objectSpread(_objectSpread({}, defaultsAndInputs), {}, {
|
||||
scale
|
||||
}, viewBox), {}, {
|
||||
radius: viewBox.outerRadius,
|
||||
ticks
|
||||
});
|
||||
return /*#__PURE__*/React.createElement(ZIndexLayer, {
|
||||
zIndex: props.zIndex
|
||||
}, /*#__PURE__*/React.createElement(Layer, {
|
||||
className: clsx('recharts-polar-angle-axis', AXIS_TYPE, props.className)
|
||||
}, /*#__PURE__*/React.createElement(AxisLine, props), /*#__PURE__*/React.createElement(Ticks, props)));
|
||||
};
|
||||
|
||||
/**
|
||||
* @provides PolarLabelContext
|
||||
* @consumes PolarViewBoxContext
|
||||
*/
|
||||
export function PolarAngleAxis(outsideProps) {
|
||||
var _props$niceTicks;
|
||||
var props = resolveDefaultProps(outsideProps, defaultPolarAngleAxisProps);
|
||||
return /*#__PURE__*/React.createElement(SetAngleAxisSettings, {
|
||||
id: props.angleAxisId,
|
||||
scale: props.scale,
|
||||
type: props.type,
|
||||
dataKey: props.dataKey,
|
||||
unit: undefined,
|
||||
name: props.name,
|
||||
allowDuplicatedCategory: false // Ignoring the prop on purpose because axis calculation behaves as if it was false and Tooltip requires it to be true.
|
||||
,
|
||||
allowDataOverflow: false,
|
||||
reversed: props.reversed,
|
||||
includeHidden: false,
|
||||
allowDecimals: props.allowDecimals,
|
||||
tickCount: props.tickCount,
|
||||
niceTicks: (_props$niceTicks = props.niceTicks) !== null && _props$niceTicks !== void 0 ? _props$niceTicks : 'auto'
|
||||
// @ts-expect-error the type does not match. Is RadiusAxis really expecting what it says?
|
||||
,
|
||||
ticks: props.ticks,
|
||||
tick: props.tick,
|
||||
domain: props.domain
|
||||
}, /*#__PURE__*/React.createElement(PolarAngleAxisWrapper, props));
|
||||
}
|
||||
PolarAngleAxis.displayName = 'PolarAngleAxis';
|
||||
Loading…
Add table
Add a link
Reference in a new issue