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

refactoring #360

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions apps/desktop/src-tauri/src/audio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ impl AppSounds {

fn get_sound_bytes(&self) -> &'static [u8] {
match self {
AppSounds::StartRecording => include_bytes!("../sounds/start-recording.ogg"),
AppSounds::StopRecording => include_bytes!("../sounds/stop-recording.ogg"),
AppSounds::Screenshot => include_bytes!("../sounds/screenshot.ogg"),
AppSounds::Notification => include_bytes!("../sounds/action.ogg"),
Self::StartRecording => include_bytes!("../sounds/start-recording.ogg"),
Self::StopRecording => include_bytes!("../sounds/stop-recording.ogg"),
Self::Screenshot => include_bytes!("../sounds/screenshot.ogg"),
Self::Notification => include_bytes!("../sounds/action.ogg"),
}
}
}
2 changes: 1 addition & 1 deletion apps/desktop/src-tauri/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1587,7 +1587,7 @@ fn list_recordings(app: AppHandle) -> Result<Vec<(String, PathBuf, RecordingMeta

// First check if directory exists
if !recordings_dir.exists() {
return Ok(Vec::new());
return Ok(vec![]);
}

let mut result = std::fs::read_dir(&recordings_dir)
Expand Down
32 changes: 13 additions & 19 deletions apps/desktop/src-tauri/src/notifications.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,45 +18,39 @@ pub enum NotificationType {
impl NotificationType {
fn details(&self) -> (&'static str, &'static str, bool) {
match self {
NotificationType::VideoSaved => ("Video Saved", "Video saved successfully", false),
NotificationType::VideoCopiedToClipboard => {
("Video Copied", "Video copied to clipboard", false)
}
NotificationType::ShareableLinkCopied => {
("Link Copied", "Link copied to clipboard", false)
}
NotificationType::UploadFailed => (
Self::VideoSaved => ("Video Saved", "Video saved successfully", false),
Self::VideoCopiedToClipboard => ("Video Copied", "Video copied to clipboard", false),
Self::ShareableLinkCopied => ("Link Copied", "Link copied to clipboard", false),
Self::UploadFailed => (
"Upload Failed",
"Unable to upload media. Please try again",
true,
),
NotificationType::VideoSaveFailed => (
Self::VideoSaveFailed => (
"Save Failed",
"Unable to save video. Please try again",
true,
),
NotificationType::VideoCopyFailed => (
Self::VideoCopyFailed => (
"Copy Failed",
"Unable to copy video to clipboard. Please try again",
true,
),
NotificationType::ShareableLinkFailed => (
Self::ShareableLinkFailed => (
"Share Failed",
"Unable to create shareable link. Please try again",
true,
),
NotificationType::ScreenshotSaved => {
("Screenshot Saved", "Screenshot saved successfully", false)
}
NotificationType::ScreenshotCopiedToClipboard => {
Self::ScreenshotSaved => ("Screenshot Saved", "Screenshot saved successfully", false),
Self::ScreenshotCopiedToClipboard => {
("Screenshot Copied", "Screenshot copied to clipboard", false)
}
NotificationType::ScreenshotSaveFailed => (
Self::ScreenshotSaveFailed => (
"Save Failed",
"Unable to save screenshot. Please try again",
true,
),
NotificationType::ScreenshotCopyFailed => (
Self::ScreenshotCopyFailed => (
"Copy Failed",
"Unable to copy screenshot to clipboard. Please try again",
true,
Expand All @@ -66,7 +60,7 @@ impl NotificationType {

pub fn message(&self) -> &'static str {
match self {
NotificationType::UploadFailed => {
Self::UploadFailed => {
"Failed to upload your video after multiple attempts. Please try again later."
}
_ => "",
Expand All @@ -75,7 +69,7 @@ impl NotificationType {

pub fn title(&self) -> &'static str {
match self {
NotificationType::UploadFailed => "Upload Failed",
Self::UploadFailed => "Upload Failed",
_ => "",
}
}
Expand Down
5 changes: 1 addition & 4 deletions apps/desktop/src-tauri/src/permissions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,7 @@ pub enum OSPermissionStatus {

impl OSPermissionStatus {
pub fn permitted(&self) -> bool {
match self {
Self::NotNeeded | Self::Granted => true,
_ => false,
}
matches!(*self, Self::NotNeeded | Self::Granted)
}
}

Expand Down
4 changes: 2 additions & 2 deletions apps/desktop/src-tauri/src/upload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,7 @@ async fn compress_image(path: PathBuf) -> Result<Vec<u8>, String> {

let resized_img = img.resize(new_width, new_height, image::imageops::FilterType::Nearest);

let mut buffer = Vec::new();
let mut buffer = vec![];
let mut encoder = JpegEncoder::new_with_quality(&mut buffer, 30);
encoder
.encode(
Expand Down Expand Up @@ -855,7 +855,7 @@ impl ProgressiveUploadTask {
let s3_config = pre_created_video.config;
let file_key = format!("{}/{}/{}", s3_config.user_id(), s3_config.id(), file_name);

let mut uploaded_parts = Vec::new();
let mut uploaded_parts = vec![];
let mut part_number = 1;
let mut last_uploaded_position: u64 = 0;

Expand Down
43 changes: 22 additions & 21 deletions apps/desktop/src-tauri/src/windows.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,16 +82,17 @@ impl CapWindowId {

pub fn title(&self) -> String {
match self {
Self::Setup => "Cap Setup".to_string(),
Self::Settings => "Cap Settings".to_string(),
Self::WindowCaptureOccluder => "Cap Window Capture Occluder".to_string(),
Self::CaptureArea => "Cap Capture Area".to_string(),
Self::InProgressRecording => "Cap In Progress Recording".to_string(),
Self::Editor { .. } => "Cap Editor".to_string(),
Self::SignIn => "Cap Sign In".to_string(),
Self::ModeSelect => "Cap Mode Selection".to_string(),
_ => "Cap".to_string(),
Self::Setup => "Cap Setup",
Self::Settings => "Cap Settings",
Self::WindowCaptureOccluder => "Cap Window Capture Occluder",
Self::CaptureArea => "Cap Capture Area",
Self::InProgressRecording => "Cap In Progress Recording",
Self::Editor { .. } => "Cap Editor",
Self::SignIn => "Cap Sign In",
Self::ModeSelect => "Cap Mode Selection",
_ => "Cap",
}
.to_string()
}

pub fn activates_dock(&self) -> bool {
Expand Down Expand Up @@ -483,20 +484,20 @@ impl ShowCapWindow {

pub fn id(&self) -> CapWindowId {
match self {
ShowCapWindow::Setup => CapWindowId::Setup,
ShowCapWindow::Main => CapWindowId::Main,
ShowCapWindow::Settings { .. } => CapWindowId::Settings,
ShowCapWindow::Editor { project_id } => CapWindowId::Editor {
Self::Setup => CapWindowId::Setup,
Self::Main => CapWindowId::Main,
Self::Settings { .. } => CapWindowId::Settings,
Self::Editor { project_id } => CapWindowId::Editor {
project_id: project_id.clone(),
},
ShowCapWindow::RecordingsOverlay => CapWindowId::RecordingsOverlay,
ShowCapWindow::WindowCaptureOccluder => CapWindowId::WindowCaptureOccluder,
ShowCapWindow::CaptureArea { .. } => CapWindowId::CaptureArea,
ShowCapWindow::Camera { .. } => CapWindowId::Camera,
ShowCapWindow::InProgressRecording { .. } => CapWindowId::InProgressRecording,
ShowCapWindow::Upgrade => CapWindowId::Upgrade,
ShowCapWindow::SignIn => CapWindowId::SignIn,
ShowCapWindow::ModeSelect => CapWindowId::ModeSelect,
Self::RecordingsOverlay => CapWindowId::RecordingsOverlay,
Self::WindowCaptureOccluder => CapWindowId::WindowCaptureOccluder,
Self::CaptureArea { .. } => CapWindowId::CaptureArea,
Self::Camera { .. } => CapWindowId::Camera,
Self::InProgressRecording { .. } => CapWindowId::InProgressRecording,
Self::Upgrade => CapWindowId::Upgrade,
Self::SignIn => CapWindowId::SignIn,
Self::ModeSelect => CapWindowId::ModeSelect,
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion crates/media/src/feeds/camera.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ impl CameraFeed {
.into_iter()
.map(|i| i.human_name().to_string())
.collect::<Vec<String>>(),
Err(_) => Vec::new(),
Err(_) => vec![],
}
}

Expand Down
2 changes: 1 addition & 1 deletion crates/media/src/platform/macos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ extern "C" {
}

pub fn get_on_screen_windows() -> Vec<Window> {
let mut windows = Vec::new();
let mut windows = vec![];

unsafe {
let cf_win_array = CGWindowListCopyWindowInfo(
Expand Down
2 changes: 1 addition & 1 deletion crates/media/src/platform/win.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ impl Default for DefaultCursors {
.0
}

DefaultCursors {
Self {
arrow: load_cursor(IDC_ARROW),
ibeam: load_cursor(IDC_IBEAM),
cross: load_cursor(IDC_CROSS),
Expand Down
4 changes: 1 addition & 3 deletions crates/media/src/sources/audio_mixer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ pub struct AudioMixer {

impl AudioMixer {
pub fn new() -> Self {
Self {
sources: Vec::new(),
}
Self { sources: vec![] }
}

pub fn sink(&mut self, info: AudioInfo) -> AudioMixerSink {
Expand Down
6 changes: 3 additions & 3 deletions crates/media/src/sources/screen_capture.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ impl ScreenCaptureTarget {
let targets = scap::get_all_targets();

match self {
ScreenCaptureTarget::Window { id } => targets.into_iter().find(|t| match t {
Self::Window { id } => targets.into_iter().find(|t| match t {
scap::Target::Window(window) => window.id == *id,
_ => false,
}),
ScreenCaptureTarget::Screen { id } => targets.into_iter().find(|t| match t {
Self::Screen { id } => targets.into_iter().find(|t| match t {
scap::Target::Display(screen) => screen.id == *id,
_ => false,
}),
ScreenCaptureTarget::Area { screen, .. } => targets.into_iter().find(|t| match t {
Self::Area { screen, .. } => targets.into_iter().find(|t| match t {
scap::Target::Display(display) => display.id == *screen,
_ => false,
}),
Expand Down
4 changes: 2 additions & 2 deletions crates/project/src/configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ fn default_gradient_angle() -> u16 {

impl Default for BackgroundSource {
fn default() -> Self {
BackgroundSource::Wallpaper {
Self::Wallpaper {
path: Some("sequoia-dark".to_string()),
}
}
Expand Down Expand Up @@ -453,7 +453,7 @@ impl ProjectConfiguration {

impl Default for ProjectConfiguration {
fn default() -> Self {
ProjectConfiguration {
Self {
aspect_ratio: None,
background: BackgroundConfiguration::default(),
camera: Camera::default(),
Expand Down
18 changes: 8 additions & 10 deletions crates/project/src/meta.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,8 @@ pub enum StudioRecordingMeta {
impl StudioRecordingMeta {
pub fn camera_path(&self) -> Option<RelativePathBuf> {
match self {
StudioRecordingMeta::SingleSegment { segment } => {
segment.camera.as_ref().map(|c| c.path.clone())
}
StudioRecordingMeta::MultipleSegments { inner } => inner
Self::SingleSegment { segment } => segment.camera.as_ref().map(|c| c.path.clone()),
Self::MultipleSegments { inner } => inner
.segments
.first()
.and_then(|s| s.camera.as_ref().map(|c| c.path.clone())),
Expand All @@ -137,17 +135,17 @@ impl StudioRecordingMeta {

pub fn min_fps(&self) -> u32 {
match self {
StudioRecordingMeta::SingleSegment { segment } => segment.display.fps,
StudioRecordingMeta::MultipleSegments { inner } => {
Self::SingleSegment { segment } => segment.display.fps,
Self::MultipleSegments { inner } => {
inner.segments.iter().map(|s| s.display.fps).min().unwrap()
}
}
}

pub fn max_fps(&self) -> u32 {
match self {
StudioRecordingMeta::SingleSegment { segment } => segment.display.fps,
StudioRecordingMeta::MultipleSegments { inner } => {
Self::SingleSegment { segment } => segment.display.fps,
Self::MultipleSegments { inner } => {
inner.segments.iter().map(|s| s.display.fps).max().unwrap()
}
}
Expand Down Expand Up @@ -186,8 +184,8 @@ pub enum Cursors {
impl Cursors {
fn is_empty(&self) -> bool {
match self {
Cursors::Old(map) => map.is_empty(),
Cursors::Correct(map) => map.is_empty(),
Self::Old(map) => map.is_empty(),
Self::Correct(map) => map.is_empty(),
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion crates/recording/src/cursor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ fn get_cursor_image_data() -> Option<CursorData> {
};

// Convert to PNG format
let mut png_data = Vec::new();
let mut png_data = vec![];
trimmed_image
.write_to(
&mut std::io::Cursor::new(&mut png_data),
Expand Down
2 changes: 1 addition & 1 deletion crates/recording/src/studio_recording.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ pub async fn spawn_studio_recording_actor(
recording_dir,
options: options.clone(),
fps,
segments: Vec::new(),
segments: vec![],
};

let mut state = StudioRecordingActorState::Recording {
Expand Down
4 changes: 2 additions & 2 deletions crates/rendering/src/decoder/avassetreader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ enum CachedFrame {
impl CachedFrame {
fn process(&mut self) -> Arc<Vec<u8>> {
match self {
CachedFrame::Raw(image_buf) => {
Self::Raw(image_buf) => {
let format = pixel_format_to_pixel(image_buf.pixel_format());

let data = if matches!(format, format::Pixel::RGBA) {
Expand Down Expand Up @@ -167,7 +167,7 @@ impl CachedFrame {

data
}
CachedFrame::Processed(data) => data.clone(),
Self::Processed(data) => data.clone(),
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion crates/rendering/src/zoom.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ impl SegmentBounds {
}

pub fn default() -> Self {
SegmentBounds::new(XY::new(0.0, 0.0), XY::new(1.0, 1.0))
Self::new(XY::new(0.0, 0.0), XY::new(1.0, 1.0))
}
}

Expand Down