Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
beta.ordbok.uib.no
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Språksamlingane
beta.ordbok.uib.no
Commits
c539cfe5
Commit
c539cfe5
authored
3 years ago
by
Henrik Askjer
Browse files
Options
Downloads
Patches
Plain Diff
refactor & fix routing bugs
parent
d4630a57
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/components/Autocomplete.vue
+4
-2
4 additions, 2 deletions
src/components/Autocomplete.vue
src/components/DictionaryView.vue
+18
-14
18 additions, 14 deletions
src/components/DictionaryView.vue
src/components/SearchToolbar.vue
+6
-8
6 additions, 8 deletions
src/components/SearchToolbar.vue
with
28 additions
and
24 deletions
src/components/Autocomplete.vue
+
4
−
2
View file @
c539cfe5
...
@@ -80,7 +80,7 @@ import Menu from './Menu.vue'
...
@@ -80,7 +80,7 @@ import Menu from './Menu.vue'
loading: false,
loading: false,
items: [],
items: [],
search: null,
search: null,
select: null,
select:
this.$route.query? this.$route.query.q :
null,
suggesting: null,
suggesting: null,
menuDialog: false
menuDialog: false
}
}
...
@@ -129,7 +129,9 @@ import Menu from './Menu.vue'
...
@@ -129,7 +129,9 @@ import Menu from './Menu.vue'
this.items.push({q: q, label: q, time: time, search: search
}
)
this.items.push({q: q, label: q, time: time, search: search
}
)
}
}
let self = this
let self = this
self.api.get('suggest?', {params: {q: q, dict: self.get_lang(), n: 80, scope: self.$parent.scope, dform: 'int', meta: 'n', wc: self.$parent.pos_selected
}}
)
let params = {q: q, dict: self.get_lang(), n: 80, scope: self.$parent.scope, dform: 'int', meta: 'n'
}
if ( self.$parent.pos_selected !=
"
ALL
"
) params.wc = self.$parent.pos_selected
self.api.get('suggest?', {params
}
)
.then(async (response) => {
.then(async (response) => {
if (self.$refs.autocomplete.searchInput == q & self.suggesting) {
if (self.$refs.autocomplete.searchInput == q & self.suggesting) {
let suggestions = response.data.a.w.map(item => ({q: q, match: item[0], label: item[0], time: time, lang: [item[1]]
}
))
let suggestions = response.data.a.w.map(item => ({q: q, match: item[0], label: item[0], time: time, lang: [item[1]]
}
))
...
...
This diff is collapsed.
Click to expand it.
src/components/DictionaryView.vue
+
18
−
14
View file @
c539cfe5
...
@@ -110,7 +110,9 @@ function navigate_to_query(self, word) {
...
@@ -110,7 +110,9 @@ function navigate_to_query(self, word) {
let
query
=
self
.
event
?
self
.
event
:
{
q
:
word
}
let
query
=
self
.
event
?
self
.
event
:
{
q
:
word
}
// Get article IDs
// Get article IDs
api
.
get
(
'
articles?
'
,
{
params
:
{
w
:
query
.
match
||
query
.
q
,
dict
:
self
.
lang
,
scope
:
self
.
scope
,
meta
:
'
n
'
,
wc
:
self
.
pos_selected
}}).
then
((
response
)
=>
{
let
params
=
{
w
:
query
.
match
||
query
.
q
,
dict
:
self
.
lang
,
scope
:
self
.
scope
,
meta
:
'
n
'
}
if
(
self
.
pos_selected
!=
"
ALL
"
)
params
.
wc
=
self
.
pos_selected
api
.
get
(
'
articles?
'
,
{
params
}).
then
((
response
)
=>
{
let
article_ids
=
response
.
data
let
article_ids
=
response
.
data
let
unwrapped
=
[]
let
unwrapped
=
[]
for
(
const
d
in
article_ids
)
{
for
(
const
d
in
article_ids
)
{
...
@@ -189,7 +191,8 @@ export default {
...
@@ -189,7 +191,8 @@ export default {
monthly_nn
:
null
,
monthly_nn
:
null
,
event
:
null
,
event
:
null
,
previous
:
this
.
$route
.
fullPath
,
previous
:
this
.
$route
.
fullPath
,
scope
:
"
w
"
scope
:
"
w
"
,
pos_selected
:
"
ALL
"
}
}
},
},
computed
:
{
computed
:
{
...
@@ -233,10 +236,12 @@ export default {
...
@@ -233,10 +236,12 @@ export default {
props
:
track_props
props
:
track_props
})
})
},
},
pos_param
:
function
()
{
pos_param
:
function
()
{
if
(
this
.
pos_selected
)
return
this
.
pos_selected
.
toLowerCase
()
if
(
this
.
pos_selected
)
return
this
.
pos_selected
.
toLowerCase
()
return
""
return
""
},
},
reload_params
:
function
()
{
reload_params
:
function
()
{
let
q
=
(
this
.
$route
.
query
||
this
.
$route
.
params
).
q
let
q
=
(
this
.
$route
.
query
||
this
.
$route
.
params
).
q
if
(
q
)
{
if
(
q
)
{
...
@@ -246,6 +251,7 @@ export default {
...
@@ -246,6 +251,7 @@ export default {
navigate_to_query
(
this
,
q
)
navigate_to_query
(
this
,
q
)
}
}
},
},
update_lang_form
:
function
(
lang
)
{
update_lang_form
:
function
(
lang
)
{
this
.
lang
=
lang
this
.
lang
=
lang
this
.
reload_params
()
this
.
reload_params
()
...
@@ -258,6 +264,7 @@ export default {
...
@@ -258,6 +264,7 @@ export default {
this
.
pos_selected
=
pos
this
.
pos_selected
=
pos
this
.
reload_params
()
this
.
reload_params
()
},
},
article_link_click
:
function
(
item
)
{
article_link_click
:
function
(
item
)
{
if
(
this
.
article
&&
this
.
article
.
article_id
==
item
.
article_id
){
if
(
this
.
article
&&
this
.
article
.
article_id
==
item
.
article_id
){
this
.
article_key
++
this
.
article_key
++
...
@@ -282,7 +289,13 @@ export default {
...
@@ -282,7 +289,13 @@ export default {
},
},
mounted
:
function
(){
mounted
:
function
(){
let
self
=
this
let
self
=
this
this
.
lang
=
'
bm,nn
'
self
.
lang
=
self
.
$route
.
params
.
lang
||
"
bm,nn
"
if
(
self
.
$route
.
query
.
pos
)
{
self
.
pos_selected
=
self
.
$route
.
query
.
pos
.
toUpperCase
()
}
if
(
self
.
$route
.
query
.
scope
)
{
self
.
scope
=
self
.
$route
.
query
.
scope
}
Promise
.
all
([
Promise
.
all
([
axios
.
get
(
ARTICLE_ENDPOINT
+
'
bm/concepts.json
'
).
then
(
function
(
response
){
axios
.
get
(
ARTICLE_ENDPOINT
+
'
bm/concepts.json
'
).
then
(
function
(
response
){
let
concepts
=
response
.
data
.
concepts
let
concepts
=
response
.
data
.
concepts
...
@@ -294,30 +307,19 @@ export default {
...
@@ -294,30 +307,19 @@ export default {
})
})
]).
then
(
function
(
_
)
{
]).
then
(
function
(
_
)
{
self
.
waiting_for_metadata
=
false
self
.
waiting_for_metadata
=
false
if
(
self
.
$route
.
name
==
'
query
'
)
{
if
(
self
.
$route
.
name
==
'
query
'
)
{
self
.
lang
=
self
.
$route
.
params
.
lang
if
(
self
.
$route
.
query
.
pos
)
{
self
.
pos_selected
=
self
.
$route
.
query
.
pos
.
toUpperCase
()
}
if
(
self
.
$route
.
query
.
scope
)
{
self
.
scope
=
self
.
$route
.
query
.
scope
}
navigate_to_query
(
self
,
self
.
$route
.
query
.
q
)
navigate_to_query
(
self
,
self
.
$route
.
query
.
q
)
}
}
else
if
(
self
.
$route
.
name
==
'
search
'
)
{
else
if
(
self
.
$route
.
name
==
'
search
'
)
{
self
.
lang
=
self
.
$route
.
params
.
lang
navigate_to_query
(
self
,
self
.
$route
.
params
.
query
)
navigate_to_query
(
self
,
self
.
$route
.
params
.
query
)
}
}
else
if
(
self
.
$route
.
name
==
'
word
'
)
{
else
if
(
self
.
$route
.
name
==
'
word
'
)
{
self
.
lang
=
self
.
$route
.
params
.
lang
navigate_to_query
(
self
,
self
.
$route
.
params
.
query
)
navigate_to_query
(
self
,
self
.
$route
.
params
.
query
)
}
}
else
if
(
self
.
$route
.
name
==
'
lookup
'
){
else
if
(
self
.
$route
.
name
==
'
lookup
'
){
navigate_to_article
(
self
,
self
.
$route
.
path
)
navigate_to_article
(
self
,
self
.
$route
.
path
)
}
}
else
{
else
{
self
.
lang
=
self
.
$route
.
params
.
lang
||
self
.
lang
self
.
waiting_for_articles
=
false
self
.
waiting_for_articles
=
false
history
.
replaceState
({
article
:
self
.
article
,
history
.
replaceState
({
article
:
self
.
article
,
search_results
:
self
.
search_results
,
search_results
:
self
.
search_results
,
...
@@ -353,6 +355,8 @@ export default {
...
@@ -353,6 +355,8 @@ export default {
self
.
article
=
event
.
state
.
article
self
.
article
=
event
.
state
.
article
self
.
search_results
=
event
.
state
.
search_results
self
.
search_results
=
event
.
state
.
search_results
self
.
lang
=
event
.
state
.
lang
self
.
lang
=
event
.
state
.
lang
self
.
pos_selected
=
event
.
pos_selected
self
.
scope
=
event
.
scope
self
.
error
=
event
.
state
.
error
self
.
error
=
event
.
state
.
error
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
src/components/SearchToolbar.vue
+
6
−
8
View file @
c539cfe5
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
<v-row
>
<v-row
>
<v-col
:cols=
"$vuetify.breakpoint.mdAndUp ? 3 : 12"
>
<v-col
:cols=
"$vuetify.breakpoint.mdAndUp ? 3 : 12"
>
<v-select
rounded
<v-select
rounded
v-model=
"pos_selected"
v-model=
"
$parent.
pos_selected"
hide-details
hide-details
outlined
outlined
flat
flat
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
</v-col>
</v-col>
<v-col
:cols=
"$vuetify.breakpoint.mdAndUp ? 3 : 12"
>
<v-col
:cols=
"$vuetify.breakpoint.mdAndUp ? 3 : 12"
>
<v-select
rounded
<v-select
rounded
v-model=
"
scope_selected
"
v-model=
"
$parent.scope
"
hide-details=
""
hide-details=
""
outlined
outlined
dense
dense
...
@@ -34,11 +34,9 @@ export default {
...
@@ -34,11 +34,9 @@ export default {
name
:
"
SearchToolbar
"
,
name
:
"
SearchToolbar
"
,
data
()
{
data
()
{
return
{
return
{
pos_selected
:
{
text
:
this
.
$t
(
"
pos.ALL
"
)
,
value
:
"
ALL
"
},
pos_items
:
[
"
ALL
"
,
"
NOUN
"
,
"
PRON
"
,
"
DET
"
,
"
ADJ
"
,
"
CCONJ
"
,
"
SCONJ
"
,
"
ADV
"
,
"
VERB
"
,
"
INTJ
"
].
map
(
text
=>
{
pos_items
:
[
"
ALL
"
,
"
NOUN
"
,
"
PRON
"
,
"
DET
"
,
"
ADJ
"
,
"
CCONJ
"
,
"
SCONJ
"
,
"
ADV
"
,
"
VERB
"
,
"
INTJ
"
].
map
(
text
=>
{
return
{
text
:
this
.
$t
(
"
pos.
"
+
text
),
value
:
text
}
return
{
text
:
this
.
$t
(
"
pos.
"
+
text
),
value
:
text
}
}),
}),
scope_selected
:
{
text
:
this
.
$t
(
"
scope.w
"
),
value
:
"
w
"
},
scope_items
:
[
"
w
"
,
"
x
"
,
"
wx
"
].
map
(
text
=>
{
scope_items
:
[
"
w
"
,
"
x
"
,
"
wx
"
].
map
(
text
=>
{
return
{
text
:
this
.
$t
(
"
scope.
"
+
text
),
value
:
text
}
return
{
text
:
this
.
$t
(
"
scope.
"
+
text
),
value
:
text
}
})
})
...
@@ -46,12 +44,12 @@ export default {
...
@@ -46,12 +44,12 @@ export default {
},
},
methods
:
{
methods
:
{
updatePos
(
pos
)
{
updatePos
(
pos
)
{
this
.
$emit
(
'
updatePos
'
,
pos
==
'
ALL
'
?
null
:
pos
)
this
.
$emit
(
'
updatePos
'
,
pos
)
},
},
updateScope
(
scope
)
{
updateScope
(
scope
)
{
this
.
$emit
(
'
updateScope
'
,
scope
)
this
.
$emit
(
'
updateScope
'
,
scope
)
}
}
,
}
}
}
}
</
script
>
</
script
>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment