2013-02-23 04:41:12 +08:00
|
|
|
/**
|
|
|
|
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'],
|
|
|
|
|
2013-06-08 00:13:46 +08:00
|
|
|
title: function() {
|
2013-07-09 07:32:16 +08:00
|
|
|
if (this.get('controller.type') === 'topic') return I18n.t('share.topic');
|
2013-09-12 09:47:41 +08:00
|
|
|
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'),
|
2013-02-23 04:41:12 +08:00
|
|
|
|
2013-06-08 00:13:46 +08:00
|
|
|
hasLink: function() {
|
2013-02-23 04:41:12 +08:00
|
|
|
if (this.present('controller.link')) return 'visible';
|
|
|
|
return null;
|
2013-06-08 00:13:46 +08:00
|
|
|
}.property('controller.link'),
|
2013-02-23 04:41:12 +08:00
|
|
|
|
2013-06-08 00:13:46 +08:00
|
|
|
linkChanged: function() {
|
2013-02-23 04:41:12 +08:00
|
|
|
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);
|
2013-02-23 04:41:12 +08:00
|
|
|
}
|
2013-06-08 00:13:46 +08:00
|
|
|
}.observes('controller.link'),
|
2013-02-23 04:41:12 +08:00
|
|
|
|
|
|
|
didInsertElement: function() {
|
2013-06-08 00:13:46 +08:00
|
|
|
var shareView = this;
|
2013-03-28 07:43:37 +08:00
|
|
|
$('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.
|
2013-06-08 00:13:46 +08:00
|
|
|
if (shareView.$().has(e.target).length !== 0) { return; }
|
2013-08-26 14:28:42 +08:00
|
|
|
|
2013-06-08 00:13:46 +08:00
|
|
|
shareView.get('controller').close();
|
2013-02-23 04:41:12 +08:00
|
|
|
return true;
|
|
|
|
});
|
2013-06-08 00:13:46 +08:00
|
|
|
|
2013-03-28 04:28:53 +08:00
|
|
|
$('html').on('click.discoure-share-link', '[data-share-url]', function(e) {
|
2013-02-23 04:41:12 +08:00
|
|
|
e.preventDefault();
|
2013-06-08 00:13:46 +08:00
|
|
|
var $currentTarget = $(e.currentTarget);
|
|
|
|
var url = $currentTarget.data('share-url');
|
2013-09-07 05:34:31 +08:00
|
|
|
var postNumber = $currentTarget.data('post-number');
|
2013-06-08 00:13:46 +08:00
|
|
|
// Relative urls
|
2013-02-23 04:41:12 +08:00
|
|
|
|
|
|
|
if (url.indexOf("/") === 0) {
|
|
|
|
url = window.location.protocol + "//" + window.location.host + url;
|
2013-02-21 02:15:50 +08:00
|
|
|
}
|
2013-08-21 06:03:57 +08:00
|
|
|
|
|
|
|
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);
|
2013-02-23 04:41:12 +08:00
|
|
|
return false;
|
|
|
|
});
|
2013-06-08 00:13:46 +08:00
|
|
|
|
2013-03-28 07:43:37 +08:00
|
|
|
$('html').on('keydown.share-view', function(e){
|
2013-03-28 04:28:53 +08:00
|
|
|
if (e.keyCode === 27) {
|
2013-06-08 00:13:46 +08:00
|
|
|
shareView.get('controller').close();
|
2013-03-28 04:28:53 +08:00
|
|
|
}
|
|
|
|
});
|
2013-02-23 04:41:12 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
willDestroyElement: function() {
|
|
|
|
$('html').off('click.discoure-share-link');
|
2013-03-28 07:43:37 +08:00
|
|
|
$('html').off('mousedown.outside-share-link');
|
|
|
|
$('html').off('keydown.share-view');
|
2013-02-23 04:41:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2013-02-21 02:15:50 +08:00
|
|
|
|