pjs/editor/ui/dialogs/content/EdLinkProps.js

211 строки
6.6 KiB
JavaScript
Исходник Обычный вид История

var anchorElement = null;
var imageElement = null;
var insertNew = true;
var needLinkText = false;
1999-05-08 02:26:23 +04:00
var insertLinkAroundSelection = false;
var linkTextInput;
var hrefInput;
var linkMessage;
// NOTE: Use "href" instead of "a" to distinguish from Named Anchor
// The returned node is has an "a" tagName
var tagName = "href";
// dialog initialization code
function Startup()
{
if (!InitEditorShell())
return;
dump("Starting Link Properties Dialog\n");
// Message was wrapped in a <label> or <div>, so actual text is a child text node
linkCaption = (document.getElementById("linkTextCaption")).firstChild;
linkMessage = (document.getElementById("linkTextMessage")).firstChild;
linkTextInput = document.getElementById("linkTextInput");
hrefInput = document.getElementById("hrefInput");
if (!linkTextInput ||
!hrefInput ||
!linkMessage ||
!linkCaption)
{
dump("Not all dialog controls were found!!!\n");
}
// Set data for the dialog controls
initDialog();
// Set initial focus
if (insertNew) {
dump("Setting focus to linkTextInput\n");
// We will be using the HREF inputbox, so text message
linkTextInput.focus();
} else {
dump("Setting focus to linkTextInput\n");
hrefInput.focus();
// We will not insert a new link at caret, so remove link text input field
parentNode = linkTextInput.parentNode;
if (parentNode) {
dump("Removing link text input field.\n");
parentNode.removeChild(linkTextInput);
linkTextInput = null;
}
}
}
function initDialog()
{
// Get a single selected anchor element
anchorElement = editorShell.GetSelectedElement(tagName);
1999-07-25 05:24:51 +04:00
var selection = editorShell.editorSelection;
if (selection) {
dump("There is a selection: collapsed = "+selection.isCollapsed+"\n");
} else {
dump("Failed to get selection\n");
}
if (anchorElement) {
// We found an element and don't need to insert one
1999-07-25 05:24:51 +04:00
dump("found anchor element\n");
insertNew = false;
1999-07-25 05:24:51 +04:00
// We get the anchor if any of the selection (or just caret)
// is enclosed by the link. Select the entire link
// so we can show the selection text
editorShell.SelectElement(anchorElement);
selection = editorShell.editorSelection;
hrefInput.value = anchorElement.getAttribute("href");
dump("Current HREF: "+hrefInput.value+"\n");
} else {
// See if we have a selected image instead of text
imageElement = editorShell.GetSelectedElement("img");
if (imageElement) {
// See if the image is a child of a link
dump("Image element found - check if its a link...\n");
dump("Image Parent="+parent);
parent = imageElement.parentNode;
dump("Parent="+parent+" nodeName="+parent.nodeName+"\n");
if (parent) {
anchorElement = parent;
insertNew = false;
// GET THIS FROM STRING BUNDLE
linkCaption.data = "Link image:"
// Link source string is the source URL of image
// TODO: THIS STILL DOESN'T HANDLE MULTIPLE SELECTED IMAGES!
linkMessage.data = imageElement.getAttribute("src");;
}
} else {
// We don't have an element selected,
// so create one with default attributes
dump("Element not selected - calling createElementWithDefaults\n");
anchorElement = editorShell.CreateElementWithDefaults(tagName);
// We will insert a new link at caret location if there's no selection
// TODO: This isn't entirely correct. If selection doesn't have any text
// or an image, then shouldn't we clear the selection and insert new text?
insertNew = selection.isCollapsed;
dump("insertNew is " + insertNew + "\n");
linkCaption.data = "Enter text for the link:"
linkMessage.data = "";
}
}
if(!anchorElement)
{
dump("Failed to get selected element or create a new one!\n");
window.close();
} else if (!insertNew && !imageElement) {
// Replace the link message with the link source string
selectedText = GetSelectionAsText();
if (selectedText.length > 0) {
// Use just the first 50 characters and add "..."
selectedText = TruncateStringAtWordEnd(selectedText, 50, true);
} else {
dump("Selected text for link source not found. Non-text elements selected?\n");
}
linkMessage.data = selectedText;
// The label above the selected text:
linkCaption.data = "Link text:"
}
1999-05-08 02:26:23 +04:00
if (!selection.isCollapsed)
{
// HREF is a weird case: If selection extends beyond
// the link, user probably wants to extend link to
// entire selection.
// TODO: If there was already a link,
// we need to know if selection extends beyond existing
// link text before we should do this
insertLinkAroundSelection = true;
dump("insertLinkAroundSelection is TRUE\n");
}
}
1999-08-04 06:06:03 +04:00
function ChooseFile()
{
// Get a local file, converted into URL format
fileName = editorShell.GetLocalFileURL(window, "html");
1999-08-04 06:06:03 +04:00
if (StringExists(fileName)) {
hrefInput.value = fileName;
}
// Put focus into the input field
hrefInput.focus();
}
function RemoveLink()
{
// Simple clear the input field!
hrefInput.value = "";
}
function onOK()
{
// TODO: VALIDATE FIELDS BEFORE COMMITING CHANGES
href = TrimString(hrefInput.value);
if (href.length > 0) {
// Coalesce into one undo transaction
editorShell.BeginBatchChanges();
// Set the HREF directly on the editor document's anchor node
// or on the newly-created node if insertNew is true
anchorElement.setAttribute("href",href);
// Get text to use for a new link
if (insertNew) {
// Append the link text as the last child node
// of the anchor node
dump("Creating text node\n");
newText = TrimString(linkTextInput.value);
1999-07-23 04:52:17 +04:00
if (newText.length == 0) {
ShowInputErrorMessage("You must enter some text for this link.");
linkTextInput.focus();
1999-07-23 04:52:17 +04:00
return;
}
textNode = editorShell.editorDocument.createTextNode(newText);
if (textNode) {
anchorElement.appendChild(textNode);
}
dump("Inserting\n");
editorShell.InsertElement(anchorElement, false);
} else if (insertLinkAroundSelection) {
1999-07-23 04:52:17 +04:00
// Text was supplied by the selection,
// so insert a link node as parent of this text
dump("Setting link around selected text\n");
editorShell.InsertLinkAroundSelection(anchorElement);
}
editorShell.EndBatchChanges();
} else if (!insertNew) {
// We already had a link, but empty HREF means remove it
1999-07-23 04:52:17 +04:00
editorShell.RemoveTextProperty("a", "");
}
1999-07-23 04:52:17 +04:00
// Note: if HREF is empty and we were inserting a new link, do nothing
window.close();
}