2009-09-30 02:39:37 +00:00
|
|
|
/**
|
|
|
|
* Set up a transcript editor widget.
|
|
|
|
*/
|
|
|
|
WhatDidTheySay.setup_transcript_editor = function(container) {
|
|
|
|
if (container) {
|
|
|
|
container = $(container);
|
2009-09-24 01:34:06 +00:00
|
|
|
|
2009-09-30 02:39:37 +00:00
|
|
|
var button_holder = container.select('.wdts-button-holder').pop();
|
2009-09-24 01:34:06 +00:00
|
|
|
|
2009-09-30 02:39:37 +00:00
|
|
|
if (button_holder) {
|
|
|
|
var language_selector = container.select('.wdts-transcript-selector').pop();
|
2009-09-25 12:22:24 +00:00
|
|
|
|
2009-09-30 02:39:37 +00:00
|
|
|
var get_transcript;
|
2009-09-25 12:22:24 +00:00
|
|
|
|
2009-09-30 02:39:37 +00:00
|
|
|
if (language_selector) {
|
|
|
|
var switch_transcripts = function() {
|
|
|
|
container.select('.edit-transcript').each(function(t) {
|
|
|
|
(t.name == 'wdts[transcripts][' + $F(language_selector) + ']') ? t.show() : t.hide();
|
|
|
|
});
|
|
|
|
};
|
2009-09-24 01:34:06 +00:00
|
|
|
|
2009-09-30 02:39:37 +00:00
|
|
|
switch_transcripts();
|
|
|
|
|
2009-10-02 03:44:52 +00:00
|
|
|
language_selector.switch_transcripts = switch_transcripts;
|
|
|
|
|
2009-09-30 02:39:37 +00:00
|
|
|
language_selector.observe('change', switch_transcripts);
|
|
|
|
|
|
|
|
get_transcript = function() { return container.select('textarea[name*=[' + $F(language_selector) + ']]').pop(); };
|
|
|
|
} else {
|
|
|
|
get_transcript = function() { return container.select('textarea').pop(); }
|
|
|
|
}
|
|
|
|
|
|
|
|
[ 'scene-heading', 'scene-action', 'dialog' ].each(function(tag) {
|
2009-10-01 01:43:07 +00:00
|
|
|
var b = new Element('button', { className: 'button' }).update(WhatDidTheySay.button_labels[tag]);
|
2009-09-30 02:39:37 +00:00
|
|
|
|
|
|
|
var get_t = function() { return tag; };
|
2009-09-24 01:45:33 +00:00
|
|
|
|
2009-09-30 02:39:37 +00:00
|
|
|
b.observe('click', function(e) {
|
|
|
|
Event.stop(e);
|
2009-09-24 01:45:33 +00:00
|
|
|
|
2009-09-30 02:39:37 +00:00
|
|
|
var transcript = get_transcript();
|
|
|
|
|
|
|
|
if (transcript) {
|
|
|
|
if (document.selection) {
|
|
|
|
var range = document.selection.createRange();
|
|
|
|
var stored_range = range.duplicate();
|
2009-10-01 02:33:17 +00:00
|
|
|
stored_range.moveToElementText(transcript);
|
2009-09-30 02:39:37 +00:00
|
|
|
stored_range.setEndPoint('EndToEnd', range);
|
|
|
|
transcript.selectionStart = stored_range.text.length - range.text.length;
|
|
|
|
transcript.selectionEnd = current_transcript.selectionStart + range.text.length;
|
|
|
|
}
|
|
|
|
|
|
|
|
var start = transcript.selectionStart;
|
|
|
|
var end = transcript.selectionEnd;
|
|
|
|
|
|
|
|
var injector = new WDTSInjector(transcript, end);
|
|
|
|
|
|
|
|
var tag = get_t();
|
|
|
|
|
|
|
|
var new_content = (start == end);
|
|
|
|
switch (tag) {
|
|
|
|
case 'scene-heading':
|
|
|
|
case 'scene-action':
|
|
|
|
var message = tag.replace('-', '_');
|
|
|
|
if (new_content) {
|
|
|
|
var content = prompt(WhatDidTheySay.messages[message]);
|
|
|
|
if (content) {
|
|
|
|
injector.inject('[' + tag + ']' + content + "[/" + tag + "]\n", start);
|
|
|
|
}
|
2009-09-24 01:45:33 +00:00
|
|
|
} else {
|
2009-09-30 02:39:37 +00:00
|
|
|
injector.inject("[/" + tag + "]\n", end);
|
|
|
|
injector.inject('[' + tag + ']', start);
|
2009-09-24 01:45:33 +00:00
|
|
|
}
|
2009-09-30 02:39:37 +00:00
|
|
|
break;
|
|
|
|
case 'dialog':
|
|
|
|
var name = prompt(WhatDidTheySay.messages.dialog_name);
|
|
|
|
if (name) {
|
|
|
|
var direction = prompt(WhatDidTheySay.messages.dialog_direction);
|
|
|
|
var tag = '[dialog name="' + name + '"';
|
|
|
|
if (direction) { tag += ' direction="' + direction + '"'; }
|
|
|
|
tag += ']';
|
2009-09-13 16:35:20 +00:00
|
|
|
|
2009-09-30 02:39:37 +00:00
|
|
|
if (new_content) {
|
|
|
|
var speech = prompt(WhatDidTheySay.messages.dialog_speech);
|
2009-09-29 01:54:02 +00:00
|
|
|
|
2009-10-02 01:51:09 +00:00
|
|
|
if (speech) {
|
|
|
|
tag += speech + "[/dialog]\n";
|
2009-09-30 02:39:37 +00:00
|
|
|
|
2009-10-02 01:51:09 +00:00
|
|
|
injector.inject(tag, start);
|
|
|
|
}
|
2009-09-30 02:39:37 +00:00
|
|
|
} else {
|
|
|
|
injector.inject("[/dialog]\n", end);
|
|
|
|
injector.inject(tag, start);
|
2009-09-13 16:35:20 +00:00
|
|
|
}
|
|
|
|
}
|
2009-09-30 02:39:37 +00:00
|
|
|
break;
|
2009-09-13 16:35:20 +00:00
|
|
|
}
|
2009-09-30 02:39:37 +00:00
|
|
|
injector.set_caret();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
button_holder.insert(b);
|
|
|
|
});
|
2009-10-01 00:45:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// submit button handling
|
|
|
|
var submit_button = container.select('.wdts-modify-transcript').pop();
|
|
|
|
var update_message = container.select('.wdts-update-message').pop();
|
2009-10-02 03:59:17 +00:00
|
|
|
var post_id = $(container.parentNode.parentNode).select("input[name*=[post_id]]").shift();
|
2009-10-01 00:45:05 +00:00
|
|
|
|
|
|
|
if (submit_button && update_message && post_id) {
|
|
|
|
post_id = post_id.value;
|
|
|
|
submit_button.observe('click', function(e) {
|
|
|
|
Event.stop(e);
|
2009-09-30 02:39:37 +00:00
|
|
|
|
2009-10-01 00:45:05 +00:00
|
|
|
var parameters = {
|
|
|
|
'wdts[_nonce]': WhatDidTheySay.nonce,
|
|
|
|
'wdts[module]': 'manage-post-transcripts',
|
|
|
|
'wdts[post_id]': post_id
|
|
|
|
};
|
|
|
|
|
|
|
|
container.select('textarea').each(function(t) {
|
|
|
|
parameters[t.name] = t.value;
|
|
|
|
});
|
|
|
|
|
|
|
|
var update_update_message = function(message) {
|
|
|
|
update_message.update(message);
|
|
|
|
update_message.setOpacity(1);
|
|
|
|
update_message.show();
|
|
|
|
new Effect.Highlight(update_message, { endcolor: '#DFDFDF'} );
|
|
|
|
|
|
|
|
new PeriodicalExecuter(function(pe) {
|
|
|
|
pe.stop();
|
|
|
|
new Effect.Fade(update_message, {
|
|
|
|
from: 1, to: 0, duration: 0.25, afterFinish: function() { update_message.update("") }
|
|
|
|
});
|
|
|
|
}, 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
new Ajax.Request(
|
|
|
|
WhatDidTheySay.ajax_url, {
|
|
|
|
'method': 'post',
|
|
|
|
'parameters': parameters,
|
|
|
|
'onSuccess': function() { update_update_message(WhatDidTheySay.messages.transcripts_updated); },
|
2009-10-01 02:33:17 +00:00
|
|
|
'onFailure': function() { update_update_message(WhatDidTheySay.messages.transcripts_failure); }
|
2009-10-01 00:45:05 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
2009-09-13 16:35:20 +00:00
|
|
|
}
|
2009-09-30 02:39:37 +00:00
|
|
|
}
|
2009-09-29 01:54:02 +00:00
|
|
|
};
|
2009-09-13 16:35:20 +00:00
|
|
|
|
2009-09-30 02:39:37 +00:00
|
|
|
/**
|
|
|
|
* Set up action buttons for queued transcripts.
|
|
|
|
*/
|
|
|
|
WhatDidTheySay.setup_transcript_action_buttons = function(container, approved_editor_container) {
|
|
|
|
if (container && approved_editor_container) {
|
|
|
|
container = $(container);
|
|
|
|
approved_editor_container = $(approved_editor_container);
|
|
|
|
|
|
|
|
var actions_holder = container.select('.queued-transcript-actions').pop();
|
|
|
|
|
|
|
|
if (actions_holder) {
|
|
|
|
[
|
|
|
|
[ 'approve',
|
|
|
|
function(e) {
|
2009-10-02 03:44:52 +00:00
|
|
|
Event.stop(e);
|
2009-09-30 02:39:37 +00:00
|
|
|
var lang = container.select("input[name*=[language]]").shift();
|
|
|
|
var post_id = container.select("input[name*=[post_id]]").shift();
|
|
|
|
var key = container.select("input[name*=[key]]").shift();
|
|
|
|
if (lang && post_id && key) {
|
|
|
|
lang = lang.value;
|
|
|
|
post_id = post_id.value;
|
|
|
|
key = key.value;
|
|
|
|
|
|
|
|
var editor = approved_editor_container.select('textarea[name*=[' + lang + ']').pop();
|
2009-10-02 03:00:07 +00:00
|
|
|
|
|
|
|
var raw_transcript = container.select(".queued-transcript-raw").shift();
|
|
|
|
|
2009-09-30 02:39:37 +00:00
|
|
|
if (raw_transcript && editor) {
|
|
|
|
var ok = true;
|
|
|
|
if (editor.value.match(/[^ ]/)) {
|
|
|
|
ok = confirm(WhatDidTheySay.messages.overwrite);
|
|
|
|
}
|
|
|
|
if (ok) {
|
|
|
|
editor.value = raw_transcript.innerHTML;
|
|
|
|
|
|
|
|
new Ajax.Request(
|
|
|
|
WhatDidTheySay.ajax_url, {
|
|
|
|
'method': 'post',
|
|
|
|
'parameters': {
|
|
|
|
'wdts[_nonce]': WhatDidTheySay.nonce,
|
|
|
|
'wdts[module]': 'approve-transcript',
|
|
|
|
'wdts[key]': key,
|
|
|
|
'wdts[post_id]': post_id
|
|
|
|
},
|
|
|
|
'onSuccess': function() {
|
|
|
|
container.update(WhatDidTheySay.messages.approved);
|
|
|
|
new Effect.Highlight(container);
|
2009-10-02 03:46:47 +00:00
|
|
|
new PeriodicalExecuter(function(pe) {
|
|
|
|
new Effect.Fade(container, {
|
|
|
|
from: 1, to: 0, duration: 0.25, afterFinish: function() { container.hide(); }
|
|
|
|
});
|
|
|
|
}, 3);
|
2009-09-30 02:39:37 +00:00
|
|
|
|
|
|
|
var language_selector = approved_editor_container.select('select').pop();
|
|
|
|
if (language_selector) {
|
|
|
|
var i,il;
|
|
|
|
for (i = 0, il = language_selector.options.length; i < il; ++i) {
|
|
|
|
if (language_selector.options[i].value == lang) {
|
|
|
|
language_selector.selectedIndex = i;
|
2009-10-02 03:44:52 +00:00
|
|
|
language_selector.switch_transcripts();
|
|
|
|
|
2009-09-30 02:39:37 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2009-09-13 16:35:20 +00:00
|
|
|
}
|
|
|
|
}
|
2009-09-30 02:39:37 +00:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'delete',
|
|
|
|
function(e) {
|
|
|
|
Event.stop(e);
|
|
|
|
|
|
|
|
if (confirm(WhatDidTheySay.messages.delete_message)) {
|
|
|
|
var post_id = container.select("input[name*=[post_id]]").pop();
|
|
|
|
var key = container.select("input[name*=[key]]").pop();
|
|
|
|
|
|
|
|
if (post_id && key) {
|
|
|
|
post_id = post_id.value;
|
|
|
|
key = key.value;
|
|
|
|
|
|
|
|
new Ajax.Request(
|
|
|
|
WhatDidTheySay.ajax_url, {
|
|
|
|
'method': 'post',
|
|
|
|
'parameters': {
|
|
|
|
'wdts[_nonce]': WhatDidTheySay.nonce,
|
|
|
|
'wdts[module]': 'delete-transcript',
|
|
|
|
'wdts[key]': key,
|
|
|
|
'wdts[post_id]': post_id
|
|
|
|
},
|
|
|
|
'onSuccess': function() {
|
|
|
|
container.update(WhatDidTheySay.messages.deleted);
|
|
|
|
new Effect.Highlight(container);
|
|
|
|
|
|
|
|
new PeriodicalExecuter(function(pe) {
|
|
|
|
new Effect.Fade(container, { from: 1, to: 0, duration: 0.5 });
|
|
|
|
pe.stop();
|
|
|
|
}, 2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'edit',
|
|
|
|
function(e) {
|
|
|
|
Event.stop(e);
|
2009-09-29 01:54:02 +00:00
|
|
|
|
2009-10-02 03:18:29 +00:00
|
|
|
var transcript = container.select('.wdts-transcript').pop();
|
2009-09-29 01:54:02 +00:00
|
|
|
|
2009-10-01 02:33:17 +00:00
|
|
|
var editor = new Element("div", { className: 'wdts-transcript-editor' });
|
|
|
|
var button_holder = new Element("div", { className: 'wdts-button-holder' });
|
2009-09-30 02:39:37 +00:00
|
|
|
var textnode = new Element('textarea', { style: 'height: 200px; width: 99%' });
|
|
|
|
textnode.value = container.select('.queued-transcript-raw').pop().innerHTML;
|
2009-09-29 01:54:02 +00:00
|
|
|
|
2009-09-30 02:39:37 +00:00
|
|
|
editor.appendChild(button_holder);
|
|
|
|
editor.appendChild(textnode);
|
2009-09-29 01:54:02 +00:00
|
|
|
|
2009-09-30 02:39:37 +00:00
|
|
|
container.insertBefore(editor, transcript);
|
|
|
|
transcript.hide();
|
2009-09-29 01:54:02 +00:00
|
|
|
|
2009-09-30 02:39:37 +00:00
|
|
|
WhatDidTheySay.setup_transcript_editor(editor);
|
2009-09-29 01:54:02 +00:00
|
|
|
|
2009-09-30 02:39:37 +00:00
|
|
|
var post_id = container.select("input[name*=[post_id]]").shift();
|
|
|
|
var key = container.select("input[name*=[key]]").shift();
|
2009-09-29 01:54:02 +00:00
|
|
|
|
2009-10-02 03:18:29 +00:00
|
|
|
top.console.log("made it");
|
2009-09-30 02:39:37 +00:00
|
|
|
var submitter = new Element('button').update('Update Transcript');
|
|
|
|
submitter.observe('click', function(e) {
|
|
|
|
Event.stop(e);
|
|
|
|
if (post_id && key) {
|
|
|
|
post_id = post_id.value;
|
|
|
|
key = key.value;
|
|
|
|
|
|
|
|
new Ajax.Updater(container, WhatDidTheySay.ajax_url, {
|
|
|
|
'method': 'post',
|
|
|
|
'parameters': {
|
|
|
|
'wdts[_nonce]': WhatDidTheySay.nonce,
|
|
|
|
'wdts[module]': 'update-queued-transcript',
|
|
|
|
'wdts[key]': key,
|
|
|
|
'wdts[post_id]': post_id,
|
|
|
|
'wdts[transcript]': textnode.value
|
|
|
|
},
|
|
|
|
'onComplete': function() {
|
|
|
|
new Effect.Highlight(container);
|
2009-10-01 02:33:17 +00:00
|
|
|
WhatDidTheySay.setup_transcript_action_buttons(container, approved_editor_container);
|
2009-09-30 02:39:37 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2009-10-02 03:18:29 +00:00
|
|
|
top.console.log(actions_holder);
|
|
|
|
|
2009-09-30 02:39:37 +00:00
|
|
|
container.appendChild(submitter);
|
2009-10-02 03:18:29 +00:00
|
|
|
|
2009-09-30 02:39:37 +00:00
|
|
|
actions_holder.parentNode.removeChild(actions_holder);
|
|
|
|
}
|
|
|
|
]
|
|
|
|
].each(function(info) {
|
|
|
|
var button = new Element("button").update(WhatDidTheySay.button_labels[info[0]]);
|
|
|
|
button.observe('click', info[1]);
|
|
|
|
|
|
|
|
actions_holder.insert(button);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-10-01 01:28:03 +00:00
|
|
|
WhatDidTheySay.setup_allow_new_transcripts = function(checkbox, editor) {
|
2009-09-30 02:39:37 +00:00
|
|
|
if (checkbox) {
|
|
|
|
checkbox = $(checkbox);
|
|
|
|
|
2009-10-01 02:33:17 +00:00
|
|
|
checkbox.observe('click', function(e) {
|
2009-10-01 01:28:03 +00:00
|
|
|
if (editor) { editor = $(editor); }
|
|
|
|
|
2009-10-01 02:33:17 +00:00
|
|
|
var p = $(checkbox.parentNode);
|
2009-09-30 02:39:37 +00:00
|
|
|
if (p) {
|
|
|
|
var post_id = p.select("input[name*=[post_id]]").pop();
|
|
|
|
|
2009-10-01 01:28:03 +00:00
|
|
|
if (post_id) {
|
2009-09-30 02:39:37 +00:00
|
|
|
post_id = post_id.value;
|
|
|
|
|
|
|
|
var parameters = {
|
|
|
|
'wdts[_nonce]': WhatDidTheySay.nonce,
|
|
|
|
'wdts[module]': 'manage-post-transcripts',
|
|
|
|
'wdts[post_id]': post_id
|
|
|
|
};
|
|
|
|
|
|
|
|
if (checkbox.checked) {
|
|
|
|
parameters['wdts[allow_on_post]'] = checkbox.value;
|
2009-09-29 01:54:02 +00:00
|
|
|
}
|
2009-09-30 02:39:37 +00:00
|
|
|
|
|
|
|
new Ajax.Request(
|
|
|
|
WhatDidTheySay.ajax_url, {
|
|
|
|
'method': 'post',
|
|
|
|
'parameters': parameters,
|
|
|
|
'onSuccess': function() {
|
2009-10-01 01:28:03 +00:00
|
|
|
if (editor) {
|
|
|
|
if (checkbox.checked) {
|
|
|
|
new Effect.BlindDown(editor, { duration: 0.5 });
|
|
|
|
} else {
|
|
|
|
new Effect.BlindUp(editor, { duration: 0.5 });
|
|
|
|
}
|
|
|
|
}
|
2009-09-30 02:39:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2009-09-29 01:54:02 +00:00
|
|
|
}
|
|
|
|
});
|
2009-09-30 02:39:37 +00:00
|
|
|
}
|
|
|
|
};
|
2009-09-29 01:54:02 +00:00
|
|
|
|
2009-09-30 02:39:37 +00:00
|
|
|
var WDTSInjector = Class.create({
|
|
|
|
initialize: function(textarea, end) {
|
|
|
|
this.textarea = textarea;
|
|
|
|
this.end = end;
|
|
|
|
},
|
|
|
|
inject: function(text, position) {
|
|
|
|
this.textarea.value = this.textarea.value.substr(0, position) + text + this.textarea.value.substr(position);
|
|
|
|
this.end += text.length;
|
|
|
|
},
|
|
|
|
set_caret: function() {
|
|
|
|
if (this.textarea.setSelectionRange) {
|
|
|
|
this.textarea.focus();
|
|
|
|
this.textarea.setSelectionRange(this.end, this.end);
|
|
|
|
} else if (this.textarea.createTextRange) {
|
|
|
|
var range = this.textarea.createTextRange();
|
|
|
|
range.collapse(true);
|
|
|
|
range.moveEnd('character', this.end);
|
|
|
|
range.moveStart('character', this.end);
|
|
|
|
range.select();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|