Merge branch 'dev' into feat/double-tap-to-like

This commit is contained in:
ghost 2019-05-03 15:23:03 -04:00 committed by GitHub
commit 4f7ae39807
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 1190 additions and 1479 deletions

2615
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -14,27 +14,27 @@
"axios": "^0.18", "axios": "^0.18",
"bootstrap": ">=4.3.1", "bootstrap": ">=4.3.1",
"cross-env": "^5.2.0", "cross-env": "^5.2.0",
"jquery": "^3.2", "jquery": "^3.4.1",
"lodash": "^4.17.11", "lodash": "^4.17.11",
"popper.js": "^1.14.7", "popper.js": "^1.15.0",
"resolve-url-loader": "^2.3.2", "resolve-url-loader": "^2.3.2",
"sass": "^1.17.2", "sass": "^1.19.0",
"sass-loader": "^7.1.0", "sass-loader": "^7.1.0",
"vue": "^2.6.7", "vue": "^2.6.10",
"vue-template-compiler": "^2.6.7" "vue-template-compiler": "^2.6.10"
}, },
"dependencies": { "dependencies": {
"bootstrap-vue": "^2.0.0-rc.13", "bootstrap-vue": "^2.0.0-rc.19",
"emoji-mart-vue": "^2.6.6", "emoji-mart-vue": "^2.6.6",
"filesize": "^3.6.1", "filesize": "^3.6.1",
"howler": "^2.1.1", "howler": "^2.1.2",
"infinite-scroll": "^3.0.4", "infinite-scroll": "^3.0.6",
"laravel-echo": "^1.5.3", "laravel-echo": "^1.5.3",
"laravel-mix": "^4.0.14", "laravel-mix": "^4.0.15",
"node-sass": "^4.11.0", "node-sass": "^4.12.0",
"opencollective": "^1.0.3", "opencollective": "^1.0.3",
"opencollective-postinstall": "^2.0.2", "opencollective-postinstall": "^2.0.2",
"plyr": "^3.5.0", "plyr": "^3.5.4",
"promise-polyfill": "8.1.0", "promise-polyfill": "8.1.0",
"pusher-js": "^4.4.0", "pusher-js": "^4.4.0",
"quill": "^1.3.6", "quill": "^1.3.6",

BIN
public/css/app.css vendored

Binary file not shown.

BIN
public/css/appdark.css vendored

Binary file not shown.

BIN
public/css/landing.css vendored

Binary file not shown.

BIN
public/js/app.js vendored

Binary file not shown.

Binary file not shown.

BIN
public/js/timeline.js vendored

Binary file not shown.

Binary file not shown.

View file

@ -8,9 +8,12 @@ import VueTimeago from 'vue-timeago';
Vue.use(BootstrapVue); Vue.use(BootstrapVue);
Vue.use(InfiniteLoading); Vue.use(InfiniteLoading);
Vue.use(Loading); Vue.use(Loading);
Vue.use(VueTimeago); Vue.use(VueTimeago, {
name: 'Timeago',
locale: 'en'
});
pixelfed.readmore = () => { pixelfed.readmore = function() {
$('.read-more').each(function(k,v) { $('.read-more').each(function(k,v) {
let el = $(this); let el = $(this);
let attr = el.attr('data-readmore'); let attr = el.attr('data-readmore');

View file

@ -419,6 +419,9 @@
fetchProfile() { fetchProfile() {
axios.get('/api/v1/accounts/verify_credentials').then(res => { axios.get('/api/v1/accounts/verify_credentials').then(res => {
this.profile = res.data; this.profile = res.data;
if(this.profile.is_admin == true) {
this.modes.mod = true;
}
$('.profile-card .loader').addClass('d-none'); $('.profile-card .loader').addClass('d-none');
$('.profile-card .contents').removeClass('d-none'); $('.profile-card .contents').removeClass('d-none');
$('.profile-card .card-footer').removeClass('d-none'); $('.profile-card .card-footer').removeClass('d-none');
@ -653,7 +656,7 @@
}, },
deletePost(status, index) { deletePost(status, index) {
if($('body').hasClass('loggedIn') == false || status.account.id !== this.profile.id) { if($('body').hasClass('loggedIn') == false || this.ownerOrAdmin(status) == false) {
return; return;
} }
@ -834,12 +837,12 @@
modeModToggle() { modeModToggle() {
this.modes.mod = !this.modes.mod; this.modes.mod = !this.modes.mod;
window.ls.set('pixelfed-classicui-settings', this.modes); //window.ls.set('pixelfed-classicui-settings', this.modes);
}, },
modeNotifyToggle() { modeNotifyToggle() {
this.modes.notify = !this.modes.notify; this.modes.notify = !this.modes.notify;
window.ls.set('pixelfed-classicui-settings', this.modes); //window.ls.set('pixelfed-classicui-settings', this.modes);
}, },
modeDarkToggle() { modeDarkToggle() {
@ -863,12 +866,12 @@
this.modes.dark = true; this.modes.dark = true;
}); });
} }
window.ls.set('pixelfed-classicui-settings', this.modes); //window.ls.set('pixelfed-classicui-settings', this.modes);
}, },
modeInfiniteToggle() { modeInfiniteToggle() {
this.modes.infinite = !this.modes.infinite this.modes.infinite = !this.modes.infinite
window.ls.set('pixelfed-classicui-settings', this.modes); //window.ls.set('pixelfed-classicui-settings', this.modes);
}, },
followingModal() { followingModal() {
@ -991,6 +994,18 @@
this.following.splice(index, 1); this.following.splice(index, 1);
} }
}) })
},
owner(status) {
return this.profile.id === status.account.id;
},
admin() {
return this.profile.is_admin == true;
},
ownerOrAdmin(status) {
return this.owner(status) || this.admin();
} }
} }
} }