Search in sources :

Example 1 with AnnotationEditorBase

use of de.tudarmstadt.ukp.clarin.webanno.api.annotation.AnnotationEditorBase in project webanno by webanno.

the class AnnotationPage method actionCompletePreferencesChange.

private void actionCompletePreferencesChange(AjaxRequestTarget aTarget) {
    try {
        AnnotatorState state = getModelObject();
        JCas jCas = getEditorCas();
        // The number of visible sentences may have changed - let the state recalculate
        // the visible sentences
        Sentence sentence = selectByAddr(jCas, Sentence.class, state.getFirstVisibleUnitAddress());
        state.setFirstVisibleUnit(sentence);
        // The selection of layers may have changed. Update the dropdown
        detailEditor.getAnnotationFeatureForm().updateLayersDropdown();
        AnnotationEditorBase newAnnotationEditor = createAnnotationEditor();
        annotationEditor.replaceWith(newAnnotationEditor);
        annotationEditor = newAnnotationEditor;
        // Reload all AJAX-enabled children of the page but not the page itself!
        WicketUtil.refreshPage(aTarget, getPage());
    } catch (Exception e) {
        LOG.info("Error reading CAS " + e.getMessage());
        error("Error reading CAS " + e.getMessage());
    }
}
Also used : AnnotationEditorBase(de.tudarmstadt.ukp.clarin.webanno.api.annotation.AnnotationEditorBase) AnnotatorState(de.tudarmstadt.ukp.clarin.webanno.api.annotation.model.AnnotatorState) JCas(org.apache.uima.jcas.JCas) Sentence(de.tudarmstadt.ukp.dkpro.core.api.segmentation.type.Sentence) NoResultException(javax.persistence.NoResultException) IOException(java.io.IOException)

Example 2 with AnnotationEditorBase

use of de.tudarmstadt.ukp.clarin.webanno.api.annotation.AnnotationEditorBase in project webanno by webanno.

the class AnnotationPage method actionLoadDocument.

protected void actionLoadDocument(AjaxRequestTarget aTarget, int aFocus) {
    LOG.info("BEGIN LOAD_DOCUMENT_ACTION at focus " + aFocus);
    AnnotatorState state = getModelObject();
    state.setUser(userRepository.getCurrentUser());
    try {
        // Check if there is an annotation document entry in the database. If there is none,
        // create one.
        AnnotationDocument annotationDocument = documentService.createOrGetAnnotationDocument(state.getDocument(), state.getUser());
        // Read the CAS
        JCas editorCas = documentService.readAnnotationCas(annotationDocument);
        // Update the annotation document CAS
        annotationService.upgradeCas(editorCas.getCas(), annotationDocument);
        // After creating an new CAS or upgrading the CAS, we need to save it
        documentService.writeAnnotationCas(editorCas.getCas().getJCas(), annotationDocument, false);
        // (Re)initialize brat model after potential creating / upgrading CAS
        state.reset();
        // Load constraints
        state.setConstraints(constraintsService.loadConstraints(state.getProject()));
        // Load user preferences
        PreferencesUtil.loadPreferences(state.getUser().getUsername(), settingsService, projectService, annotationService, state, state.getMode());
        // if project is changed, reset some project specific settings
        if (currentprojectId != state.getProject().getId()) {
            state.clearRememberedFeatures();
            currentprojectId = state.getProject().getId();
        }
        // Initialize the visible content
        state.moveToUnit(editorCas, aFocus);
        gotoPageTextField.setModelObject(getModelObject().getFirstVisibleUnitIndex());
        // Set the actual editor component. This has to happen *before* any AJAX refreshs are
        // scheduled and *after* the preferences have been loaded (because the current editor
        // type is set in the preferences.
        AnnotationEditorBase newAnnotationEditor = createAnnotationEditor();
        annotationEditor.replaceWith(newAnnotationEditor);
        annotationEditor = newAnnotationEditor;
        // Update document state
        if (SourceDocumentState.NEW.equals(state.getDocument().getState())) {
            documentService.transitionSourceDocumentState(state.getDocument(), NEW_TO_ANNOTATION_IN_PROGRESS);
        }
        // Reset the editor (we reload the page content below, so in order not to schedule
        // a double-update, we pass null here)
        detailEditor.reset(null);
        // Populate the layer dropdown box
        detailEditor.loadFeatureEditorModels(editorCas, null);
        if (aTarget != null) {
            // Update URL for current document
            updateUrlFragment(aTarget);
            WicketUtil.refreshPage(aTarget, getPage());
        }
        applicationEventPublisherHolder.get().publishEvent(new DocumentOpenedEvent(this, editorCas, getModelObject().getDocument(), getModelObject().getUser().getUsername()));
        LOG.debug("Configured BratAnnotatorModel for user [" + state.getUser().getUsername() + "] f:[" + state.getFirstVisibleUnitIndex() + "] l:[" + state.getLastVisibleUnitIndex() + "] s:[" + state.getFocusUnitIndex() + "]");
    } catch (Exception e) {
        handleException(aTarget, e);
    }
    LOG.info("END LOAD_DOCUMENT_ACTION");
}
Also used : AnnotationEditorBase(de.tudarmstadt.ukp.clarin.webanno.api.annotation.AnnotationEditorBase) AnnotatorState(de.tudarmstadt.ukp.clarin.webanno.api.annotation.model.AnnotatorState) JCas(org.apache.uima.jcas.JCas) AnnotationDocument(de.tudarmstadt.ukp.clarin.webanno.model.AnnotationDocument) DocumentOpenedEvent(de.tudarmstadt.ukp.clarin.webanno.api.annotation.event.DocumentOpenedEvent) NoResultException(javax.persistence.NoResultException) IOException(java.io.IOException)

Aggregations

AnnotationEditorBase (de.tudarmstadt.ukp.clarin.webanno.api.annotation.AnnotationEditorBase)2 AnnotatorState (de.tudarmstadt.ukp.clarin.webanno.api.annotation.model.AnnotatorState)2 IOException (java.io.IOException)2 NoResultException (javax.persistence.NoResultException)2 JCas (org.apache.uima.jcas.JCas)2 DocumentOpenedEvent (de.tudarmstadt.ukp.clarin.webanno.api.annotation.event.DocumentOpenedEvent)1 AnnotationDocument (de.tudarmstadt.ukp.clarin.webanno.model.AnnotationDocument)1 Sentence (de.tudarmstadt.ukp.dkpro.core.api.segmentation.type.Sentence)1