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

feat: add the ability to toggle the preview's visibility #14

Merged
merged 2 commits into from
May 13, 2023
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
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"prettier.documentSelectors": ["**/*.svelte"]
}
1 change: 1 addition & 0 deletions src-tauri/src/ipc/events/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod view;
11 changes: 11 additions & 0 deletions src-tauri/src/ipc/events/view.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
use serde::Serialize;
use tauri::{Runtime, Window};

// For some reason, Tauri requires an event payload...
#[derive(Debug, Clone, Serialize)]
struct EmptyPayload {}

// Instructs the front-end to hide or show the preview
pub fn toggle_preview_visibility<R: Runtime>(window: &Window<R>) {
let _ = window.emit("toggle_preview_visibility", EmptyPayload {});
}
1 change: 1 addition & 0 deletions src-tauri/src/ipc/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
pub mod commands;
pub mod events;

mod model;
pub use model::*;
5 changes: 4 additions & 1 deletion src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ fn build_menu() -> Menu {
.add_item(CustomMenuItem::new("file_quit", "Quit")),
);
let edit_submenu = Submenu::new("Edit", Menu::new());
let view_submenu = Submenu::new("View", Menu::new());
let view_submenu = Submenu::new(
"View",
Menu::new().add_item(CustomMenuItem::new("view_toggle_preview", "Toggle Preview")),
);

Menu::new()
.add_submenu(file_submenu)
Expand Down
4 changes: 4 additions & 0 deletions src-tauri/src/menu.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
use crate::ipc::events::view;
use crate::project::{Project, ProjectManager};
use std::fs;
use std::sync::Arc;
Expand Down Expand Up @@ -39,6 +40,9 @@ pub fn handle_menu_event<R: Runtime>(e: WindowMenuEvent<R>) {
"file_quit" => {
e.window().app_handle().exit(0);
}
"view_toggle_preview" => {
view::toggle_preview_visibility(e.window());
}
_ => {}
}
}
71 changes: 43 additions & 28 deletions src/components/Preview.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
let width: number;
let height: number;

let isVisible: boolean = true;

const handleMouseDown = (event: MouseEvent) => {
event.preventDefault();
isMouseDown = true;
Expand Down Expand Up @@ -72,41 +74,54 @@
};

onMount(async () => {
const unsubscribe = await appWindow.listen<TypstCompileEvent>("typst_compile", ({ _, payload }) => {
const { document } = payload;
if (document) {
pages = document.pages;
hash = document.hash;
width = document.width;
height = document.height;
const unsubscribeCompile = await appWindow.listen<TypstCompileEvent>(
"typst_compile",
({ _, payload }) => {
const { document } = payload;
if (document) {
pages = document.pages;
hash = document.hash;
width = document.width;
height = document.height;
}
}
);

const unsubscribeToggleVisibility = await appWindow.listen<never>(
"toggle_preview_visibility",
() => {
isVisible = !isVisible;
}
});
);

window.addEventListener("keydown", handleKeyDown);

return () => {
unsubscribe();
unsubscribeCompile();
unsubscribeToggleVisibility();
window.removeEventListener("keydown", handleKeyDown);
};
});
</script>

<div
bind:this={container}
on:mousemove={handleMove}
on:mousedown={handleMouseDown}
on:mouseup={handleMouseUp}
on:mouseleave={handleMouseUp}
on:wheel={handleWheel}
class={clsx("flex flex-col overflow-auto bg-neutral-700 p-4 gap-4", $$props.class)}
>
{#each Array(pages) as _, i}
<PreviewPage
page={i}
hash={hash}
width={Math.floor(width * scale)}
height={Math.floor(height * scale)}
scale={scale}
/>
{/each}
</div>
{#if isVisible}
<div
bind:this={container}
on:mousemove={handleMove}
on:mousedown={handleMouseDown}
on:mouseup={handleMouseUp}
on:mouseleave={handleMouseUp}
on:wheel={handleWheel}
class={clsx("flex flex-col overflow-auto bg-neutral-700 p-4 gap-4", $$props.class)}
>
{#each Array(pages) as _, i}
<PreviewPage
page={i}
{hash}
width={Math.floor(width * scale)}
height={Math.floor(height * scale)}
{scale}
/>
{/each}
</div>
{/if}