mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-11-14 01:34:49 +01:00
* refactor device to editor interface and derive styles panel * allow host app to control form factor and ui mode * add editor interface event listener * put new props inside UIOptions * refactor: move related apis into one file * expose getFormFactor * privatize the setting of desktop mode and fix snapshots * refactor and fix test * remove unimplemented code * export getFormFactor() * replace `getFormFactor` with `getEditorInterface` * remove dead & useless * comment * fix ts --------- Co-authored-by: dwelle <5153846+dwelle@users.noreply.github.com>
31 lines
728 B
TypeScript
31 lines
728 B
TypeScript
import React from "react";
|
|
|
|
import type * as TExcalidraw from "@excalidraw/excalidraw";
|
|
import type { ExcalidrawImperativeAPI } from "@excalidraw/excalidraw/types";
|
|
|
|
import CustomFooter from "./CustomFooter";
|
|
|
|
const MobileFooter = ({
|
|
excalidrawAPI,
|
|
excalidrawLib,
|
|
}: {
|
|
excalidrawAPI: ExcalidrawImperativeAPI;
|
|
excalidrawLib: typeof TExcalidraw;
|
|
}) => {
|
|
const { useEditorInterface, Footer } = excalidrawLib;
|
|
|
|
const editorInterface = useEditorInterface();
|
|
if (editorInterface.formFactor === "phone") {
|
|
return (
|
|
<Footer>
|
|
<CustomFooter
|
|
excalidrawAPI={excalidrawAPI}
|
|
excalidrawLib={excalidrawLib}
|
|
/>
|
|
</Footer>
|
|
);
|
|
}
|
|
return null;
|
|
};
|
|
export default MobileFooter;
|