2024-06-13 21:01:37 +03:00
'use strict' ;
var obsidian = require ( 'obsidian' ) ;
/ * ! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Copyright ( c ) Microsoft Corporation .
Permission to use , copy , modify , and / or distribute this software for any
purpose with or without fee is hereby granted .
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS . IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL , DIRECT ,
INDIRECT , OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE , DATA OR PROFITS , WHETHER IN AN ACTION OF CONTRACT , NEGLIGENCE OR
OTHER TORTIOUS ACTION , ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /
function _ _awaiter ( thisArg , _arguments , P , generator ) {
function adopt ( value ) { return value instanceof P ? value : new P ( function ( resolve ) { resolve ( value ) ; } ) ; }
return new ( P || ( P = Promise ) ) ( function ( resolve , reject ) {
function fulfilled ( value ) { try { step ( generator . next ( value ) ) ; } catch ( e ) { reject ( e ) ; } }
function rejected ( value ) { try { step ( generator [ "throw" ] ( value ) ) ; } catch ( e ) { reject ( e ) ; } }
function step ( result ) { result . done ? resolve ( result . value ) : adopt ( result . value ) . then ( fulfilled , rejected ) ; }
step ( ( generator = generator . apply ( thisArg , _arguments || [ ] ) ) . next ( ) ) ;
} ) ;
}
class Hider extends obsidian . Plugin {
constructor ( ) {
super ( ... arguments ) ;
// refresh function for when we change settings
this . refresh = ( ) => {
// re-load the style
this . updateStyle ( ) ;
} ;
// update the styles (at the start, or as the result of a settings change)
this . updateStyle = ( ) => {
document . body . classList . toggle ( 'hider-status' , this . settings . hideStatus ) ;
document . body . classList . toggle ( 'hider-tabs' , this . settings . hideTabs ) ;
document . body . classList . toggle ( 'hider-scroll' , this . settings . hideScroll ) ;
document . body . classList . toggle ( 'hider-sidebar-buttons' , this . settings . hideSidebarButtons ) ;
document . body . classList . toggle ( 'hider-tooltips' , this . settings . hideTooltips ) ;
document . body . classList . toggle ( 'hider-search-suggestions' , this . settings . hideSearchSuggestions ) ;
document . body . classList . toggle ( 'hider-file-nav-header' , this . settings . hideFileNavButtons ) ;
document . body . classList . toggle ( 'hider-search-counts' , this . settings . hideSearchCounts ) ;
document . body . classList . toggle ( 'hider-instructions' , this . settings . hideInstructions ) ;
document . body . classList . toggle ( 'hider-meta' , this . settings . hidePropertiesReading ) ;
document . body . classList . toggle ( 'hider-vault' , this . settings . hideVault ) ;
} ;
}
onload ( ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
// load settings
yield this . loadSettings ( ) ;
// add the settings tab
this . addSettingTab ( new HiderSettingTab ( this . app , this ) ) ;
// add the toggle on/off command
this . addCommand ( {
id : 'toggle-tab-containers' ,
name : 'Toggle tab bar' ,
callback : ( ) => {
this . settings . hideTabs = ! this . settings . hideTabs ;
this . saveData ( this . settings ) ;
this . refresh ( ) ;
}
} ) ;
this . addCommand ( {
id : 'toggle-hider-status' ,
name : 'Toggle status bar' ,
callback : ( ) => {
this . settings . hideStatus = ! this . settings . hideStatus ;
this . saveData ( this . settings ) ;
this . refresh ( ) ;
}
} ) ;
this . refresh ( ) ;
} ) ;
}
onunload ( ) {
console . log ( 'Unloading Hider plugin' ) ;
}
loadSettings ( ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
this . settings = Object . assign ( DEFAULT _SETTINGS , yield this . loadData ( ) ) ;
} ) ;
}
saveSettings ( ) {
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
yield this . saveData ( this . settings ) ;
} ) ;
}
}
const DEFAULT _SETTINGS = {
hideStatus : false ,
hideTabs : false ,
hideScroll : false ,
hideSidebarButtons : false ,
hideTooltips : false ,
hideFileNavButtons : false ,
hideSearchSuggestions : false ,
hideSearchCounts : false ,
hideInstructions : false ,
hidePropertiesReading : false ,
hideVault : false
} ;
class HiderSettingTab extends obsidian . PluginSettingTab {
constructor ( app , plugin ) {
super ( app , plugin ) ;
this . plugin = plugin ;
}
display ( ) {
let { containerEl } = this ;
containerEl . empty ( ) ;
new obsidian . Setting ( containerEl )
. setName ( 'Hide tab bar' )
2024-06-18 08:24:14 +03:00
. setDesc ( 'Hides the tab container at the top of the window.' )
2024-06-13 21:01:37 +03:00
. addToggle ( toggle => toggle . setValue ( this . plugin . settings . hideTabs )
. onChange ( ( value ) => {
this . plugin . settings . hideTabs = value ;
this . plugin . saveData ( this . plugin . settings ) ;
this . plugin . refresh ( ) ;
} ) ) ;
new obsidian . Setting ( containerEl )
. setName ( 'Hide status bar' )
2024-06-18 08:24:14 +03:00
. setDesc ( 'Hides word count, character count and backlink count.' )
2024-06-13 21:01:37 +03:00
. addToggle ( toggle => toggle . setValue ( this . plugin . settings . hideStatus )
. onChange ( ( value ) => {
this . plugin . settings . hideStatus = value ;
this . plugin . saveData ( this . plugin . settings ) ;
this . plugin . refresh ( ) ;
} ) ) ;
new obsidian . Setting ( containerEl )
. setName ( 'Hide vault name' )
2024-06-18 08:24:14 +03:00
. setDesc ( 'Hides your vault profile. Warning: this also hides access to the Settings and vault switcher icons. You can use hotkeys or the command palette to open them.' )
2024-06-13 21:01:37 +03:00
. addToggle ( toggle => toggle . setValue ( this . plugin . settings . hideVault )
. onChange ( ( value ) => {
this . plugin . settings . hideVault = value ;
this . plugin . saveData ( this . plugin . settings ) ;
this . plugin . refresh ( ) ;
} ) ) ;
new obsidian . Setting ( containerEl )
. setName ( 'Hide scroll bars' )
2024-06-18 08:24:14 +03:00
. setDesc ( 'Hides all scroll bars.' )
2024-06-13 21:01:37 +03:00
. addToggle ( toggle => toggle . setValue ( this . plugin . settings . hideScroll )
. onChange ( ( value ) => {
this . plugin . settings . hideScroll = value ;
this . plugin . saveData ( this . plugin . settings ) ;
this . plugin . refresh ( ) ;
} ) ) ;
new obsidian . Setting ( containerEl )
. setName ( 'Hide sidebar toggle buttons' )
2024-06-18 08:24:14 +03:00
. setDesc ( 'Hides both sidebar buttons.' )
2024-06-13 21:01:37 +03:00
. addToggle ( toggle => toggle . setValue ( this . plugin . settings . hideSidebarButtons )
. onChange ( ( value ) => {
this . plugin . settings . hideSidebarButtons = value ;
this . plugin . saveData ( this . plugin . settings ) ;
this . plugin . refresh ( ) ;
} ) ) ;
new obsidian . Setting ( containerEl )
. setName ( 'Hide tooltips' )
2024-06-18 08:24:14 +03:00
. setDesc ( 'Hides all tooltips.' )
2024-06-13 21:01:37 +03:00
. addToggle ( toggle => toggle . setValue ( this . plugin . settings . hideTooltips )
. onChange ( ( value ) => {
this . plugin . settings . hideTooltips = value ;
this . plugin . saveData ( this . plugin . settings ) ;
this . plugin . refresh ( ) ;
} ) ) ;
new obsidian . Setting ( containerEl )
. setName ( 'Hide file explorer buttons' )
2024-06-18 08:24:14 +03:00
. setDesc ( 'Hides buttons at the top of file explorer (new file, new folder, etc).' )
2024-06-13 21:01:37 +03:00
. addToggle ( toggle => toggle . setValue ( this . plugin . settings . hideFileNavButtons )
. onChange ( ( value ) => {
this . plugin . settings . hideFileNavButtons = value ;
this . plugin . saveData ( this . plugin . settings ) ;
this . plugin . refresh ( ) ;
} ) ) ;
new obsidian . Setting ( containerEl )
. setName ( 'Hide instructions' )
2024-06-18 08:24:14 +03:00
. setDesc ( 'Hides instructional tips in modals.' )
2024-06-13 21:01:37 +03:00
. addToggle ( toggle => toggle . setValue ( this . plugin . settings . hideInstructions )
. onChange ( ( value ) => {
this . plugin . settings . hideInstructions = value ;
this . plugin . saveData ( this . plugin . settings ) ;
this . plugin . refresh ( ) ;
} ) ) ;
new obsidian . Setting ( containerEl )
. setName ( 'Hide search suggestions' )
2024-06-18 08:24:14 +03:00
. setDesc ( 'Hides suggestions in search pane.' )
2024-06-13 21:01:37 +03:00
. addToggle ( toggle => toggle . setValue ( this . plugin . settings . hideSearchSuggestions )
. onChange ( ( value ) => {
this . plugin . settings . hideSearchSuggestions = value ;
this . plugin . saveData ( this . plugin . settings ) ;
this . plugin . refresh ( ) ;
} ) ) ;
new obsidian . Setting ( containerEl )
. setName ( 'Hide count of search term matches' )
2024-06-18 08:24:14 +03:00
. setDesc ( 'Hides the number of matches within each search result.' )
2024-06-13 21:01:37 +03:00
. addToggle ( toggle => toggle . setValue ( this . plugin . settings . hideSearchCounts )
. onChange ( ( value ) => {
this . plugin . settings . hideSearchCounts = value ;
this . plugin . saveData ( this . plugin . settings ) ;
this . plugin . refresh ( ) ;
} ) ) ;
new obsidian . Setting ( containerEl )
. setName ( 'Hide properties in Reading view' )
2024-06-18 08:24:14 +03:00
. setDesc ( 'Hides the properties section in Reading view.' )
2024-06-13 21:01:37 +03:00
. addToggle ( toggle => toggle . setValue ( this . plugin . settings . hidePropertiesReading )
. onChange ( ( value ) => {
this . plugin . settings . hidePropertiesReading = value ;
this . plugin . saveData ( this . plugin . settings ) ;
this . plugin . refresh ( ) ;
} ) ) ;
}
}
module . exports = Hider ;
2024-06-18 08:24:14 +03:00
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFpbi5qcyIsInNvdXJjZXMiOlsibm9kZV9tb2R1bGVzL3RzbGliL3RzbGliLmVzNi5qcyIsIm1haW4udHMiXSwic291cmNlc0NvbnRlbnQiOlsiLyohICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqXHJcbkNvcHlyaWdodCAoYykgTWljcm9zb2Z0IENvcnBvcmF0aW9uLlxyXG5cclxuUGVybWlzc2lvbiB0byB1c2UsIGNvcHksIG1vZGlmeSwgYW5kL29yIGRpc3RyaWJ1dGUgdGhpcyBzb2Z0d2FyZSBmb3IgYW55XHJcbnB1cnBvc2Ugd2l0aCBvciB3aXRob3V0IGZlZSBpcyBoZXJlYnkgZ3JhbnRlZC5cclxuXHJcblRIRSBTT0ZUV0FSRSBJUyBQUk9WSURFRCBcIkFTIElTXCIgQU5EIFRIRSBBVVRIT1IgRElTQ0xBSU1TIEFMTCBXQVJSQU5USUVTIFdJVEhcclxuUkVHQVJEIFRPIFRISVMgU09GVFdBUkUgSU5DTFVESU5HIEFMTCBJTVBMSUVEIFdBUlJBTlRJRVMgT0YgTUVSQ0hBTlRBQklMSVRZXHJcbkFORCBGSVRORVNTLiBJTiBOTyBFVkVOVCBTSEFMTCBUSEUgQVVUSE9SIEJFIExJQUJMRSBGT1IgQU5ZIFNQRUNJQUwsIERJUkVDVCxcclxuSU5ESVJFQ1QsIE9SIENPTlNFUVVFTlRJQUwgREFNQUdFUyBPUiBBTlkgREFNQUdFUyBXSEFUU09FVkVSIFJFU1VMVElORyBGUk9NXHJcbkxPU1MgT0YgVVNFLCBEQVRBIE9SIFBST0ZJVFMsIFdIRVRIRVIgSU4gQU4gQUNUSU9OIE9GIENPTlRSQUNULCBORUdMSUdFTkNFIE9SXHJcbk9USEVSIFRPUlRJT1VTIEFDVElPTiwgQVJJU0lORyBPVVQgT0YgT1IgSU4gQ09OTkVDVElPTiBXSVRIIFRIRSBVU0UgT1JcclxuUEVSRk9STUFOQ0UgT0YgVEhJUyBTT0ZUV0FSRS5cclxuKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiogKi9cclxuLyogZ2xvYmFsIFJlZmxlY3QsIFByb21pc2UgKi9cclxuXHJcbnZhciBleHRlbmRTdGF0aWNzID0gZnVuY3Rpb24oZCwgYikge1xyXG4gICAgZXh0ZW5kU3RhdGljcyA9IE9iamVjdC5zZXRQcm90b3R5cGVPZiB8fFxyXG4gICAgICAgICh7IF9fcHJvdG9fXzogW10gfSBpbnN0YW5jZW9mIEFycmF5ICYmIGZ1bmN0aW9uIChkLCBiKSB7IGQuX19wcm90b19fID0gYjsgfSkgfHxcclxuICAgICAgICBmdW5jdGlvbiAoZCwgYikgeyBmb3IgKHZhciBwIGluIGIpIGlmIChPYmplY3QucHJvdG90eXBlLmhhc093blByb3BlcnR5LmNhbGwoYiwgcCkpIGRbcF0gPSBiW3BdOyB9O1xyXG4gICAgcmV0dXJuIGV4dGVuZFN0YXRpY3MoZCwgYik7XHJcbn07XHJcblxyXG5leHBvcnQgZnVuY3Rpb24gX19leHRlbmRzKGQsIGIpIHtcclxuICAgIGV4dGVuZFN0YXRpY3MoZCwgYik7XHJcbiAgICBmdW5jdGlvbiBfXygpIHsgdGhpcy5jb25zdHJ1Y3RvciA9IGQ7IH1cclxuICAgIGQucHJvdG90eXBlID0gYiA9PT0gbnVsbCA/IE9iamVjdC5jcmVhdGUoYikgOiAoX18ucHJvdG90eXBlID0gYi5wcm90b3R5cGUsIG5ldyBfXygpKTtcclxufVxyXG5cclxuZXhwb3J0IHZhciBfX2Fzc2lnbiA9IGZ1bmN0aW9uKCkge1xyXG4gICAgX19hc3NpZ24gPSBPYmplY3QuYXNzaWduIHx8IGZ1bmN0aW9uIF9fYXNzaWduKHQpIHtcclxuICAgICAgICBmb3IgKHZhciBzLCBpID0gMSwgbiA9IGFyZ3VtZW50cy5sZW5ndGg7IGkgPCBuOyBpKyspIHtcclxuICAgICAgICAgICAgcyA9IGFyZ3VtZW50c1tpXTtcclxuICAgICAgICAgICAgZm9yICh2YXIgcCBpbiBzKSBpZiAoT2JqZWN0LnByb3RvdHlwZS5oYXNPd25Qcm9wZXJ0eS5jYWxsKHMsIHApKSB0W3BdID0gc1twXTtcclxuICAgICAgICB9XHJcbiAgICAgICAgcmV0dXJuIHQ7XHJcbiAgICB9XHJcbiAgICByZXR1cm4gX19hc3NpZ24uYXBwbHkodGhpcywgYXJndW1lbnRzKTtcclxufVxyXG5cclxuZXhwb3J0IGZ1bmN0aW9uIF9fcmVzdChzLCBlKSB7XHJcbiAgICB2YXIgdCA9IHt9O1xyXG4gICAgZm9yICh2YXIgcCBpbiBzKSBpZiAoT2JqZWN0LnByb3RvdHlwZS5oYXNPd25Qcm9wZXJ0eS5jYWxsKHMsIHApICYmIGUuaW5kZXhPZihwKSA8IDApXHJcbiAgICAgICAgdFtwXSA9IHNbcF07XHJcbiAgICBpZiAocyAhPSBudWxsICYmIHR5cGVvZiBPYmplY3QuZ2V0T3duUHJvcGVydHlTeW1ib2xzID09PSBcImZ1bmN0aW9uXCIpXHJcbiAgICAgICAgZm9yICh2YXIgaSA9IDAsIHAgPSBPYmplY3QuZ2V0T3duUHJvcGVydHlTeW1ib2xzKHMpOyBpIDwgcC5sZW5ndGg7IGkrKykge1xyXG4gICAgICAgICAgICBpZiAoZS5pbmRleE9mKHBbaV0pIDwgMCAmJiBPYmplY3QucHJvdG90eXBlLnByb3BlcnR5SXNFbnVtZXJhYmxlLmNhbGwocywgcFtpXSkpXHJcbiAgICAgICAgICAgICAgICB0W3BbaV1dID0gc1twW2ldXTtcclxuICAgICAgICB9XHJcbiAgICByZXR1cm4gdDtcclxufVxyXG5cclxuZXhwb3J0IGZ1bmN0aW9uIF9fZGVjb3JhdGUoZGVjb3JhdG9ycywgdGFyZ2V0LCBrZXksIGRlc2MpIHtcclxuICAgIHZhciBjID0gYXJndW1lbnRzLmxlbmd0aCwgciA9IGMgPCAzID8gdGFyZ2V0IDogZGVzYyA9PT0gbnVsbCA/IGRlc2MgPSBPYmplY3QuZ2V0T3duUHJvcGVydHlEZXNjcmlwdG9yKHRhcmdldCwga2V5KSA6IGRlc2MsIGQ7XHJcbiAgICBpZiAodHlwZW9mIFJlZmxlY3QgPT09IFwib2JqZWN0XCIgJiYgdHlwZW9mIFJlZmxlY3QuZGVjb3JhdGUgPT09IFwiZnVuY3Rpb25cIikgciA9IFJlZmxlY3QuZGVjb3JhdGUoZGVjb3JhdG9ycywgdGFyZ2V0LCBrZXksIGRlc2MpO1xyXG4gICAgZWxzZSBmb3IgKHZhciBpID0gZGVjb3JhdG9ycy5sZW5ndGggLSAxOyBpID49IDA7IGktLSkgaWYgKGQgPSBkZWNvcmF0b3JzW2ldKSByID0gKGMgPCAzID8gZChyKSA6IGMgPiAzID8gZCh0YXJnZXQsIGtleSwgcikgOiBkKHRhcmdldCwga2V5KSkgfHwgcjtcclxuICAgIHJldHVybiBjID4gMyAmJiByICYmIE9iamVjdC5kZWZpbmVQcm9wZXJ0eSh0YXJnZXQsIGtleSwgciksIHI7XHJcbn1cclxuXHJcbmV4cG9ydCBmdW5jdGlvbiBfX3BhcmF