mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
fix conflicts
This commit is contained in:
commit
768369866e
11 changed files with 1189 additions and 1478 deletions
2603
package-lock.json
generated
2603
package-lock.json
generated
File diff suppressed because it is too large
Load diff
22
package.json
22
package.json
|
@ -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
BIN
public/css/app.css
vendored
Binary file not shown.
BIN
public/css/appdark.css
vendored
BIN
public/css/appdark.css
vendored
Binary file not shown.
BIN
public/css/landing.css
vendored
BIN
public/css/landing.css
vendored
Binary file not shown.
BIN
public/js/app.js
vendored
BIN
public/js/app.js
vendored
Binary file not shown.
BIN
public/js/components.js
vendored
BIN
public/js/components.js
vendored
Binary file not shown.
BIN
public/js/timeline.js
vendored
BIN
public/js/timeline.js
vendored
Binary file not shown.
Binary file not shown.
5
resources/assets/js/components.js
vendored
5
resources/assets/js/components.js
vendored
|
@ -9,7 +9,10 @@ import VueTouch from 'vue-touch';
|
||||||
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'
|
||||||
|
);
|
||||||
|
|
||||||
Vue.use(VueTouch, { name: 'v-touch' })
|
Vue.use(VueTouch, { name: 'v-touch' })
|
||||||
VueTouch.registerCustomEvent('doubletap', {
|
VueTouch.registerCustomEvent('doubletap', {
|
||||||
|
|
|
@ -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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue