๐Ÿ“ฆ techouse / alfred-flutter-docs

๐Ÿ“„ create_index.py ยท 72 lines
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#!/usr/bin/env python3
import json
import requests

res = requests.get(
    "https://api.flutter.dev/flutter/index.json"
)  # official Flutter docs index; currently contains about 62k indices

if res.ok:
    data = res.json()

    # filters with weights
    filters = {
        "library": 2,
        "class": 2,
        "mixin": 3,
        "extension": 3,
        "typedef": 3,
        "method": 4,
        "accessor": 4,
        "operator": 4,
        "constant": 4,
        "property": 4,
        "constructor": 4,
        "top-level property": 5,
        "function": 5,
        "enum": 5,
        "top-level constant": 5,
    }

    # index of kinds
    kinds = {
        0: "accessor",
        1: "constant",
        2: "constructor",
        3: "class",
        4: "dynamic",
        5: "enum",
        6: "extension",
        7: "function",
        8: "library",
        9: "method",
        10: "mixin",
        11: "Never",
        12: "package",
        13: "parameter",
        14: "prefix",
        15: "property",
        16: "SDK",
        17: "topic",
        18: "top-level constant",
        19: "top-level property",
        20: "typedef",
        21: "type parameter",
    }

    full_data = []

    for el in data:
        if "kind" in el and el["kind"] in kinds:
            el["type"] = kinds[el["kind"]]
            el["weight"] = el["kind"]
            del el["kind"]
            if "enclosedBy" in el:
                if "kind" in el["enclosedBy"]:
                    el["enclosedBy"]["type"] = kinds[el["enclosedBy"]["kind"]]
                    del el["enclosedBy"]["kind"]
        full_data.append(el)

    with open("full_index.json", "w") as out_fh:
        json.dump(full_data, out_fh)