mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-04 13:39:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import options from "./options.js";
 | 
						|
 | 
						|
let instance;
 | 
						|
 | 
						|
function setupSplit(left, right) {
 | 
						|
    if (instance) {
 | 
						|
        instance.destroy();
 | 
						|
        instance = null;
 | 
						|
    }
 | 
						|
 | 
						|
    if (!left && !right) {
 | 
						|
        $("#center-pane").css('width', '100%');
 | 
						|
 | 
						|
        return;
 | 
						|
    }
 | 
						|
 | 
						|
    const leftPaneWidth = options.getInt('leftPaneWidth');
 | 
						|
    const rightPaneWidth = options.getInt('rightPaneWidth');
 | 
						|
 | 
						|
    if (left && right) {
 | 
						|
        instance = Split(['#left-pane', '#center-pane', '#right-pane'], {
 | 
						|
            sizes: [leftPaneWidth, 100 - leftPaneWidth - rightPaneWidth, rightPaneWidth],
 | 
						|
            gutterSize: 5,
 | 
						|
            onDragEnd: sizes => {
 | 
						|
                options.save('leftPaneWidth', Math.round(sizes[0]));
 | 
						|
                options.save('rightPaneWidth', Math.round(sizes[2]));
 | 
						|
            }
 | 
						|
        });
 | 
						|
    }
 | 
						|
    else if (left) {
 | 
						|
        instance = Split(['#left-pane', '#center-pane'], {
 | 
						|
            sizes: [leftPaneWidth, 100 - leftPaneWidth],
 | 
						|
            gutterSize: 5,
 | 
						|
            onDragEnd: sizes => {
 | 
						|
                options.save('leftPaneWidth', Math.round(sizes[0]));
 | 
						|
            }
 | 
						|
        });
 | 
						|
    }
 | 
						|
    else if (right) {
 | 
						|
        instance = Split(['#center-pane', '#right-pane'], {
 | 
						|
            sizes: [100 - rightPaneWidth, rightPaneWidth],
 | 
						|
            gutterSize: 5,
 | 
						|
            onDragEnd: sizes => {
 | 
						|
                options.save('rightPaneWidth', Math.round(sizes[1]));
 | 
						|
            }
 | 
						|
        });
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
export default {
 | 
						|
    setupSplit
 | 
						|
}; |