mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
154 lines
7.2 KiB
Markdown
154 lines
7.2 KiB
Markdown
# documentation
|
|
|
|
for support, join the [discord server](//coming-soon).
|
|
|
|
want to contribute? check the [contribution guidelines](CONTRIBUTING.md).
|
|
|
|
## module creation
|
|
|
|
_to understand best how notion's app works, check out [the electron docs](https://www.electronjs.org/docs/)_
|
|
_and explore the contents of your local extracted `app.asar`._
|
|
|
|
_look through [the existing modules](https://github.com/dragonwocky/notion-enhancer/tree/js/mods/)_
|
|
_for examples of implementing the stuff described below._
|
|
|
|
_testing modules requires running a dev version of the enhancer_
|
|
_(again, see the [contribution guidelines](CONTRIBUTING.md)). a better system is in the works._
|
|
|
|
each directory in the `mods` folder is considered a module, with the entry points `mod.js` and `styles.css`.
|
|
|
|
| file | description |
|
|
| ------------ | ---------------------------------------------------------------------------------------------------- |
|
|
| `mod.js` | **required:** describes the module and contains functional javascript |
|
|
| `styles.css` | **optional:** css file automatically inserted into each app window via the `enhancement://` protocol |
|
|
|
|
> a module that with the primary function of being a hack should be categorised as an extension,
|
|
> while a module that with the primary function of adding styles should be categorised as a theme
|
|
> in the `mod.js` `type` setting.
|
|
|
|
### mod.js
|
|
|
|
```js
|
|
// not valid js!
|
|
// a visual representation of the contents/type
|
|
// of this file's exported object.
|
|
module.exports = {
|
|
id: String of uuidv4,
|
|
name: String of short_name,
|
|
tags?: Array<String> of categories,
|
|
desc: String of markdown,
|
|
version: String of semver,
|
|
author: String of github_username OR {
|
|
name: String of author_name,
|
|
link: String of url,
|
|
avatar: String of image_source,
|
|
},
|
|
options?: Array<{
|
|
key: String,
|
|
label: String,
|
|
type: String in ['toggle', 'select', 'input', 'file'],
|
|
value: Boolean or Array<String> or String or null
|
|
}>,
|
|
hacks?: {
|
|
[k: 'insert-point' (e.g. 'main/createWindow.js')]: function (store) {}
|
|
}
|
|
};
|
|
```
|
|
|
|
| key | value | type |
|
|
| ------- | ----------------------------------------------------------------------------------------------- | ---------------------- |
|
|
| id | **required:** uuidv4 | _string_ |
|
|
| name | **required:** short name (e.g. `'ocean theme'`) | _string_ |
|
|
| tags | **required:** categories/type (e.g. `'extension'`, `'theme'`, `'light'`, `'dark'`) | _array\<string\>_ |
|
|
| desc | **optional:** 1-3 sentence description of what the module is/does, with basic markdown support. | _string_ |
|
|
| version | **required:** semver (e.g. `'0.3.7'`) | _string_ |
|
|
| author | **required:** see below: original extension creator | _string_ or \<object\> |
|
|
| options | **optional:** see below: options made available in the enhancer menu (accessible from the tray) | _array\<object\>_ |
|
|
| hacks | **optional:** see below: code inserted at various points | _object_ |
|
|
|
|
#### author
|
|
|
|
by default this is assumed to be a github username: just pass it as a string and
|
|
the link/avatar will be automatically found.
|
|
|
|
if you'd rather customise this, pass this object:
|
|
|
|
| key | value | type |
|
|
| ------ | ------------------------------------------ | -------- |
|
|
| name | **required:** author's (your?) name | _string_ |
|
|
| link | **required:** link to the author's profile | _string_ |
|
|
| avatar | **required:** url for the author's avatar | _string_ |
|
|
|
|
#### options
|
|
|
|
| key | value | type |
|
|
| ---------- | ---------------------------------------------------------------------------------------- | ----------------- |
|
|
| key | **required:** key to save value to the mod `store` | _string_ |
|
|
| label | **required:** short description/name of option to be shown in menu | _string_ |
|
|
| type | **required:** input type (see below) | _string_ |
|
|
| extensions | **optional:** allowed file extensions (only use with a file option), e.g. `['js', 'ts']` | _array\<string\>_ |
|
|
| value | **optional:** default or possible value/s for option | see below |
|
|
|
|
| type | value |
|
|
| ------ | -------------------- |
|
|
| toggle | _boolean_ |
|
|
| select | _array\<string\>_ |
|
|
| input | _string_ or _number_ |
|
|
| color | _string_ |
|
|
| file | none |
|
|
|
|
> the file option stores only a filepath, not the file itself.
|
|
|
|
#### hacks
|
|
|
|
each "hack" is a function taking 2 arguments.
|
|
|
|
1. the **`store`** argument, which allows access to the module
|
|
settings/options defined in `mod.js` (those set in the menu, or used internally by the module).
|
|
each module store is automatically saved to + loaded from `~/.notion-enhancer/id.json`.
|
|
it can be initialised/accessed with `store({ defaults })`, then used as if it were a normal object.
|
|
2. the **`__exports`** argument, which is the `module.exports` of the file being modded.
|
|
this can be used to call or replace functions from notion.
|
|
|
|
this hack is applied to whichever file (`.js`-only) is set as the function key. these can be found within the `app` folder.
|
|
|
|
files under the `main` folder are executed on app launch in a process shared
|
|
between all app windows (consider it a backend). files under the `renderer` folder are
|
|
executed on window launch in a pre-window process: the client-side javascript
|
|
normally expected to run on a webpage.
|
|
|
|
unless scripts need to change app logic (e.g. to add the tray menu),
|
|
they should usually be applied to `renderer/preload.js` to interact
|
|
with the app window itself.
|
|
|
|
e.g.
|
|
|
|
```js
|
|
// sayhi.js
|
|
module.exports = function (store, __exports) {
|
|
document.addEventListener('readystatechange', (event) => {
|
|
if (document.readyState !== 'complete') return false;
|
|
console.log(store({ name: 'dragonwocky' }).name);
|
|
});
|
|
};
|
|
// mod.js
|
|
module.exports.hacks = {
|
|
'renderer/preload.js': require('./sayhi.js'),
|
|
};
|
|
```
|
|
|
|
#### the `enhancement://` protocol
|
|
|
|
any files within the `mods` folder can be used via the `enhancement://` protocol.
|
|
|
|
for example, accessing an image file within the frameless mod: `<img src="enhancement://frameless/minimise.svg">`.
|
|
|
|
## styles.css
|
|
|
|
styles can be used for custom element insertions, generally hiding/re-spacing elements,
|
|
and particularly: colour theming.
|
|
|
|
the enhancer has been designed with theming in mind, so as much of notion's colours
|
|
and typography as possible (both for the light and dark themes) have been mapped out
|
|
using css variables - check these out in the `mods/core/theme.css` and `mods/dark+/styles.css` files.
|