discourse/app/assets/javascripts/discourse/views/share_view.js

93 lines
2.6 KiB
JavaScript
Raw Normal View History

/**
This view is used for rendering the "share" interface for a post
@class ShareView
@extends Discourse.View
@namespace Discourse
@module Discourse
**/
Discourse.ShareView = Discourse.View.extend({
templateName: 'share',
elementId: 'share-link',
classNameBindings: ['hasLink'],
title: function() {
if (this.get('controller.type') === 'topic') return I18n.t('share.topic');
var postNumber = this.get('controller.postNumber');
if (postNumber) {
return I18n.t('share.post', {postNumber: this.get('controller.postNumber')});
} else {
return I18n.t('share.topic');
}
2013-09-07 05:34:31 +08:00
}.property('controller.type', 'controller.postNumber'),
hasLink: function() {
if (this.present('controller.link')) return 'visible';
return null;
}.property('controller.link'),
linkChanged: function() {
if (this.present('controller.link')) {
2013-03-29 04:58:30 +08:00
var $linkInput = $('#share-link input');
$linkInput.val(this.get('controller.link'));
// Wait for the fade-in transition to finish before selecting the link:
window.setTimeout(function() {
$linkInput.select().focus();
}, 160);
}
}.observes('controller.link'),
didInsertElement: function() {
var shareView = this;
$('html').on('mousedown.outside-share-link', function(e) {
// Use mousedown instead of click so this event is handled before routing occurs when a
// link is clicked (which is a click event) while the share dialog is showing.
if (shareView.$().has(e.target).length !== 0) { return; }
shareView.get('controller').close();
return true;
});
2013-03-28 04:28:53 +08:00
$('html').on('click.discoure-share-link', '[data-share-url]', function(e) {
e.preventDefault();
var $currentTarget = $(e.currentTarget);
var url = $currentTarget.data('share-url');
2013-09-07 05:34:31 +08:00
var postNumber = $currentTarget.data('post-number');
// Relative urls
if (url.indexOf("/") === 0) {
url = window.location.protocol + "//" + window.location.host + url;
}
var x = e.pageX - 150;
if (x < 25) {
x = 25;
}
$('#share-link').css({
left: "" + x + "px",
top: "" + (e.pageY - 100) + "px"
});
shareView.set('controller.link', url);
2013-09-07 05:34:31 +08:00
shareView.set('controller.postNumber', postNumber);
return false;
});
$('html').on('keydown.share-view', function(e){
2013-03-28 04:28:53 +08:00
if (e.keyCode === 27) {
shareView.get('controller').close();
2013-03-28 04:28:53 +08:00
}
});
},
willDestroyElement: function() {
$('html').off('click.discoure-share-link');
$('html').off('mousedown.outside-share-link');
$('html').off('keydown.share-view');
}
});