Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated excalidraw to latest version. Made it easier to change excalidraw theme and persist setting. #40

Merged
merged 1 commit into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions packages/dev.randombits.excalidraw/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "sn-excalidraw",
"description": "A virtual whiteboard editor, with a hand-drawn style. Powered by Excalidraw.",
"author": "Matthew Nienow",
"version": "1.1.0",
"version": "1.2.0",
"scripts": {
"build": "webpack"
},
Expand All @@ -15,12 +15,10 @@
"showInGallery": true
},
"dependencies": {
"@excalidraw/excalidraw": "^0.15.0",
"@standardnotes/component-relay": "^2.2.2",
"@standardnotes/models": "^1.43.11",
"@standardnotes/stylekit": "5.29.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
"@excalidraw/excalidraw": "^0.17.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sn-extension-api": "0.3.4"
},
"devDependencies": {
"@babel/core": "^7.0.0",
Expand Down
76 changes: 67 additions & 9 deletions packages/dev.randombits.excalidraw/src/components/Editor.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import React, {useRef} from 'react';
import {Excalidraw, getSceneVersion} from "@excalidraw/excalidraw";
import React from 'react';
import {Excalidraw, Footer, getSceneVersion, MainMenu} from "@excalidraw/excalidraw";
import {useEditor} from "../providers/EditorProvider";
import snApi from "sn-extension-api";

const Editor = () => {
const [theme, setTheme] = React.useState(snApi.extensionMeta?.theme || 'dark');
const {data, saveNote, isLocked} = useEditor();
const el = useRef();
let lastVersion = getSceneVersion(data.elements);
let libraryCnt = data.libraryItems?.length || 0;

Expand Down Expand Up @@ -36,12 +37,69 @@ const Editor = () => {
}
};

const setThemeAndSave = (theme) => {
setTheme(theme);
snApi.extensionMeta = {theme};
};

const renderThemeBtn = () => {
if (theme === 'dark') {
return <button
className="theme-btn"
onClick={() => setThemeAndSave('light')}
>
<svg aria-hidden="true" focusable="false" role="img" viewBox="0 0 20 20" fill="none" stroke="currentColor"
strokeLinecap="round" strokeLinejoin="round">
<g stroke="currentColor" strokeWidth="1.25" strokeLinecap="round" strokeLinejoin="round">
<path
d="M10 12.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM10 4.167V2.5M14.167 5.833l1.166-1.166M15.833 10H17.5M14.167 14.167l1.166 1.166M10 15.833V17.5M5.833 14.167l-1.166 1.166M5 10H3.333M5.833 5.833 4.667 4.667"></path>
</g>
</svg>

<span>
Light Mode
</span>
</button>;

} else {
return <button
className="theme-btn"
onClick={() => setThemeAndSave('dark')}
>
<svg aria-hidden="true" focusable="false" role="img" viewBox="0 0 20 20" fill="none" stroke="currentColor"
strokeLinecap="round" strokeLinejoin="round">
<path clip-rule="evenodd" d="M10 2.5h.328a6.25 6.25 0 0 0 6.6 10.372A7.5 7.5 0 1 1 10 2.493V2.5Z"
stroke="currentColor"></path>
</svg>
<span>
Dark Mode
</span>
</button>;
}
};

return (
<div className="main">
<Excalidraw ref={el} key={Math.random()} initialData={data} theme={'dark'} onChange={onChange} onLibraryChange={onLibraryChange}
viewModeEnabled={isLocked} UIOptions={UIOptions}/>
</div>
<div className="main">
<Excalidraw key={Math.random()} initialData={data} theme={theme} onChange={onChange}
onLibraryChange={onLibraryChange}
viewModeEnabled={isLocked} UIOptions={UIOptions}>
<MainMenu>
<MainMenu.DefaultItems.LoadScene/>
<MainMenu.DefaultItems.Export/>
<MainMenu.DefaultItems.SaveAsImage/>
<MainMenu.DefaultItems.ClearCanvas/>
<MainMenu.DefaultItems.Help/>
<MainMenu.DefaultItems.ChangeCanvasBackground/>
<div style={{'margin-top': '5px'}}>
{renderThemeBtn()}
</div>
</MainMenu>
<Footer>
{renderThemeBtn()}
</Footer>
</Excalidraw>
</div>
);
}
};

export default Editor
export default Editor;
35 changes: 30 additions & 5 deletions packages/dev.randombits.excalidraw/src/index.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,37 @@
@import '@standardnotes/stylekit/dist/stylekit.css';
@import 'sn-extension-api/dist/sn.min.css';

body,
html {
margin: 0;
padding: 0;
width: 100%;
margin: 0;
padding: 0;
width: 100%;
}

.main {
height: 100vh;
height: 100vh;
}

.theme-btn {
display: flex;
align-items: center;
margin-left: 10px;
background-color: var(--color-surface-low);
/*color: var(--sn-stylekit-info-contrast-color);*/
width: 150px;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
color: var(--icon-fill-color);
box-shadow: 0 0 0 1px var(--color-surface-lowest);
}

.theme-btn:hover {
background-color: var(--button-hover-bg);
}

.theme-btn svg {
width: 15px;
height: 15px;
margin-right: 10px;
}
37 changes: 6 additions & 31 deletions packages/dev.randombits.excalidraw/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,40 +3,15 @@ import React from 'react';
import './index.css';
import {createRoot} from "react-dom/client";
import {EditorProvider} from "./providers/EditorProvider";
import ComponentRelay from "@standardnotes/component-relay";
import {AppDataField} from "@standardnotes/models";
import snApi from "sn-extension-api";

let currentNote;

const componentRelay = new ComponentRelay({
targetWindow: window,
options: {
coallesedSaving: true,
coallesedSavingDelay: 400,
debug: false
}
});
snApi.initialize({debounceSave: 400});

const root = createRoot(document.getElementById('root'));
componentRelay.streamContextItem((note) => {
currentNote = note;
// Only update UI on non-metadata updates.
if (note.isMetadataUpdate) {
return;
}
const text = note.content?.text || '';
const isLocked = componentRelay.getItemAppDataValue(note, AppDataField.Locked);

snApi.subscribe(() => {
root.render(
<React.StrictMode>
<EditorProvider text={text} save={save} isLocked={isLocked}/>
</React.StrictMode>
<React.StrictMode>
<EditorProvider/>
</React.StrictMode>
);
});

const save = (data: any) => {
componentRelay.saveItemWithPresave(currentNote, () => {
currentNote.content.text = JSON.stringify(data);
currentNote.content.preview_plain = '';
});
};
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React, {createContext, useContext, useEffect, useState} from 'react';
import Unsupported from "../components/Unsupported";
import Editor from "../components/Editor";
import {createNewData, parseEditorData} from "../utils";
import snApi from "sn-extension-api";

interface IEditorContext {
data: any;
Expand All @@ -19,7 +20,7 @@ const EditorContext = createContext<IEditorContext>({

export const useEditor = () => useContext(EditorContext);

export const EditorProvider = ({text, save, isLocked}) => {
export const EditorProvider = () => {
const [data, setData] = useState(null);
const [unsupported, setUnsupported] = useState(false);

Expand All @@ -31,7 +32,8 @@ export const EditorProvider = ({text, save, isLocked}) => {
};

const saveNote = (dataToSave = data) => {
save(dataToSave);
snApi.text = JSON.stringify(dataToSave);
snApi.preview = '';
};

const saveNoteAndRefresh = () => {
Expand All @@ -40,8 +42,8 @@ export const EditorProvider = ({text, save, isLocked}) => {
};

useEffect(() => {
if (text) {
const parsedData = parseEditorData(text);
if (snApi.text) {
const parsedData = parseEditorData(snApi.text);
if (parsedData) {
// data that matches our extension
setData(parsedData);
Expand All @@ -58,21 +60,21 @@ export const EditorProvider = ({text, save, isLocked}) => {
setUnsupported(false);
saveNote(newData);
}
}, [text]);
}, []);

const renderContent = () => {
if (data) {
return <Editor/>;
} else if (unsupported) {
return <Unsupported eraseFn={eraseDataAndStartNewNote}></Unsupported>;
} else {
return <div>Loading...</div>
return <div>Loading...</div>;
}
};

return (
<EditorContext.Provider value={{data, saveNote, saveNoteAndRefresh, isLocked}}>
{renderContent()}
</EditorContext.Provider>
<EditorContext.Provider value={{data, saveNote, saveNoteAndRefresh, isLocked: snApi.locked}}>
{renderContent()}
</EditorContext.Provider>
);
};
4 changes: 4 additions & 0 deletions packages/dev.randombits.excalidraw/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const HtmlWebpackPlugin = require('html-webpack-plugin');
const webpack = require('webpack');

module.exports = (env, argv) => ({
mode: 'production',
Expand Down Expand Up @@ -44,6 +45,9 @@ module.exports = (env, argv) => ({
}
},
plugins: [
new webpack.DefinePlugin({
"process.env.IS_PREACT": JSON.stringify("false")
}),
new HtmlWebpackPlugin({
filename: "index.html",
template: "./src/index.html",
Expand Down
Loading