Skip to content

Commit

Permalink
Add ability to open Trello card in desktop app
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisChinchilla committed Feb 3, 2024
1 parent c8d7d2a commit c5e4375
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 5 deletions.
3 changes: 2 additions & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ export const DEFAULT_SETTINGS: PluginSettings = {
newCardPosition: CardPosition.Top,
movedCardPosition: CardPosition.Top,
verboseLogging: false,
prepopulateTitle: false
prepopulateTitle: false,
openInDesktop: false
};

export const DEFAULT_DATA: PluginData = {
Expand Down
1 change: 1 addition & 0 deletions src/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export interface PluginSettings {
movedCardPosition: CardPosition;
verboseLogging: boolean;
prepopulateTitle: boolean;
openInDesktop: boolean;
}

export enum PluginError {
Expand Down
17 changes: 16 additions & 1 deletion src/settings.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { App, PluginSettingTab, Setting } from 'obsidian';
import { App, PluginSettingTab, Setting, Platform } from 'obsidian';
import { CardPosition, LeafSide, PluginSettings } from './interfaces';
import { GLOBAL_UI, TRELLO_TOKEN_URL } from './constants';

Expand Down Expand Up @@ -28,6 +28,7 @@ export class TrelloSettings extends PluginSettingTab {
this.buildMovedCardPositionSetting(this.containerEl, settings);
this.buildVerboseLoggingSetting(this.containerEl, settings);
this.prepopulateTitleConfigSetting(this.containerEl, settings);
this.openInDesktopSetting(this.containerEl, settings);
});
}

Expand Down Expand Up @@ -63,6 +64,20 @@ export class TrelloSettings extends PluginSettingTab {
});
}

private openInDesktopSetting(containerEl: HTMLElement, settings: PluginSettings): void {
if (Platform.isMacOS || Platform.isWin) {
this.plugin.log('TrelloSettings.openInDesktopSetting', '-> Adding open in desktop config setting');
new Setting(containerEl)
.setName('Open in Trello desktop')
.setDesc('Opens Trello card in desktop application on macOS or Windows')
.addToggle((toggle) => {
toggle.setValue(settings.openInDesktop).onChange((value) => {
this.plugin.state.updateSetting('openInDesktop', value);
});
});
}
}

private prepopulateTitleConfigSetting(containerEl: HTMLElement, settings: PluginSettings): void {
this.plugin.log(
'TrelloSettings.buildConfigSetting',
Expand Down
12 changes: 9 additions & 3 deletions src/view/view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,10 +214,16 @@ export class TrelloView extends ItemView {
private renderCardTitle(card: TrelloCard, parent: HTMLElement): void {
this.plugin.log('TrelloView.renderCardTitle', '');
const cardName = parent.createEl('h3', { text: card.name });
const cardLink = cardName.createEl('a', {
attr: { href: card.url, 'aria-label': 'View on Trello' }

let cardLink = String(card.url);
if (this.plugin.state.getSetting('openInDesktop') === true) {
cardLink = card.url.replace('https', 'trello');
}

const cardLinkEl = cardName.createEl('a', {
attr: { href: cardLink, 'aria-label': 'View on Trello' }
});
setIcon(cardLink, 'navigate-glyph');
setIcon(cardLinkEl, 'navigate-glyph');
}

/**
Expand Down

0 comments on commit c5e4375

Please sign in to comment.