@crossed/ui
Version:
A universal & performant styling library for React Native, Next.js & React
100 lines (99 loc) • 3.63 kB
JavaScript
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
// If the importer is in node compatibility mode or this is not an ESM
// file that has been converted to a CommonJS file using a Babel-
// compatible transform (i.e. "__esModule" has not been set), then set
// "default" to the CommonJS "module.exports" for node compatibility.
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
mod
));
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var FlatList_exports = {};
__export(FlatList_exports, {
FlatList: () => FlatList
});
module.exports = __toCommonJS(FlatList_exports);
var import_jsx_runtime = require("react/jsx-runtime");
var import_Layout = require("./utils/Layout");
var import_Title = require("./utils/Title");
var import_Footer = require("./utils/Footer");
var import_react = require("react");
var import_useLogic = require("./utils/useLogic");
var import_react_native_reanimated = __toESM(require("react-native-reanimated"));
var import_styled = require("@crossed/styled");
const FlatList = (0, import_react.memo)(
(0, import_react.forwardRef)((props, ref) => {
const {
stickyHeader,
stickyFooter,
containerProps,
style,
animatedStyle,
children,
title: titleProps,
footer: footerProps,
...rest
} = props;
const id = (0, import_react.useId)();
const {
title,
footer,
onLayout,
onContentSizeChange,
showFooter,
paddingRight,
renderFooter
} = (0, import_useLogic.useLogic)({
...props,
children: [
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_Title.Title, { children: titleProps }, `${id}-title`),
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_Footer.Footer, { children: footerProps }, `${id}-footer`)
]
});
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
import_Layout.Layout,
{
footer,
showFooter,
paddingRight,
stickyFooter,
...containerProps,
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
import_react_native_reanimated.default.FlatList,
{
ref,
stickyHeaderIndices: stickyHeader && title ? [0] : void 0,
ListHeaderComponent: title ? () => title : void 0,
ListFooterComponent: footer ? renderFooter : void 0,
...rest,
onLayout,
onContentSizeChange,
style: [(0, import_styled.composeStyles)(style).style().style, animatedStyle]
}
)
}
);
})
);
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
FlatList
});
//# sourceMappingURL=FlatList.js.map