2018-11-09 03:43:32 +00:00
window . Vue = require ( 'vue' ) ;
import BootstrapVue from 'bootstrap-vue'
2018-12-02 04:03:27 +00:00
import InfiniteLoading from 'vue-infinite-loading' ;
import Loading from 'vue-loading-overlay' ;
2018-12-25 06:00:50 +00:00
import VueTimeago from 'vue-timeago' ;
2019-01-05 07:10:15 +00:00
//import {Howl, Howler} from 'howler';
2018-12-02 04:03:27 +00:00
2018-11-09 03:43:32 +00:00
Vue . use ( BootstrapVue ) ;
2018-12-02 04:03:27 +00:00
Vue . use ( InfiniteLoading ) ;
Vue . use ( Loading ) ;
2019-05-03 03:09:39 +00:00
Vue . use ( VueTimeago , {
name : 'Timeago' ,
locale : 'en'
2019-05-07 03:26:12 +00:00
} ) ;
2019-05-04 03:11:09 +00:00
2018-11-13 19:43:46 +00:00
pixelfed . readmore = ( ) => {
2018-11-29 02:27:38 +00:00
$ ( '.read-more' ) . each ( function ( k , v ) {
2018-11-13 19:43:46 +00:00
let el = $ ( this ) ;
let attr = el . attr ( 'data-readmore' ) ;
if ( typeof attr !== typeof undefined && attr !== false ) {
return ;
}
el . readmore ( {
2019-04-18 05:02:26 +00:00
collapsedHeight : 45 ,
heightMargin : 48 ,
2019-04-20 19:28:16 +00:00
moreLink : '<a href="#" class="d-block small text-muted text-center">Read more ...</a>' ,
lessLink : '<a href="#" class="d-block small text-muted text-center">Hide</a>' ,
2018-11-13 19:43:46 +00:00
} ) ;
} ) ;
} ;
2018-12-25 21:42:12 +00:00
try {
document . createEvent ( "TouchEvent" ) ;
$ ( 'body' ) . addClass ( 'touch' ) ;
} catch ( e ) {
}
2018-11-09 03:43:32 +00:00
window . filesize = require ( 'filesize' ) ;
2019-04-01 05:23:19 +00:00
// window.Plyr = require('plyr');
2018-11-09 03:43:32 +00:00
import swal from 'sweetalert' ;
2019-04-01 05:23:19 +00:00
// require('./components/localstorage');
// require('./components/commentform');
2019-04-02 05:46:59 +00:00
//require('./components/searchform');
2019-04-01 05:23:19 +00:00
// require('./components/bookmarkform');
// require('./components/statusform');
2018-12-25 06:00:50 +00:00
//require('./components/embed');
//require('./components/notifications');
2018-11-09 03:26:47 +00:00
// import Echo from "laravel-echo"
// window.io = require('socket.io-client');
// window.pixelfed.bootEcho = function() {
// window.Echo = new Echo({
// broadcaster: 'socket.io',
// host: window.location.hostname + ':2096',
// auth: {
// headers: {
// Authorization: 'Bearer ' + token.content,
// },
// },
// });
// }
2018-12-25 21:59:32 +00:00
// Initialize Notification Helper
2018-11-13 04:48:48 +00:00
window . pixelfed . n = { } ;
2019-04-02 05:46:59 +00:00
// Vue.component(
// 'search-results',
// require('./components/SearchResults.vue').default
// );
2019-04-02 03:28:34 +00:00
2019-04-01 05:23:19 +00:00
// Vue.component(
// 'photo-presenter',
// require('./components/presenter/PhotoPresenter.vue').default
// );
// Vue.component(
// 'video-presenter',
// require('./components/presenter/VideoPresenter.vue').default
// );
// Vue.component(
// 'photo-album-presenter',
// require('./components/presenter/PhotoAlbumPresenter.vue').default
// );
// Vue.component(
// 'video-album-presenter',
// require('./components/presenter/VideoAlbumPresenter.vue').default
// );
// Vue.component(
// 'mixed-album-presenter',
// require('./components/presenter/MixedAlbumPresenter.vue').default
// );
// Vue.component(
// 'post-menu',
// require('./components/PostMenu.vue').default
// );
// Vue.component(
// 'passport-clients',
// require('./components/passport/Clients.vue').default
// );
// Vue.component(
// 'passport-authorized-clients',
// require('./components/passport/AuthorizedClients.vue').default
// );
// Vue.component(
// 'passport-personal-access-tokens',
// require('./components/passport/PersonalAccessTokens.vue').default
// );
2018-12-09 22:59:29 +00:00
2019-01-05 07:10:15 +00:00
// Vue.component(
2019-02-11 04:31:25 +00:00
// 'follow-suggestions',
// require('./components/FollowSuggestions.vue').default
2019-01-05 07:10:15 +00:00
// );
2018-11-09 03:26:47 +00:00
2019-01-05 07:10:15 +00:00
// Vue.component(
2019-02-11 04:31:25 +00:00
// 'circle-panel',
// require('./components/CirclePanel.vue')
2019-01-05 07:10:15 +00:00
// );
2018-11-09 03:26:47 +00:00
2019-01-05 07:10:15 +00:00
// Vue.component(
2019-02-11 04:31:25 +00:00
// 'story-compose',
// require('./components/StoryCompose.vue').default
2019-01-05 07:10:15 +00:00
// );
2018-11-09 03:26:47 +00:00
2019-01-05 07:10:15 +00:00
//import 'promise-polyfill/src/polyfill';
// window.pixelfed.copyToClipboard = (str) => {
// const el = document.createElement('textarea');
// el.value = str;
// el.setAttribute('readonly', '');
// el.style.position = 'absolute';
// el.style.left = '-9999px';
// document.body.appendChild(el);
// const selected =
// document.getSelection().rangeCount > 0
// ? document.getSelection().getRangeAt(0)
// : false;
// el.select();
// document.execCommand('copy');
// document.body.removeChild(el);
// if (selected) {
// document.getSelection().removeAllRanges();
// document.getSelection().addRange(selected);
// }
// };
2018-11-09 03:26:47 +00:00
$ ( document ) . ready ( function ( ) {
$ ( function ( ) {
$ ( '[data-toggle="tooltip"]' ) . tooltip ( )
} ) ;
2018-11-22 20:21:36 +00:00
} ) ;
const warningTitleCSS = 'color:red; font-size:60px; font-weight: bold; -webkit-text-stroke: 1px black;' ;
const warningDescCSS = 'font-size: 18px;' ;
console . log ( '%cStop!' , warningTitleCSS ) ;
2018-12-25 21:42:12 +00:00
console . log ( "%cThis is a browser feature intended for developers. If someone told you to copy and paste something here to enable a Pixelfed feature or \"hack\" someone's account, it is a scam and will give them access to your Pixelfed account." , warningDescCSS ) ;