File: /home/flbestac/public_html/wp-content/plugins/wp-seopress/assets/js/seopress-sitemap-video.js
//Video Sitemap
jQuery(document).ready(function ($) {
function seopress_call_media_uploader() {
var mediaUploader;
var thumb;
$(".seopress_video_thumbnail_upload").click(function (e) {
e.preventDefault();
$btn = $(this);
// If the uploader object has already been created, reopen the dialog
if (mediaUploader) {
mediaUploader.open();
return;
}
thumb = $(this).prev();
// Extend the wp.media object
mediaUploader = wp.media.frames.file_frame = wp.media({
multiple: false,
});
// When a file is selected, grab the URL and set it as the text field's value
mediaUploader.on("select", function () {
var attachment = mediaUploader
.state()
.get("selection")
.first()
.toJSON();
$btn.prev().val(attachment.url);
});
// Open the uploader dialog
mediaUploader.open();
});
}
seopress_call_media_uploader();
var template = $("#wrap-videos .video:last").clone();
//accordion
var stop = false;
$("#wrap-videos .video h3").click(function (event) {
if (stop) {
event.stopImmediatePropagation();
event.preventDefault();
stop = false;
}
});
function seopress_call_video_accordion() {
$("#wrap-videos .video").accordion({
animate: false,
collapsible: true,
active: false,
heightStyle: "panel",
});
}
seopress_call_video_accordion();
//define counter
var sectionsCount = $("#wrap-videos").attr("data-count");
//add new section
$("#add-video").click(function () {
//increment
sectionsCount++;
//loop through each input
var section = template
.clone()
.find(":input")
.each(function () {
//Stock input id
var input_id = this.id;
//Stock input name
var input_name = this.name;
//set id to store the updated section number
var newId = this.id.replace(
/^(\w+)\[.*?\]/,
"$1[" + sectionsCount + "]"
);
//Update input name
$(this).attr(
"name",
input_name.replace(
/^(\w+)\[.*?\]/,
"$1[" + sectionsCount + "]"
)
);
//Clear input value
if (!$(this).hasClass("seopress_video_thumbnail_upload")) {
$(this).attr("value", "");
}
//update for label
if ($(this).is(":checkbox")) {
$(this)
.parent()
.attr(
"for",
input_id.replace(
/^(\w+)\[.*?\]/,
"$1[" + sectionsCount + "]"
)
);
$(this)
.parent()
.attr(
"id",
input_name.replace(
/^(\w+)\[.*?\]/,
"$1[" + sectionsCount + "]"
)
);
} else if (
$(this).hasClass("seopress_video_thumbnail_upload")
) {
//do nothing
} else {
$(this)
.prev()
.attr(
"for",
input_id.replace(
/^(\w+)\[.*?\]/,
"$1[" + sectionsCount + "]"
)
);
$(this)
.prev()
.attr(
"id",
input_name.replace(
/^(\w+)\[.*?\]/,
"$1[" + sectionsCount + "]"
)
);
}
//update id
this.id = newId;
})
.end()
//inject new section
.appendTo("#wrap-videos");
seopress_call_video_accordion();
$("#wrap-videos .video").accordion("destroy");
seopress_call_video_accordion();
$("[id^=__wp-uploader-id-]").each(function () {
$(this).remove();
});
seopress_call_media_uploader();
return false;
});
//remove section
$("#wrap-videos").on("click", ".remove-video", function () {
//fade out section
$(this).fadeOut(300, function () {
$(this).parent().parent().parent().remove();
return false;
});
return false;
});
});