Compare commits
4 commits
d8ce172716
...
760494dd6d
Author | SHA1 | Date | |
---|---|---|---|
760494dd6d | |||
aa2b1b1fee | |||
059e25a000 | |||
abc53d2d06 |
4 changed files with 51 additions and 23 deletions
7
static/css/oml.css
Normal file
7
static/css/oml.css
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
.OMLQuote {
|
||||||
|
background-color: rgb(255, 255, 255);
|
||||||
|
}
|
||||||
|
|
||||||
|
.OMLAnnotation.selected .OMLQuote {
|
||||||
|
background-color: rgb(128, 192, 255);
|
||||||
|
}
|
|
@ -4,6 +4,7 @@
|
||||||
<title>Open Media Library</title>
|
<title>Open Media Library</title>
|
||||||
<meta charset="UTF-8"/>
|
<meta charset="UTF-8"/>
|
||||||
<link href="/static/png/oml.png" rel="icon" type="image/png">
|
<link href="/static/png/oml.png" rel="icon" type="image/png">
|
||||||
|
<link href="/static/css/oml.css" rel="stylesheet" type="text/css">
|
||||||
<script src="/static/js/oml.js?1" type="text/javascript"></script>
|
<script src="/static/js/oml.js?1" type="text/javascript"></script>
|
||||||
<meta name="google" value="notranslate"/>
|
<meta name="google" value="notranslate"/>
|
||||||
</head>
|
</head>
|
||||||
|
|
|
@ -1,7 +1,22 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
oml.ui.annotation = function(annotation, $iframe) {
|
oml.ui.annotation = function(annotation, $iframe) {
|
||||||
var $arrayEditable = Ox.ArrayEditable({
|
var $quote = Ox.Element().addClass('OxSelectable OMLQuote').css({
|
||||||
|
backgroundColor: 'white',
|
||||||
|
color: 'black',
|
||||||
|
fontFamily: 'Georgia, Palatino, DejaVu Serif, Book Antiqua, Palatino Linotype, Times New Roman, serif',
|
||||||
|
fontSize: '14px',
|
||||||
|
lineHeight: '21px',
|
||||||
|
padding: '8px'
|
||||||
|
}).html(Ox.encodeHTMLEntities(annotation.text).replace(/\n/g, '<br/>')).on({
|
||||||
|
click: function(event) {
|
||||||
|
that.select()
|
||||||
|
$iframe.postMessage('selectAnnotation', {
|
||||||
|
id: annotation.id
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
var $note = Ox.ArrayEditable({
|
||||||
editing: true,
|
editing: true,
|
||||||
items: (annotation.comments || []).map(function(comment) {
|
items: (annotation.comments || []).map(function(comment) {
|
||||||
comment.editable = true
|
comment.editable = true
|
||||||
|
@ -9,7 +24,8 @@ oml.ui.annotation = function(annotation, $iframe) {
|
||||||
}),
|
}),
|
||||||
type: 'textarea'
|
type: 'textarea'
|
||||||
}).css({
|
}).css({
|
||||||
minHeight: '16px'
|
margin: '2px',
|
||||||
|
minHeight: '12px'
|
||||||
}).bindEvent({
|
}).bindEvent({
|
||||||
submit: function(data) {
|
submit: function(data) {
|
||||||
var comment = Ox.getObjectById(annotation.comments, data.id)
|
var comment = Ox.getObjectById(annotation.comments, data.id)
|
||||||
|
@ -30,32 +46,23 @@ oml.ui.annotation = function(annotation, $iframe) {
|
||||||
var that = Ox.Element().attr({
|
var that = Ox.Element().attr({
|
||||||
id: 'a-' + annotation.id
|
id: 'a-' + annotation.id
|
||||||
}).addClass(
|
}).addClass(
|
||||||
'OxSelectable'
|
'OxSelectable OMLAnnotation'
|
||||||
).css({
|
).css({
|
||||||
borderBottom: '1px solid rgb(208, 208, 208)',
|
borderBottom: '1px solid rgb(208, 208, 208)',
|
||||||
}).append(
|
}).append($quote).append($note);
|
||||||
Ox.Element().addClass('OxSelectable').css({
|
|
||||||
backgroundColor: 'white',
|
|
||||||
color: 'black',
|
|
||||||
fontFamily: 'Georgia, Palatino, DejaVu Serif, Book Antiqua, Palatino Linotype, Times New Roman, serif',
|
|
||||||
fontSize: '14px',
|
|
||||||
lineHeight: '21px',
|
|
||||||
padding: '8px'
|
|
||||||
}).html(Ox.encodeHTMLEntities(annotation.text).replace(/\n/g, '<br/>')).on({
|
|
||||||
click: function(event) {
|
|
||||||
$iframe.postMessage('selectAnnotation', {
|
|
||||||
id: annotation.id
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
).append($arrayEditable);
|
|
||||||
that.annotate = function() {
|
that.annotate = function() {
|
||||||
var item = {
|
var item = {
|
||||||
id: 'note', value: '', editable: true
|
id: 'note', value: '', editable: true
|
||||||
}
|
}
|
||||||
$arrayEditable.addItem(0, item)
|
}
|
||||||
.options({selected: item.id})
|
that.deselect = function() {
|
||||||
.editItem();
|
that.removeClass('selected')
|
||||||
|
}
|
||||||
|
that.select = function () {
|
||||||
|
let selected = document.querySelector('.OMLAnnotation.selected')
|
||||||
|
selected && selected.classList.remove('selected')
|
||||||
|
that.addClass('selected')
|
||||||
}
|
}
|
||||||
return that;
|
return that;
|
||||||
};
|
};
|
||||||
|
|
|
@ -8,18 +8,31 @@ oml.ui.annotationPanel = function() {
|
||||||
disabled: true,
|
disabled: true,
|
||||||
style: 'symbol',
|
style: 'symbol',
|
||||||
title: 'add',
|
title: 'add',
|
||||||
|
tooltip: Ox._('Add Quote'),
|
||||||
type: 'image'
|
type: 'image'
|
||||||
}).appendTo($bar);
|
}).appendTo($bar);
|
||||||
|
|
||||||
var $menuButton = Ox.MenuButton({
|
var $menuButton = Ox.MenuButton({
|
||||||
items: [
|
items: [
|
||||||
{id: 'sortAnnotations', title: 'Sort Annotations', disabled: true}
|
{id: 'showAnnotations', title: Ox._('Show Annotations'), disabled: true},
|
||||||
|
{group: 'sort', min: 1, max: 1, items: [
|
||||||
|
{id: 'all', title: Ox._('All Annotations'), checked: true},
|
||||||
|
{id: 'my', title: Ox._('My Annotations'), checked: false},
|
||||||
|
]},
|
||||||
|
{},
|
||||||
|
{id: 'sortAnnotations', title: Ox._('Sort Annotations'), disabled: true},
|
||||||
|
{group: 'sort', min: 1, max: 1, items: [
|
||||||
|
{id: 'position', title: Ox._('By Position'), checked: true},
|
||||||
|
{id: 'text', title: Ox._('By Note Text'), checked: false},
|
||||||
|
{id: 'date', title: Ox._('By Date Added'), checked: false}
|
||||||
|
]},
|
||||||
],
|
],
|
||||||
style: 'square',
|
style: 'square',
|
||||||
title: 'set',
|
title: 'set',
|
||||||
type: 'image',
|
type: 'image',
|
||||||
width: 16
|
width: 16
|
||||||
}).css({
|
}).css({
|
||||||
|
// borderColor: 'transparent',
|
||||||
float: 'right'
|
float: 'right'
|
||||||
}).appendTo($bar);
|
}).appendTo($bar);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue