Action | Shortcut |
---|---|
Jump to the next open tab | ⌘ + Option + Right arrow |
⌘ + Option + Tab |
|
Jump to the previous open tab | ⌘ + Option + Left arrow |
⌘ + Option + Shift + tab |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useEffect } from 'react' | |
function useClickOutside(ref, onClickOutside) { | |
useEffect(() => { | |
const handleClick = (event) => { | |
if (!ref.current || !ref.current.contains(event.target)) { | |
onClickOutside(event) | |
} | |
} | |
window.addEventListener('click', handleClick) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
class App extends Component { | |
componentDidMount() { | |
// Subscribe here | |
} | |
componentWillUnmount() { | |
// Unsubscribe here | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import Router from 'next/router' | |
const HistoryContext = React.createContext([]); | |
export class HistoryProvider extends React.Component { | |
state = { | |
history: [] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import Router from 'next/router' | |
const widthRoute = (Component) => { | |
return class extends React.Component { | |
componentDidMount() { | |
this.route = Router.route() | |
this.forceUpdate() | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import Router from 'next/router' | |
import AppBarMD from 'material-ui/AppBar' | |
import Tabs, { Tab } from 'material-ui/Tabs' | |
const routes = [ | |
'/', | |
'/articles' | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const toDataURL = url => fetch(url) | |
.then(response => response.blob()) | |
.then(blob => new Promise((resolve, reject) => { | |
const reader = new FileReader() | |
reader.onloadend = () => resolve(reader.result) | |
reader.onerror = reject | |
reader.readAsDataURL(blob) | |
})) |
Hi
I am Henrik and I want to create a webextension generator that supports chrome, firefox, opera and safari. The stack I would like to use will contain:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function execInNewTerminalTab { | |
osascript -e 'tell application "Terminal" | |
activate | |
tell application "System Events" to keystroke "t" using command down | |
do script "'"$1"'" in window 1 | |
end tell' | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Selectize.define('inputMaxlength', function(options) { | |
var self = this; | |
this.setup = (function() { | |
var original = self.setup; | |
return function() { | |
original.apply(this, arguments); | |
this.$control_input.attr('maxlength', this.settings.inputMaxlength); | |
}; | |
})(); | |
}); |