Compare commits

...

2 commits

Author SHA1 Message Date
j
14e197819d expose findDocumentsSelect and ...Input 2019-12-01 17:45:28 +01:00
j
2889c15dc8 remove documents from index 2019-12-01 17:35:54 +01:00
3 changed files with 7 additions and 5 deletions

View file

@ -36,12 +36,13 @@ class FulltextMixin:
return self.data.get('text', '')
return ''
def delete_fulltext(self):
res = self.elasticsearch().delete(index=self._ES_INDEX, doc_type='document', id=self.id)
def has_fulltext_key():
return bool([k for k in settings.CONFIG['documentKeys'] if k.get('fulltext')])
def delete_fulltext(self):
if self.has_fulltext_key():
res = self.elasticsearch().delete(index=self._ES_INDEX, doc_type='document', id=self.id)
def update_fulltext(self):
if self.has_fulltext_key():
text = self.extract_fulltext()

View file

@ -653,6 +653,7 @@ def delete_document(sender, **kwargs):
if t.file:
t.delete_cache()
t.file.delete(save=False)
t.delete_fulltext()
pre_delete.connect(delete_document, sender=Document)
class ItemProperties(models.Model):

View file

@ -33,7 +33,7 @@ pandora.ui.findDocumentsElement = function() {
}
}),
] : [], [
$findSelect = Ox.Select({
pandora.$ui.findDocumentsSelect = $findSelect = Ox.Select({
id: 'select',
items: [].concat(
pandora.site.documentKeys.filter(function(key) {
@ -70,7 +70,7 @@ pandora.ui.findDocumentsElement = function() {
}
}
}),
$findInput = Ox.Input({
pandora.$ui.findDocumentsInput = $findInput = Ox.Input({
autocomplete: autocompleteFunction(),
autocompleteSelect: true,
autocompleteSelectHighlight: true,