-
Notifications
You must be signed in to change notification settings - Fork 8
/
.phoenix.js
525 lines (420 loc) · 10 KB
/
.phoenix.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
// Preferences
Phoenix.set({
daemon: true,
openAtLogin: true,
});
Event.on('willTerminate', () => {
Storage.remove('lastPositions');
Storage.remove('maxHeight');
})
function frameRatio(a, b){
const widthRatio = b.width / a.width;
const heightRatio = b.height / a.height;
return ({width, height, x, y}) => {
width = Math.round(width * widthRatio);
height = Math.round(height * heightRatio);
x = Math.round(b.x + (x - a.x) * widthRatio);
y = Math.round(b.y + (y - a.y) * heightRatio);
return {width, height, x, y};
};
}
// Globals
const HIDDEN_DOCK_MARGIN = 3;
const INCREMENT = 0.05;
const CONTROL_SHIFT = ['ctrl', 'shift'];
const CONTROL_ALT_SHIFT = ['ctrl', 'alt', 'shift'];
// Relative Directions
const LEFT = 'left';
const RIGHT = 'right';
const CENTRE = 'centre';
// Cardinal Directions
const NW = 'nw';
const NE = 'ne';
const SE = 'se';
const SW = 'sw';
const EAST = 'east';
const WEST = 'west';
const NORTH = 'north';
const SOUTH = 'south';
class ChainWindow {
constructor(window, margin = 10) {
this.window = window;
this.margin = margin;
this.frame = window.frame();
this.parent = window.screen().flippedVisibleFrame();
}
// Difference frame
difference() {
const { parent, frame } = this;
return {
x: parent.x - frame.x,
y: parent.y - frame.y,
width: parent.width - frame.width,
height: parent.height - frame.height,
};
}
// Set frame
set() {
const { window, frame } = this;
window.setFrame(frame);
this.frame = window.frame();
return this;
}
// Move to screen
screen(screen) {
this.parent = screen.flippedVisibleFrame();
return this;
}
// Move to cardinal directions NW, NE, SE, SW or relative direction CENTRE
to(direction) {
const { parent, margin } = this;
const difference = this.difference();
// X-coordinate
switch (direction) {
case NW:
case SW:
this.frame.x = parent.x + margin;
break;
case NE:
case SE:
this.frame.x = parent.x + difference.width - margin ;
break;
case CENTRE:
this.frame.x = parent.x + (difference.width / 2);
break;
default:
}
// Y-coordinate
switch (direction) {
case NW:
case NE:
this.frame.y = parent.y + margin;
break;
case SE:
case SW:
this.frame.y = parent.y + difference.height - margin;
break;
case CENTRE:
this.frame.y = parent.y + (difference.height / 2);
break;
default:
}
return this;
}
// Resize SE-corner by factor
resize(factor) {
const { parent, margin, frame } = this;
const difference = this.difference();
let delta;
if (factor.width) {
delta = Math.min(parent.width * factor.width, difference.x + difference.width - margin);
this.frame.width += delta;
} else if (factor.height) {
delta = Math.min(
parent.height * factor.height,
difference.height - frame.y + margin + HIDDEN_DOCK_MARGIN,
);
this.frame.height += delta;
}
return this;
}
// Maximise to fill whole screen
maximise() {
const { parent, margin } = this;
this.frame.width = parent.width - (2 * margin);
this.frame.height = parent.height - (2 * margin);
return this;
}
// Halve width
halve() {
this.frame.width /= 2;
return this;
}
// Fit to screen
fit() {
const difference = this.difference();
if (difference.width < 0 || difference.height < 0) {
this.maximise();
}
return this;
}
// Fill relatively to LEFT or RIGHT-side of screen, or fill whole screen
fill(direction) {
this.maximise();
if (direction === LEFT || direction === RIGHT) {
this.halve();
}
switch (direction) {
case LEFT:
this.to(NW);
break;
case RIGHT:
this.to(NE);
break;
default:
this.to(NW);
}
return this;
}
}
// Chain a Window-object
Window.prototype.chain = function () {
return new ChainWindow(this);
};
// To direction in screen
Window.prototype.to = function (direction, screen) {
const window = this.chain();
if (screen) {
window.screen(screen).fit();
}
window.to(direction).set();
};
// Fill in screen
Window.prototype.fill = function (direction, screen) {
const window = this.chain();
if (screen) {
window.screen(screen);
}
window.fill(direction).set();
// Ensure position for windows larger than expected
if (direction === RIGHT) {
window.to(NE).set();
}
};
// Resize by factor
Window.prototype.resize = function (factor) {
this.chain().resize(factor).set();
};
/* Position Bindings */
Key.on('q', CONTROL_SHIFT, () => {
const window = Window.focused();
if (window) {
window.to(NW);
}
});
Key.on('w', CONTROL_SHIFT, () => {
const window = Window.focused();
if (window) {
window.to(NE);
}
});
Key.on('s', CONTROL_SHIFT, () => {
const window = Window.focused();
if (window) {
window.to(SE);
}
});
Key.on('a', CONTROL_SHIFT, () => {
const window = Window.focused();
if (window) {
window.to(SW);
}
});
Key.on('z', CONTROL_SHIFT, () => {
const window = Window.focused();
if (window) {
window.to(CENTRE);
}
});
Key.on('q', CONTROL_ALT_SHIFT, () => {
const window = Window.focused();
if (window) {
window.to(NW, window.screen().next());
}
});
Key.on('w', CONTROL_ALT_SHIFT, () => {
const window = Window.focused();
if (window) {
window.to(NE, window.screen().next());
}
});
Key.on('s', CONTROL_ALT_SHIFT, () => {
const window = Window.focused();
if (window) {
window.to(SE, window.screen().next());
}
});
Key.on('a', CONTROL_ALT_SHIFT, () => {
const window = Window.focused();
if (window) {
window.to(SW, window.screen().next());
}
});
Key.on('z', CONTROL_ALT_SHIFT, () => {
const window = Window.focused();
if (window) {
window.to(CENTRE, window.screen().next());
}
});
/* Fill Bindings */
Key.on('o', CONTROL_SHIFT, () => {
const window = Window.focused();
if (window) {
window.fill(LEFT);
}
});
Key.on('p', CONTROL_SHIFT, () => {
const window = Window.focused();
if (window) {
window.fill(RIGHT);
}
});
/* Size Bindings */
Key.on("'", CONTROL_SHIFT, () => {
const window = Window.focused();
if (window) {
window.resize({ height: INCREMENT });
}
});
Key.on(';', CONTROL_SHIFT, () => {
const window = Window.focused();
if (window) {
window.resize({ height: -INCREMENT });
}
});
/* Focus Bindings */
Key.on('<', CONTROL_SHIFT, () => {
const last = _.last(Window.recent());
if (last) {
last.focus();
}
});
Key.on('.', CONTROL_SHIFT, () => {
const window = Window.focused();
if(!window){
return
}
const oldScreen = window.screen();
const newScreen = oldScreen.next();
if(oldScreen.isEqual(newScreen)){
return;
}
const ratio = frameRatio(
oldScreen.flippedVisibleFrame(),
newScreen.flippedVisibleFrame(),
)
window.setFrame(ratio(window.frame()));
})
/** toggle max screen **/
Key.on('f', CONTROL_SHIFT, () => {
const window =
Window.focused();
if(!window) return;
const margin =
window.chain().margin;
const windowId =
window.hash();
const screen =
window.screen().flippedVisibleFrame()
let lastPositions =
Storage.get('lastPositions') || {};
if(!lastPositions[windowId]){
lastPositions[windowId] =
{x: window.topLeft().x, y: window.topLeft().y, width: window.size().width, height: window.size().height}
}
const maxHeight =
Storage.get('maxHeight') || screen.height - (2*margin);
const maxWidth =
Storage.get('maxWidth') || screen.width - (margin);
if(window.size().width !== maxWidth || window.size().height !== maxHeight){
lastPositions[windowId] =
{x: window.topLeft().x, y: window.topLeft().y, width: window.size().width, height: window.size().height}
Storage.set('lastPositions', lastPositions)
window.setTopLeft({
x: screen.x + margin,
y: screen.y + margin,
})
window.setSize({
height: screen.height - (2*margin),
width: screen.width - (1.6 * margin)
});
Storage.set('maxHeight', window.size().height);
Storage.set('maxWidth', window.size().width);
return;
}
if(window){
window.setSize({
width: lastPositions[windowId].width,
height: lastPositions[windowId].height,
});
window.setTopLeft({
x: lastPositions[windowId].x,
y: lastPositions[windowId].y
});
}
})
Key.on('h', CONTROL_SHIFT, function(){
const window =
Window.focused();
if(window){
window.focusClosestNeighbor(WEST);
}
})
Key.on('j', CONTROL_SHIFT, function(){
const window =
Window.focused();
if(window){
window.focusClosestNeighbor(SOUTH);
}
});
Key.on('k', CONTROL_SHIFT, function(){
const window =
Window.focused();
if(window){
window.focusClosestNeighbor(NORTH)
}
})
Key.on('l', CONTROL_SHIFT, function(){
const window =
Window.focused();
if(window){
window.focusClosestNeighbor(EAST)
}
})
Key.on('/', CONTROL_SHIFT, function(){
const window =
Window.focused();
window.setSize({
height: window.size().height / 2,
width: window.size().width
})
})
Key.on('t', CONTROL_SHIFT, function(){
App.launch('Iterm').focus();
})
Key.on('c', CONTROL_SHIFT, function(){
App.launch('Chrome').focus();
})
Key.on('d', CONTROL_SHIFT, function(){
App.launch('Vanilla');
})
/**
* Move window to space on the right
*/
Key.on('right', CONTROL_SHIFT, function(){
const window =
Window.focused();
const space =
Space.active();
if(!window || !space) return;
const nextSpace =
space.next();
space.removeWindows([window]);
nextSpace.addWindows([window]);
window.focus();
});
/**
* Move window to space on the left
*/
Key.on('left', CONTROL_SHIFT, function(){
const window =
Window.focused();
const space =
Space.active();
if(!window || !space) return;
const previousSpace =
space.previous();
space.removeWindows([window]);
previousSpace.addWindows([window]);
window.focus();
})