Skip to content
Snippets Groups Projects
Commit 8fa42aa4 authored by dcz's avatar dcz
Browse files

Merge remote-tracking branch 'remotes/github/unified-frame-edit-view-vue-dcz'...

Merge remote-tracking branch 'remotes/github/unified-frame-edit-view-vue-dcz' into unified-frame-edit-view-vue-dcz
parents edc2177f 319d4f61
Branches
Tags
No related merge requests found
......@@ -7,7 +7,8 @@ export default {
entryId: null,
lexicalUnitId: null,
unifiedFrameId: null,
isEdit: false
isEdit: false,
gettext: window.gettext,
};
},
components: {UnificationSwitchableList, UnificationRightPane},
......@@ -22,6 +23,13 @@ export default {
this.isEdit = true;
}
},
mounted () {
Split(['#right-pane', '#examples'], {
direction: 'vertical',
sizes: [75, 25],
gutterSize: 4,
});
},
template: `
<div id="entries-list" class="col h-100 w-100 px-0">
<div id="entries-list-div" class="col p-0 h-100 w-100 overflow-auto">
......@@ -32,11 +40,27 @@ export default {
</div>
</div>
<div id="entry-display" class="col h-100 p-0">
<div id="right-pane">
<unification-right-pane
:entryId="entryId"
:lexicalUnitId="lexicalUnitId"
:initialUnifiedFrameId="unifiedFrameId"
:initialIsEdit="isEdit" />
</div>
<div class="col w-100 p-0 tab-pane" id="examples">
<table id="unmatched-examples" class="table table-sm table-hover">
<thead>
<tr>
<th scope="col">{{ gettext("Przykład") }}</th>
<th scope="col">{{ gettext("Źródło") }}</th>
<th scope="col">{{ gettext("Opinia") }}</th>
</tr>
</thead>
<tbody id="unmatched-examples-list">
</tbody>
</table>
<p class="mx-1 my-1" id="unmatched-no-examples">{{ gettext("Brak przykładów") }}</p>
</div>
</div>
`
};
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment