update text panel
This commit is contained in:
parent
50740476cb
commit
ab4dfbd340
1 changed files with 39 additions and 26 deletions
|
@ -2,35 +2,28 @@
|
||||||
|
|
||||||
pandora.ui.textPanel = function() {
|
pandora.ui.textPanel = function() {
|
||||||
|
|
||||||
var tags = [
|
var that = Ox.SplitPanel({
|
||||||
'b', 'code', 'em', 'i', 's', 'strong', 'sub', 'sup', 'u',
|
|
||||||
'blockquote', 'h1', 'h2', 'h3', 'p', 'pre',
|
|
||||||
'li', 'ol', 'ul',
|
|
||||||
'table', 'tbody', 'td', 'tfoot', 'th', 'thead', 'tr',
|
|
||||||
'a', 'br', 'img',
|
|
||||||
'rtl'
|
|
||||||
],
|
|
||||||
|
|
||||||
that = Ox.SplitPanel({
|
|
||||||
elements: [
|
elements: [
|
||||||
{element: Ox.Element(), size: 24},
|
{element: Ox.Element(), size: 24},
|
||||||
{element: Ox.Element()},
|
{element: Ox.Element()},
|
||||||
{element: Ox.Element(), size: 16}
|
{element: Ox.Element(), size: 16}
|
||||||
],
|
],
|
||||||
orientation: 'vertical'
|
orientation: 'vertical'
|
||||||
});
|
}),
|
||||||
|
embedURLs,
|
||||||
|
selected;
|
||||||
|
|
||||||
pandora.api.getText({id: pandora.user.ui.text}, function(result) {
|
pandora.api.getText({id: pandora.user.ui.text}, function(result) {
|
||||||
|
|
||||||
Ox.print('TEXT:', result.data);
|
Ox.print('TEXT:', result.data);
|
||||||
|
|
||||||
var text = result.data,
|
var text = result.data;
|
||||||
|
embedURLs = text.type == 'html'
|
||||||
|
? getEmbedURLs(text.text)
|
||||||
|
: [];
|
||||||
|
selected = embedURLs.length ? 0 : -1;
|
||||||
|
|
||||||
embedURLs = text.type == 'html'
|
var $toolbar = Ox.Bar({size: 24}),
|
||||||
? getEmbedURLs(text.text)
|
|
||||||
: [],
|
|
||||||
|
|
||||||
$toolbar = Ox.Bar({size: 24}),
|
|
||||||
|
|
||||||
$editMenu, $uploadButton,
|
$editMenu, $uploadButton,
|
||||||
|
|
||||||
|
@ -61,6 +54,13 @@ pandora.ui.textPanel = function() {
|
||||||
float: 'right',
|
float: 'right',
|
||||||
margin: '4px 2px 4px 2px'
|
margin: '4px 2px 4px 2px'
|
||||||
})
|
})
|
||||||
|
.bindEvent({
|
||||||
|
click: function() {
|
||||||
|
selectEmbed(
|
||||||
|
selected < embedURLs.length - 1 ? selected + 1 : 0
|
||||||
|
);
|
||||||
|
}
|
||||||
|
})
|
||||||
.appendTo($toolbar),
|
.appendTo($toolbar),
|
||||||
|
|
||||||
$currentButton = Ox.Button({
|
$currentButton = Ox.Button({
|
||||||
|
@ -85,6 +85,13 @@ pandora.ui.textPanel = function() {
|
||||||
float: 'right',
|
float: 'right',
|
||||||
margin: '4px 2px 4px 2px'
|
margin: '4px 2px 4px 2px'
|
||||||
})
|
})
|
||||||
|
.bindEvent({
|
||||||
|
click: function() {
|
||||||
|
selectEmbed(
|
||||||
|
selected ? selected - 1 : embedURLs.length - 1
|
||||||
|
);
|
||||||
|
}
|
||||||
|
})
|
||||||
.appendTo($toolbar),
|
.appendTo($toolbar),
|
||||||
|
|
||||||
$statusbar = Ox.Bar({size: 16}),
|
$statusbar = Ox.Bar({size: 16}),
|
||||||
|
@ -93,11 +100,11 @@ pandora.ui.textPanel = function() {
|
||||||
elements: [
|
elements: [
|
||||||
{
|
{
|
||||||
element: pandora.$ui.text = text.type == 'html'
|
element: pandora.$ui.text = text.type == 'html'
|
||||||
? pandora.ui.textHTML(text, tags)
|
? pandora.ui.textHTML(text)
|
||||||
: pandora.ui.textPDF(text)
|
: pandora.ui.textPDF(text)
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
element: pandora.$ui.textEmbed = pandora.ui.textEmbed(embedURLs[0]),
|
element: pandora.$ui.textEmbed = pandora.ui.textEmbed(embedURLs[selected]),
|
||||||
size: pandora.user.ui.embedSize,
|
size: pandora.user.ui.embedSize,
|
||||||
resizable: true,
|
resizable: true,
|
||||||
resize: [192, 256, 320, 384, 448, 512]
|
resize: [192, 256, 320, 384, 448, 512]
|
||||||
|
@ -153,21 +160,28 @@ pandora.ui.textPanel = function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
function getEmbedURLs(text) {
|
function getEmbedURLs(text) {
|
||||||
var matches = text.match(/<span data-video=".+?">/g),
|
var matches = text.match(/<a [^<>]*?href="(.+?)".*?>/gi),
|
||||||
urls = [];
|
urls = [];
|
||||||
if (matches) {
|
if (matches) {
|
||||||
matches.forEach(function(match) {
|
matches.forEach(function(match) {
|
||||||
urls.push(match.match(/"(.+?)"/)[1]);
|
var url = match.match(/"(.+?)"/)[1];
|
||||||
|
if (pandora.isEmbedURL(url)) {
|
||||||
|
urls.push(url);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
return urls;
|
return urls;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function selectEmbed(selected) {
|
||||||
|
pandora.$ui.textEmbed.update(embedURLs[selected]);
|
||||||
|
}
|
||||||
|
|
||||||
return that;
|
return that;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
pandora.ui.textHTML = function(text, tags) {
|
pandora.ui.textHTML = function(text) {
|
||||||
|
|
||||||
var height = getHeight(),
|
var height = getHeight(),
|
||||||
width = getWidth(),
|
width = getWidth(),
|
||||||
|
@ -223,7 +237,6 @@ pandora.ui.textHTML = function(text, tags) {
|
||||||
height: height,
|
height: height,
|
||||||
maxHeight: Infinity,
|
maxHeight: Infinity,
|
||||||
placeholder: text.editable ? 'Doubleclick to edit text' : '',
|
placeholder: text.editable ? 'Doubleclick to edit text' : '',
|
||||||
tags: tags,
|
|
||||||
tooltip: text.editable ? 'Doubleclick to edit text' : '',
|
tooltip: text.editable ? 'Doubleclick to edit text' : '',
|
||||||
type: 'textarea',
|
type: 'textarea',
|
||||||
width: width,
|
width: width,
|
||||||
|
@ -294,8 +307,6 @@ pandora.ui.textPDF = function(text) {
|
||||||
|
|
||||||
pandora.ui.textEmbed = function(url) {
|
pandora.ui.textEmbed = function(url) {
|
||||||
|
|
||||||
// url = 'http://0xdb.local/0084628/player/00:10:00,00:10:00,00:20:00#?embed=true&matchRatio=true&showAnnotations=true&showLayers=["subtitles"]&showTimeline=true&title=Hello World "Hello"';
|
|
||||||
|
|
||||||
var that = Ox.Element()
|
var that = Ox.Element()
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
resizestart: function() {
|
resizestart: function() {
|
||||||
|
@ -342,8 +353,10 @@ pandora.ui.textEmbed = function(url) {
|
||||||
|
|
||||||
that.update = function(url) {
|
that.update = function(url) {
|
||||||
if (url) {
|
if (url) {
|
||||||
|
url = url.replace(/&/g, '&') + '&matchRatio=true';
|
||||||
|
$iframe[0].contentWindow.postMessage(url);
|
||||||
$message.hide();
|
$message.hide();
|
||||||
$iframe.attr({src: url}).show();
|
$iframe.show();
|
||||||
} else {
|
} else {
|
||||||
$iframe.hide();
|
$iframe.hide();
|
||||||
$message.show();
|
$message.show();
|
||||||
|
|
Loading…
Reference in a new issue