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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
|
use crate::Route;
use gloo_net::http::Request;
use itertools::Itertools;
use lib::lib::*;
use wasm_bindgen::*;
use web_sys::{EventTarget, HtmlInputElement};
use yew::prelude::*;
use yew_router::scope_ext::RouterScopeExt;
#[derive(Properties, Clone, PartialEq, Eq)]
pub struct ResultComponentProps {
result: IndexedResource,
}
#[function_component(ResultComponent)]
fn result_component(props: &ResultComponentProps) -> Html {
html! {
<div>
<a href={props.result.url.clone()}>
{props.result.url.clone()}{"--"}{props.result.title.clone()}{"----"}{props.result.description.clone()}{format!("PRIO: {}", props.result.priority)}
</a>
</div>
}
}
pub struct OSSE {
pub search_query: String,
pub results: Option<Result<Vec<IndexedResource>, String>>, //TODO: some loading?
}
#[derive(Properties, PartialEq, Eq)]
pub struct OSSEProps {
pub api_endpoint: String,
pub initial_search_query: Option<String>,
}
//TODO: Error
pub enum OSSEMessage {
SearchSubmitted,
SearchChanged(String),
SearchFinished(Result<Vec<IndexedResource>, String>),
}
impl Component for OSSE {
type Message = OSSEMessage;
type Properties = OSSEProps;
fn create(ctx: &Context<Self>) -> Self {
let mut search_query = String::from("");
//we push an SearchSubmitted message if inital_search_query is not none
if let Some(initial_search_query) = ctx.props().initial_search_query.clone() {
search_query = initial_search_query;
ctx.link().send_message(OSSEMessage::SearchSubmitted);
}
//WE may have data race between the future and the actual creation.
OSSE {
search_query: urlencoding::decode(search_query.as_str())
.to_owned()
.unwrap()
.to_string(),
results: None,
}
}
fn update(&mut self, ctx: &Context<Self>, msg: Self::Message) -> bool {
match msg {
OSSEMessage::SearchSubmitted => {
let api_endpoint = ctx.props().api_endpoint.clone();
let search_query = self.search_query.clone();
let navigator = ctx.link().navigator().unwrap();
navigator.push(&Route::OSSESearch {
query: urlencoding::encode(search_query.as_str()).to_string(),
});
ctx.link().send_future(async move {
let endpoint = format!("{}/search/{}", api_endpoint, search_query);
let fetched_response = match Request::get(endpoint.as_str()).send().await {
Ok(response) => response,
Err(_) => {
return OSSEMessage::SearchFinished(Err(
"Failed to connect to the API!".to_string(),
))
}
};
let fetched_results: Vec<IndexedResource> = match fetched_response.json().await
{
Err(_) => {
return OSSEMessage::SearchFinished(Err(
"Internal API Error!".to_string()
))
}
Ok(json) => json,
};
OSSEMessage::SearchFinished(Ok(fetched_results))
});
false
}
OSSEMessage::SearchChanged(search_query) => {
self.search_query = search_query;
true
}
OSSEMessage::SearchFinished(search_results) => {
match search_results {
Ok(results) => {
self.results = Some(Ok(results));
}
Err(error) => {
self.results = Some(Err(error));
}
};
true
}
}
}
fn view(&self, ctx: &Context<Self>) -> Html {
let onsubmit = ctx.link().callback(|event: SubmitEvent| {
event.prevent_default();
OSSEMessage::SearchSubmitted
});
let oninput = ctx.link().callback(|event: InputEvent| {
let target: EventTarget = event
.target()
.expect("Event should have a target when dispatched");
let input = target.unchecked_into::<HtmlInputElement>().value();
OSSEMessage::SearchChanged(input)
});
let display_results =
|maybe_results: &Option<Result<Vec<IndexedResource>, String>>| -> Html {
if maybe_results.is_none() {
return html! {};
}
let results = maybe_results.as_ref().unwrap();
if results.is_err() {
return html! {
<p>{format!("ERROR: {}", results.as_ref().err().unwrap())}</p>
};
}
let results = results.as_ref().unwrap();
if !results.is_empty() {
results
.iter()
.sorted()
.map(|r| {
html! {
<div key={r.url.to_owned()}>
<ResultComponent result={r.clone()} />
</div>
}
})
.collect::<Html>()
} else {
html! {
<p>{"No results!"}</p>
}
}
};
html! {
<>
<header>
<nav class="navbar bg-light sticky-top">
<div class="container-fluid">
<div>
<a href="/" class="navbar-brand h1 mx-2">{"OSSE"}</a>
<span class="navbar-text mb-0">{"| Your favorite independent search engine."}</span>
</div>
<a href="https://github.com/Baitinq/OSSE" class="navbar-text">{"Made by Baitinq"}</a>
</div>
</nav>
</header>
<main style="display: flex; flex-direction: column; min-height: 100vh; align-items: center; justify-content: center;">
//SET AT MIDDLE OF VIEWPORT IF NO SEARCHING AND TOP 25% IF SEARCHING
<div class="container">
<div class="row">
<div class="col">
<section class="my-5">
<b class="display-4">{"OSSE"}</b>
<p>{"Your favorite independent search engine."}</p>
<form {onsubmit}>
<div class="input-group input-group-lg my-2">
<input {oninput} value={self.search_query.clone()}type="text" class="form-control" placeholder="Search with OSSE" />
<button class="btn btn-primary" type="submit" >{"Search!"}</button>
</div>
</form>
</section>
<section>
{display_results(&self.results)}
</section>
</div>
</div>
</div>
</main>
<footer class="mt-5">
<nav class="navbar bg-light">
<div class="container-fluid">
<div>
<a href="/" class="navbar-brand h1 mx-2">{"OSSE"}</a>
<span class="navbar-text mb-0">{"| Your favorite independent search engine."}</span>
</div>
<a href="https://github.com/Baitinq/OSSE" class="navbar-text">{"Made by Baitinq"}</a>
</div>
</nav>
</footer>
</>
}
}
}
//Your favorite search engine in navbar
//Search in middle
|