https://github.com/isuke/advanced-poe-filter
Advanced PoE Filter Compiler. Rich syntax for you.
https://github.com/isuke/advanced-poe-filter
compiler filter-of-kalandra path-of-exile pathofexile
Last synced: 2 months ago
JSON representation
Advanced PoE Filter Compiler. Rich syntax for you.
- Host: GitHub
- URL: https://github.com/isuke/advanced-poe-filter
- Owner: isuke
- License: mit
- Created: 2019-01-01T10:33:05.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2024-12-23T23:06:57.000Z (12 months ago)
- Last Synced: 2025-09-14T09:39:11.121Z (3 months ago)
- Topics: compiler, filter-of-kalandra, path-of-exile, pathofexile
- Language: JavaScript
- Homepage: https://github.com/isuke/advanced-poe-filter
- Size: 551 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advanced PoE Filter [](https://github.com/isuke/advanced-poe-filter/actions/workflows/main.yml) []("https://github.com/isuke/git-consistent") [](https://raw.githubusercontent.com/isuke/git-consistent/main/LICENSE) [](https://www.npmjs.com/package/advanced-poe-filter)
Advanced PoE Filter is used by [Filter of Kalandra](https://filter-of-kalandra.netlify.com/).
## What is this?
This is compiler. Convert **rich** filter syntax to PoE filter syntax.
###### input
```
Show "Map Section"
Class "Maps"
SetBorderColor 200 100 50 123
SetTextColor 200 100 50 123
SetBackgroundColor 200 100 50 123
Mixin "Rarity"
Show "Rare"
Rarity = Rare
SetBorderColor Negate()
SetTextColor Grayscale()
SetBackgroundColor Lighten(30%)
```
###### output
```
################################################################################
# Map Section #
################################################################################
# Rarity is "Rare"
Show
Class = "Maps"
Rarity = Rare
SetFontSize 32
SetTextColor 125 125 125 123
SetBackgroundColor 218 144 107 123
SetBorderColor 55 155 205 123
# Rarity is Any
Show
Class = "Maps"
SetFontSize 32
SetTextColor 200 100 50 123
SetBackgroundColor 200 100 50 123
SetBorderColor 200 100 50 123
```
## Usage
```js
import { compile } from 'advanced-poe-filter'
const result = compile(advancedScriptText)
```
## deploy
```sh
$ npm run deploy
```