-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
livewire.php
102 lines (85 loc) · 4.25 KB
/
livewire.php
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
<?php
use Alfred\Workflows\Workflow;
use AlgoliaSearch\Client as Algolia;
use AlgoliaSearch\Version as AlgoliaUserAgent;
require __DIR__ . '/vendor/autoload.php';
$query = $argv[1];
$subtext = empty($_ENV['alfred_theme_subtext']) ? '0' : $_ENV['alfred_theme_subtext'];
$workflow = new Workflow;
$parsedown = new Parsedown;
$algolia = new Algolia('BH4D9OD16A', 'cec0554d960fa30b4b0b610f372a8636'); // Livewire
AlgoliaUserAgent::addSuffixUserAgentSegment('Livewire Docs Alfred Workflow', '0.1.2');
$index = $algolia->initIndex('livewire-framework');
$search = $index->search($query, ['facetFilters' => [
sprintf('version:%s', $branch ?: '2.x'),
]]);
$results = $search['hits'];
$subtextSupported = $subtext === '0' || $subtext === '2';
if (empty($results)) {
$google = sprintf('https://www.google.com/search?q=%s', rawurlencode("laravel livewire {$query}"));
$workflow->result()
->title($subtextSupported ? 'Search Google' : 'No match found. Search Google...')
->icon('google.png')
->subtitle(sprintf('No match found. Search Google for: "%s"', $query))
->arg($google)
->quicklookurl($google)
->valid(true);
$workflow->result()
->title($subtextSupported ? 'Open Docs' : 'No match found. Open docs...')
->icon('icon.png')
->subtitle('No match found. Open https://laravel-livewire.com/docs/...')
->arg('https://laravel-livewire.com/docs/')
->quicklookurl('https://laravel-livewire.com/docs/')
->valid(true);
echo $workflow->output();
exit;
}
$urls = [];
foreach ($results as $hit) {
$highestLvl = $hit['hierarchy']['lvl6'] ? 6 : ($hit['hierarchy']['lvl5'] ? 5 : ($hit['hierarchy']['lvl4'] ? 4 : ($hit['hierarchy']['lvl3'] ? 3 : ($hit['hierarchy']['lvl2'] ? 2 : ($hit['hierarchy']['lvl1'] ? 1 : 0)))));
$title = $hit['hierarchy']['lvl' . $highestLvl];
$currentLvl = 0;
$subtitle = $hit['hierarchy']['lvl0'];
while ($currentLvl < $highestLvl) {
$currentLvl = $currentLvl + 1;
$subtitle = $subtitle . ' » ' . $hit['hierarchy']['lvl' . $currentLvl];
}
$workflow->result()
->uid($hit['objectID'])
->title($title)
->autocomplete($title)
->subtitle($subtitle)
->arg($hit['url'])
->quicklookurl($hit['url'])
->valid(true);
}
echo $workflow->output();
/*
###############
##########ENJOY!###########
###################################
################@@@@@@(##################
############(@@@@@@@@@@@@@@@@###############(
############@@@@ .@@@@@@@@@@@&#############(#
###########%@@@ .@@@@* @@@@@@@@@@@#############((
(###########@@@@# ,@@@@# @@@@@@@@@@@@#############((.
############@@@@@ @@@@@@@@@@@@@############(((
############@@@@@@@@ @@@@@@@@@@@@@@@(############(((
#############@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(############(((*
##############@@@@@@@@@@@@@@@@@@@@@@@@@@@@#############((((
###############@@@@@@@@@@@@@@@@@@@@@@@@@@##############((((
################@@@@@@@@@@@@@@@@@@@@@@@@###############((((
(#################@@@@@@@@@@@@@@@@@@@(################((((*
#######################(#&&&%########################((((
###################################################((((
.#########,,,,.##########,,,,*#########(,,,,/#####((((
######,,*******######,,******#######,,******##(((((
,******** ,********. ,*******
********* *********. ********
********* *********. ********
******* *********. ********
*********. ********
*********.
*********
*****
*/