mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-28 09:21:00 +01:00
* feat: add bookmark widget * fix: item component type issue, widget-ordered-object-list-input item component issue * feat: add button in items list * wip * wip: bookmark options dnd * wip: improve widget sortable item list * feat: add sortable item list input to widget edit modal * feat: implement bookmark widget * chore: address pull request feedback * fix: format issues * fix: lockfile not up to date * fix: import configuration missing and apps not imported * fix: bookmark items not sorted * feat: add flex layouts to bookmark widget * fix: deepsource issue * fix: add missing layout bookmarks old-import options mapping --------- Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
29 lines
1.1 KiB
TypeScript
29 lines
1.1 KiB
TypeScript
import type { WidgetOptionType } from "../options";
|
|
import { WidgetAppInput } from "./widget-app-input";
|
|
import { WidgetLocationInput } from "./widget-location-input";
|
|
import { WidgetMultiTextInput } from "./widget-multi-text-input";
|
|
import { WidgetMultiSelectInput } from "./widget-multiselect-input";
|
|
import { WidgetNumberInput } from "./widget-number-input";
|
|
import { WidgetSelectInput } from "./widget-select-input";
|
|
import { WidgetSliderInput } from "./widget-slider-input";
|
|
import { WidgetSortedItemListInput } from "./widget-sortable-item-list-input";
|
|
import { WidgetSwitchInput } from "./widget-switch-input";
|
|
import { WidgetTextInput } from "./widget-text-input";
|
|
|
|
const mapping = {
|
|
text: WidgetTextInput,
|
|
location: WidgetLocationInput,
|
|
multiSelect: WidgetMultiSelectInput,
|
|
multiText: WidgetMultiTextInput,
|
|
number: WidgetNumberInput,
|
|
select: WidgetSelectInput,
|
|
slider: WidgetSliderInput,
|
|
switch: WidgetSwitchInput,
|
|
app: WidgetAppInput,
|
|
sortableItemList: WidgetSortedItemListInput,
|
|
} satisfies Record<WidgetOptionType, unknown>;
|
|
|
|
export const getInputForType = <TType extends WidgetOptionType>(type: TType) => {
|
|
return mapping[type];
|
|
};
|