mirror of
https://akkoma.dev/lamp/akkoma-fe.git
synced 2026-06-05 06:40:04 -04:00
Compare commits
37 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b13d8f7e63 | |||
| 51d3d8d255 | |||
| cc170aa3ec | |||
| c3fcbbd918 | |||
| 0ac34b3014 | |||
| 06cde8ad06 | |||
| 434f9cdd7e | |||
| 35cde98d2c | |||
| 44e687653c | |||
| 320418d524 | |||
| 8f55cb151c | |||
| 4f0c43bd84 | |||
| a39866308c | |||
| 00cb8d9dce | |||
| 19bde84f6d | |||
| a7567ce6d0 | |||
| 8e87e3d88b | |||
| 6aa276374f | |||
| 23232e1c8f | |||
| b225c3578f | |||
| 30efbaab34 | |||
| 8ca0586c0f | |||
| 938887ef91 | |||
| f31bc5310e | |||
| 925bf5b5a4 | |||
| e768ec1fca | |||
| d09f43ba7a | |||
| 748c4d8c71 | |||
| c7ddfefe34 | |||
| c0205d582a | |||
| 4ac882a3b0 | |||
| bdbc4b27b6 | |||
| 42598fc675 | |||
| 5d49edc823 | |||
| 0bc0a8d5f5 | |||
| 726d5279c1 | |||
| a0f780c455 |
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"presets": ["@babel/preset-env"],
|
"presets": ["@babel/preset-env", "@vue/babel-preset-jsx"],
|
||||||
"plugins": ["@babel/plugin-transform-runtime", "lodash", "@vue/babel-plugin-jsx"],
|
"plugins": ["@babel/plugin-transform-runtime", "lodash"],
|
||||||
"comments": false
|
"comments": false
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-3
@@ -21,8 +21,6 @@ module.exports = {
|
|||||||
'generator-star-spacing': 0,
|
'generator-star-spacing': 0,
|
||||||
// allow debugger during development
|
// allow debugger during development
|
||||||
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
|
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
|
||||||
'vue/require-prop-types': 0,
|
'vue/require-prop-types': 0
|
||||||
'vue/no-unused-vars': 0,
|
|
||||||
'no-tabs': 0
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,4 +7,3 @@ test/e2e/reports
|
|||||||
selenium-debug.log
|
selenium-debug.log
|
||||||
.idea/
|
.idea/
|
||||||
config/local.json
|
config/local.json
|
||||||
config/local.*.json
|
|
||||||
|
|||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
# This file is a template, and might need editing before it works on your project.
|
# This file is a template, and might need editing before it works on your project.
|
||||||
# Official framework image. Look for the different tagged releases at:
|
# Official framework image. Look for the different tagged releases at:
|
||||||
# https://hub.docker.com/r/library/node/tags/
|
# https://hub.docker.com/r/library/node/tags/
|
||||||
image: node:12
|
image: node:10
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- lint
|
- lint
|
||||||
|
|||||||
@@ -1,50 +0,0 @@
|
|||||||
pipeline:
|
|
||||||
lint:
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
- pull_request
|
|
||||||
image: node:16
|
|
||||||
commands:
|
|
||||||
- yarn
|
|
||||||
- yarn lint
|
|
||||||
- yarn stylelint
|
|
||||||
|
|
||||||
test:
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
- pull_request
|
|
||||||
image: node:16
|
|
||||||
commands:
|
|
||||||
- apt update
|
|
||||||
- apt install firefox-esr -y --no-install-recommends
|
|
||||||
- yarn
|
|
||||||
- yarn unit
|
|
||||||
|
|
||||||
build:
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- tag
|
|
||||||
image: node:16
|
|
||||||
commands:
|
|
||||||
- yarn
|
|
||||||
- yarn build
|
|
||||||
|
|
||||||
release:
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- tag
|
|
||||||
image: node:16
|
|
||||||
secrets:
|
|
||||||
- SCW_ACCESS_KEY
|
|
||||||
- SCW_SECRET_KEY
|
|
||||||
- SCW_DEFAULT_ORGANIZATION_ID
|
|
||||||
commands:
|
|
||||||
- apt-get update && apt-get install -y rclone wget zip
|
|
||||||
- wget https://github.com/scaleway/scaleway-cli/releases/download/v2.5.1/scaleway-cli_2.5.1_linux_amd64
|
|
||||||
- mv scaleway-cli_2.5.1_linux_amd64 scaleway-cli
|
|
||||||
- chmod +x scaleway-cli
|
|
||||||
- ./scaleway-cli object config install type=rclone
|
|
||||||
- zip akkoma-fe.zip -r dist
|
|
||||||
- rclone copyto akkoma-fe.zip scaleway:akkoma-updates/frontend/akkoma-fe.zip
|
|
||||||
@@ -3,42 +3,6 @@ All notable changes to this project will be documented in this file.
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
### Fixed
|
|
||||||
- AdminFE button no longer scrolls page to top when clicked
|
|
||||||
- Pinned statuses no longer appear at bottom of user timeline (still appear as part of the timeline when fetched deep enough)
|
|
||||||
- Fixed many many bugs related to new mentions, including spacing and alignment issues
|
|
||||||
- Links in profile bios now properly open in new tabs
|
|
||||||
- Inline images now respect their intended width/height attributes
|
|
||||||
- Links with `&` in them work properly now
|
|
||||||
- Interaction list popovers now properly emojify names
|
|
||||||
- Completely hidden posts still had 1px border
|
|
||||||
- Attachments are ALWAYS in same order as user uploaded, no more "videos first"
|
|
||||||
- Attachment description is prefilled with backend-provided default when uploading
|
|
||||||
- Proper visual feedback that next image is loading when browsing
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
- (You)s are optional (opt-in) now, bolding your nickname is also optional (opt-out)
|
|
||||||
- User highlight background now also covers the `@`
|
|
||||||
- Reverted back to textual `@`, svg version is opt-in.
|
|
||||||
- Settings window has been throughly rearranged to make make more sense and make navication settings easier.
|
|
||||||
- Uploaded attachments are uniform with displayed attachments
|
|
||||||
- Flash is watchable in media-modal (takes up nearly full screen though due to sizing issues)
|
|
||||||
- Notifications about likes/repeats/emoji reacts are now minimized so they always take up same amount of space irrelevant to size of post.
|
|
||||||
|
|
||||||
### Added
|
|
||||||
- Options to show domains in mentions
|
|
||||||
- Option to show user avatars in mention links (opt-in)
|
|
||||||
- Option to disable the tooltip for mentions
|
|
||||||
- Option to completely hide muted threads
|
|
||||||
- Ability to open videos in modal even if you disabled that feature, via an icon button
|
|
||||||
- New button on attachment that indicates that attachment has a description and shows a bar filled with description
|
|
||||||
- Attachments are truncated just like post contents
|
|
||||||
- Media modal now also displays description and counter position in gallery (i.e. 1/5)
|
|
||||||
- Ability to rearrange order of attachments when uploading
|
|
||||||
- Enabled users to zoom and pan images in media viewer with mouse and touch
|
|
||||||
|
|
||||||
|
|
||||||
## [2.4.2] - 2022-01-09
|
## [2.4.2] - 2022-01-09
|
||||||
### Added
|
### Added
|
||||||
- Added Apply and Reset buttons to the bottom of theme tab to minimize UI travel
|
- Added Apply and Reset buttons to the bottom of theme tab to minimize UI travel
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ var utils = require('./utils')
|
|||||||
var projectRoot = path.resolve(__dirname, '../')
|
var projectRoot = path.resolve(__dirname, '../')
|
||||||
var ServiceWorkerWebpackPlugin = require('serviceworker-webpack-plugin')
|
var ServiceWorkerWebpackPlugin = require('serviceworker-webpack-plugin')
|
||||||
var CopyPlugin = require('copy-webpack-plugin');
|
var CopyPlugin = require('copy-webpack-plugin');
|
||||||
var { VueLoaderPlugin } = require('vue-loader')
|
|
||||||
|
|
||||||
var env = process.env.NODE_ENV
|
var env = process.env.NODE_ENV
|
||||||
// check env & config/index.js to decide weither to enable CSS Sourcemaps for the
|
// check env & config/index.js to decide weither to enable CSS Sourcemaps for the
|
||||||
@@ -30,16 +29,16 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
resolve: {
|
resolve: {
|
||||||
extensions: ['.js', '.jsx', '.vue'],
|
extensions: ['.js', '.vue'],
|
||||||
modules: [
|
modules: [
|
||||||
path.join(__dirname, '../node_modules')
|
path.join(__dirname, '../node_modules')
|
||||||
],
|
],
|
||||||
alias: {
|
alias: {
|
||||||
|
'vue$': 'vue/dist/vue.runtime.common',
|
||||||
'static': path.resolve(__dirname, '../static'),
|
'static': path.resolve(__dirname, '../static'),
|
||||||
'src': path.resolve(__dirname, '../src'),
|
'src': path.resolve(__dirname, '../src'),
|
||||||
'assets': path.resolve(__dirname, '../src/assets'),
|
'assets': path.resolve(__dirname, '../src/assets'),
|
||||||
'components': path.resolve(__dirname, '../src/components'),
|
'components': path.resolve(__dirname, '../src/components')
|
||||||
'vue-i18n': 'vue-i18n/dist/vue-i18n.runtime.esm-bundler.js'
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
module: {
|
module: {
|
||||||
@@ -59,28 +58,9 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
enforce: 'post',
|
|
||||||
test: /\.(json5?|ya?ml)$/, // target json, json5, yaml and yml files
|
|
||||||
type: 'javascript/auto',
|
|
||||||
loader: '@intlify/vue-i18n-loader',
|
|
||||||
include: [ // Use `Rule.include` to specify the files of locale messages to be pre-compiled
|
|
||||||
path.resolve(__dirname, '../src/i18n')
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
test: /\.vue$/,
|
test: /\.vue$/,
|
||||||
loader: 'vue-loader',
|
use: 'vue-loader'
|
||||||
options: {
|
|
||||||
compilerOptions: {
|
|
||||||
isCustomElement(tag) {
|
|
||||||
if (tag === 'pinch-zoom') {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.jsx?$/,
|
test: /\.jsx?$/,
|
||||||
@@ -115,7 +95,6 @@ module.exports = {
|
|||||||
entry: path.join(__dirname, '..', 'src/sw.js'),
|
entry: path.join(__dirname, '..', 'src/sw.js'),
|
||||||
filename: 'sw-pleroma.js'
|
filename: 'sw-pleroma.js'
|
||||||
}),
|
}),
|
||||||
new VueLoaderPlugin(),
|
|
||||||
// This copies Ruffle's WASM to a directory so that JS side can access it
|
// This copies Ruffle's WASM to a directory so that JS side can access it
|
||||||
new CopyPlugin({
|
new CopyPlugin({
|
||||||
patterns: [
|
patterns: [
|
||||||
|
|||||||
@@ -21,9 +21,7 @@ module.exports = merge(baseWebpackConfig, {
|
|||||||
new webpack.DefinePlugin({
|
new webpack.DefinePlugin({
|
||||||
'process.env': config.dev.env,
|
'process.env': config.dev.env,
|
||||||
'COMMIT_HASH': JSON.stringify('DEV'),
|
'COMMIT_HASH': JSON.stringify('DEV'),
|
||||||
'DEV_OVERRIDES': JSON.stringify(config.dev.settings),
|
'DEV_OVERRIDES': JSON.stringify(config.dev.settings)
|
||||||
'__VUE_OPTIONS_API__': true,
|
|
||||||
'__VUE_PROD_DEVTOOLS__': false
|
|
||||||
}),
|
}),
|
||||||
// https://github.com/glenjamin/webpack-hot-middleware#installation--usage
|
// https://github.com/glenjamin/webpack-hot-middleware#installation--usage
|
||||||
new webpack.HotModuleReplacementPlugin(),
|
new webpack.HotModuleReplacementPlugin(),
|
||||||
|
|||||||
@@ -36,9 +36,7 @@ var webpackConfig = merge(baseWebpackConfig, {
|
|||||||
new webpack.DefinePlugin({
|
new webpack.DefinePlugin({
|
||||||
'process.env': env,
|
'process.env': env,
|
||||||
'COMMIT_HASH': JSON.stringify(commitHash),
|
'COMMIT_HASH': JSON.stringify(commitHash),
|
||||||
'DEV_OVERRIDES': JSON.stringify(undefined),
|
'DEV_OVERRIDES': JSON.stringify(undefined)
|
||||||
'__VUE_OPTIONS_API__': true,
|
|
||||||
'__VUE_PROD_DEVTOOLS__': false
|
|
||||||
}),
|
}),
|
||||||
// extract css into its own file
|
// extract css into its own file
|
||||||
new MiniCssExtractPlugin({
|
new MiniCssExtractPlugin({
|
||||||
|
|||||||
+1
-4
@@ -52,10 +52,7 @@ module.exports = {
|
|||||||
target,
|
target,
|
||||||
changeOrigin: true,
|
changeOrigin: true,
|
||||||
cookieDomainRewrite: 'localhost',
|
cookieDomainRewrite: 'localhost',
|
||||||
ws: true,
|
ws: true
|
||||||
headers: {
|
|
||||||
'Origin': target
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
'/oauth/revoke': {
|
'/oauth/revoke': {
|
||||||
target,
|
target,
|
||||||
|
|||||||
@@ -3,12 +3,6 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1,user-scalable=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1,user-scalable=no">
|
||||||
<title>Pleroma</title>
|
|
||||||
<link rel="stylesheet" href="/static/font/css/fontello.css">
|
|
||||||
<link rel="stylesheet" href="/static/font/css/animation.css">
|
|
||||||
<link rel="stylesheet" href="/static/font/tiresias.css">
|
|
||||||
<link rel="stylesheet" href="/static/font/css/lato.css">
|
|
||||||
<link rel="stylesheet" href="/static/mfm.css">
|
|
||||||
<!--server-generated-meta-->
|
<!--server-generated-meta-->
|
||||||
<link rel="icon" type="image/png" href="/favicon.png">
|
<link rel="icon" type="image/png" href="/favicon.png">
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
+98
-104
@@ -16,113 +16,107 @@
|
|||||||
"lint-fix": "eslint --fix --ext .js,.vue src test/unit/specs test/e2e/specs"
|
"lint-fix": "eslint --fix --ext .js,.vue src test/unit/specs test/e2e/specs"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/runtime": "7.17.8",
|
"@babel/runtime": "^7.7.6",
|
||||||
"@chenfengyuan/vue-qrcode": "2.0.0",
|
"@chenfengyuan/vue-qrcode": "^1.0.0",
|
||||||
"@fortawesome/fontawesome-svg-core": "1.3.0",
|
"@fortawesome/fontawesome-svg-core": "^1.2.32",
|
||||||
"@fortawesome/free-regular-svg-icons": "5.15.4",
|
"@fortawesome/free-regular-svg-icons": "^5.15.1",
|
||||||
"@fortawesome/free-solid-svg-icons": "5.15.4",
|
"@fortawesome/free-solid-svg-icons": "^5.15.1",
|
||||||
"@fortawesome/vue-fontawesome": "3.0.0-5",
|
"@fortawesome/vue-fontawesome": "^2.0.0",
|
||||||
"@kazvmoe-infra/pinch-zoom-element": "1.2.0",
|
"body-scroll-lock": "^2.6.4",
|
||||||
"@vuelidate/core": "2.0.0-alpha.41",
|
"chromatism": "^3.0.0",
|
||||||
"@vuelidate/validators": "2.0.0-alpha.27",
|
"cropperjs": "^1.4.3",
|
||||||
"body-scroll-lock": "2.7.1",
|
"diff": "^3.0.1",
|
||||||
"chromatism": "3.0.0",
|
"escape-html": "^1.0.3",
|
||||||
"click-outside-vue3": "4.0.1",
|
"localforage": "^1.5.0",
|
||||||
"cropperjs": "1.5.12",
|
"parse-link-header": "^1.0.1",
|
||||||
"diff": "3.5.0",
|
"phoenix": "^1.3.0",
|
||||||
"escape-html": "1.0.3",
|
"portal-vue": "^2.1.4",
|
||||||
"js-cookie": "^3.0.1",
|
"punycode.js": "^2.1.0",
|
||||||
"localforage": "1.10.0",
|
"ruffle-mirror": "^2021.4.10",
|
||||||
"mfm-js": "^0.22.1",
|
"v-click-outside": "^2.1.1",
|
||||||
"parse-link-header": "1.0.1",
|
"vue": "^2.6.11",
|
||||||
"phoenix": "1.6.2",
|
"vue-i18n": "^7.3.2",
|
||||||
"punycode.js": "2.1.0",
|
"vue-router": "^3.0.1",
|
||||||
"qrcode": "1",
|
"vue-template-compiler": "^2.6.11",
|
||||||
"ruffle-mirror": "2021.12.31",
|
"vuelidate": "^0.7.4",
|
||||||
"vue": "^3.2.31",
|
"vuex": "^3.0.1"
|
||||||
"vue-i18n": "^9.2.0-beta.34",
|
|
||||||
"vue-router": "4.0.14",
|
|
||||||
"vue-template-compiler": "2.6.11",
|
|
||||||
"vuex": "4.0.2"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "7.17.8",
|
"@babel/core": "^7.7.5",
|
||||||
"@babel/plugin-transform-runtime": "7.17.0",
|
"@babel/plugin-transform-runtime": "^7.7.6",
|
||||||
"@babel/preset-env": "7.16.11",
|
"@babel/preset-env": "^7.7.6",
|
||||||
"@babel/register": "7.17.7",
|
"@babel/register": "^7.7.4",
|
||||||
"@intlify/vue-i18n-loader": "^5.0.0",
|
"@ungap/event-target": "^0.1.0",
|
||||||
"@ungap/event-target": "0.2.3",
|
"@vue/babel-helper-vue-jsx-merge-props": "^1.2.1",
|
||||||
"@vue/babel-helper-vue-jsx-merge-props": "1.2.1",
|
"@vue/babel-preset-jsx": "^1.2.4",
|
||||||
"@vue/babel-plugin-jsx": "1.1.1",
|
"@vue/test-utils": "^1.0.0-beta.26",
|
||||||
"@vue/compiler-sfc": "^3.1.0",
|
"autoprefixer": "^6.4.0",
|
||||||
"@vue/test-utils": "2.0.0-rc.17",
|
"babel-eslint": "^7.0.0",
|
||||||
"autoprefixer": "6.7.7",
|
"babel-loader": "^8.0.6",
|
||||||
"babel-eslint": "7.2.3",
|
"babel-plugin-lodash": "^3.3.4",
|
||||||
"babel-loader": "8.2.4",
|
"chai": "^3.5.0",
|
||||||
"babel-plugin-lodash": "3.3.4",
|
"chalk": "^1.1.3",
|
||||||
"chai": "3.5.0",
|
"chromedriver": "^87.0.1",
|
||||||
"chalk": "1.1.3",
|
"connect-history-api-fallback": "^1.1.0",
|
||||||
"chromedriver": "87.0.7",
|
"copy-webpack-plugin": "^6.4.1",
|
||||||
"connect-history-api-fallback": "1.6.0",
|
"cross-spawn": "^4.0.2",
|
||||||
"copy-webpack-plugin": "6.4.1",
|
"css-loader": "^0.28.0",
|
||||||
"cross-spawn": "4.0.2",
|
"custom-event-polyfill": "^1.0.7",
|
||||||
"css-loader": "0.28.11",
|
"eslint": "^5.16.0",
|
||||||
"custom-event-polyfill": "1.0.7",
|
"eslint-config-standard": "^12.0.0",
|
||||||
"eslint": "5.16.0",
|
"eslint-friendly-formatter": "^2.0.5",
|
||||||
"eslint-config-standard": "12.0.0",
|
"eslint-loader": "^2.1.0",
|
||||||
"eslint-friendly-formatter": "2.0.7",
|
"eslint-plugin-import": "^2.13.0",
|
||||||
"eslint-loader": "2.2.1",
|
"eslint-plugin-node": "^7.0.0",
|
||||||
"eslint-plugin-import": "2.25.4",
|
"eslint-plugin-promise": "^4.0.0",
|
||||||
"eslint-plugin-node": "7.0.1",
|
"eslint-plugin-standard": "^4.0.0",
|
||||||
"eslint-plugin-promise": "4.3.1",
|
"eslint-plugin-vue": "^5.2.2",
|
||||||
"eslint-plugin-standard": "4.1.0",
|
"eventsource-polyfill": "^0.9.6",
|
||||||
"eslint-plugin-vue": "5.2.3",
|
"express": "^4.13.3",
|
||||||
"eventsource-polyfill": "0.9.6",
|
"file-loader": "^3.0.1",
|
||||||
"express": "4.17.3",
|
"function-bind": "^1.0.2",
|
||||||
"file-loader": "3.0.1",
|
"html-webpack-plugin": "^3.0.0",
|
||||||
"function-bind": "1.1.1",
|
"http-proxy-middleware": "^0.17.2",
|
||||||
"html-webpack-plugin": "3.2.0",
|
"inject-loader": "^2.0.1",
|
||||||
"http-proxy-middleware": "0.21.0",
|
"iso-639-1": "^2.0.3",
|
||||||
"inject-loader": "2.0.1",
|
"isparta-loader": "^2.0.0",
|
||||||
"iso-639-1": "2.1.13",
|
"json-loader": "^0.5.4",
|
||||||
"isparta-loader": "2.0.0",
|
"karma": "^3.0.0",
|
||||||
"json-loader": "0.5.7",
|
"karma-coverage": "^1.1.1",
|
||||||
"karma": "6.3.17",
|
"karma-firefox-launcher": "^1.1.0",
|
||||||
"karma-coverage": "1.1.2",
|
"karma-mocha": "^1.2.0",
|
||||||
"karma-firefox-launcher": "1.3.0",
|
"karma-mocha-reporter": "^2.2.1",
|
||||||
"karma-mocha": "2.0.1",
|
"karma-sinon-chai": "^2.0.2",
|
||||||
"karma-mocha-reporter": "2.2.5",
|
"karma-sourcemap-loader": "^0.3.7",
|
||||||
"karma-sinon-chai": "2.0.2",
|
"karma-spec-reporter": "0.0.26",
|
||||||
"karma-sourcemap-loader": "0.3.8",
|
"karma-webpack": "^4.0.0-rc.3",
|
||||||
"karma-spec-reporter": "0.0.33",
|
"lodash": "^4.16.4",
|
||||||
"karma-webpack": "4.0.2",
|
"lolex": "^1.4.0",
|
||||||
"lodash": "4.17.21",
|
"mini-css-extract-plugin": "^0.5.0",
|
||||||
"lolex": "1.6.0",
|
"mocha": "^3.1.0",
|
||||||
"mini-css-extract-plugin": "0.12.0",
|
"nightwatch": "^0.9.8",
|
||||||
"mocha": "3.5.3",
|
"opn": "^4.0.2",
|
||||||
"nightwatch": "0.9.21",
|
"ora": "^0.3.0",
|
||||||
"opn": "4.0.2",
|
"postcss-loader": "^3.0.0",
|
||||||
"ora": "0.4.1",
|
"raw-loader": "^0.5.1",
|
||||||
"postcss-loader": "3.0.0",
|
"sass": "^1.17.3",
|
||||||
"raw-loader": "0.5.1",
|
"sass-loader": "git://github.com/webpack-contrib/sass-loader",
|
||||||
"sass": "1.20.1",
|
|
||||||
"sass-loader": "7.2.0",
|
|
||||||
"selenium-server": "2.53.1",
|
"selenium-server": "2.53.1",
|
||||||
"semver": "5.7.1",
|
"semver": "^5.3.0",
|
||||||
"serviceworker-webpack-plugin": "1.0.1",
|
"serviceworker-webpack-plugin": "^1.0.0",
|
||||||
"shelljs": "0.8.5",
|
"shelljs": "^0.8.4",
|
||||||
"sinon": "2.4.1",
|
"sinon": "^2.1.0",
|
||||||
"sinon-chai": "2.14.0",
|
"sinon-chai": "^2.8.0",
|
||||||
"stylelint": "13.6.1",
|
"stylelint": "^13.6.1",
|
||||||
"stylelint-config-standard": "20.0.0",
|
"stylelint-config-standard": "^20.0.0",
|
||||||
"stylelint-rscss": "0.4.0",
|
"stylelint-rscss": "^0.4.0",
|
||||||
"url-loader": "1.1.2",
|
"url-loader": "^1.1.2",
|
||||||
"vue-loader": "^16.0.0",
|
"vue-loader": "^14.0.0",
|
||||||
"vue-style-loader": "4.1.2",
|
"vue-style-loader": "^4.0.0",
|
||||||
"webpack": "4.46.0",
|
"webpack": "^4.44.0",
|
||||||
"webpack-dev-middleware": "3.7.3",
|
"webpack-dev-middleware": "^3.6.0",
|
||||||
"webpack-hot-middleware": "2.24.3",
|
"webpack-hot-middleware": "^2.12.2",
|
||||||
"webpack-merge": "0.20.0"
|
"webpack-merge": "^0.14.1"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 4.0.0",
|
"node": ">= 4.0.0",
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
||||||
"extends": [
|
|
||||||
"config:base"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
+16
-33
@@ -1,5 +1,6 @@
|
|||||||
import UserPanel from './components/user_panel/user_panel.vue'
|
import UserPanel from './components/user_panel/user_panel.vue'
|
||||||
import NavPanel from './components/nav_panel/nav_panel.vue'
|
import NavPanel from './components/nav_panel/nav_panel.vue'
|
||||||
|
import Notifications from './components/notifications/notifications.vue'
|
||||||
import InstanceSpecificPanel from './components/instance_specific_panel/instance_specific_panel.vue'
|
import InstanceSpecificPanel from './components/instance_specific_panel/instance_specific_panel.vue'
|
||||||
import FeaturesPanel from './components/features_panel/features_panel.vue'
|
import FeaturesPanel from './components/features_panel/features_panel.vue'
|
||||||
import WhoToFollowPanel from './components/who_to_follow_panel/who_to_follow_panel.vue'
|
import WhoToFollowPanel from './components/who_to_follow_panel/who_to_follow_panel.vue'
|
||||||
@@ -15,14 +16,13 @@ import PostStatusModal from './components/post_status_modal/post_status_modal.vu
|
|||||||
import GlobalNoticeList from './components/global_notice_list/global_notice_list.vue'
|
import GlobalNoticeList from './components/global_notice_list/global_notice_list.vue'
|
||||||
import { windowWidth, windowHeight } from './services/window_utils/window_utils'
|
import { windowWidth, windowHeight } from './services/window_utils/window_utils'
|
||||||
import { mapGetters } from 'vuex'
|
import { mapGetters } from 'vuex'
|
||||||
import { defineAsyncComponent } from 'vue'
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'app',
|
name: 'app',
|
||||||
components: {
|
components: {
|
||||||
UserPanel,
|
UserPanel,
|
||||||
NavPanel,
|
NavPanel,
|
||||||
Notifications: defineAsyncComponent(() => import('./components/notifications/notifications.vue')),
|
Notifications,
|
||||||
InstanceSpecificPanel,
|
InstanceSpecificPanel,
|
||||||
FeaturesPanel,
|
FeaturesPanel,
|
||||||
WhoToFollowPanel,
|
WhoToFollowPanel,
|
||||||
@@ -46,20 +46,10 @@ export default {
|
|||||||
this.$store.dispatch('setOption', { name: 'interfaceLanguage', value: val })
|
this.$store.dispatch('setOption', { name: 'interfaceLanguage', value: val })
|
||||||
window.addEventListener('resize', this.updateMobileState)
|
window.addEventListener('resize', this.updateMobileState)
|
||||||
},
|
},
|
||||||
unmounted () {
|
destroyed () {
|
||||||
window.removeEventListener('resize', this.updateMobileState)
|
window.removeEventListener('resize', this.updateMobileState)
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
classes () {
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
'-reverse': this.reverseLayout,
|
|
||||||
'-no-sticky-headers': this.noSticky,
|
|
||||||
'-has-new-post-button': this.newPostButtonShown
|
|
||||||
},
|
|
||||||
'-' + this.layoutType
|
|
||||||
]
|
|
||||||
},
|
|
||||||
currentUser () { return this.$store.state.users.currentUser },
|
currentUser () { return this.$store.state.users.currentUser },
|
||||||
userBackground () { return this.currentUser.background_image },
|
userBackground () { return this.currentUser.background_image },
|
||||||
instanceBackground () {
|
instanceBackground () {
|
||||||
@@ -75,45 +65,38 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
shout () { return this.$store.state.shout.joined },
|
shout () { return this.$store.state.shout.channel.state === 'joined' },
|
||||||
suggestionsEnabled () { return this.$store.state.instance.suggestionsEnabled },
|
suggestionsEnabled () { return this.$store.state.instance.suggestionsEnabled },
|
||||||
showInstanceSpecificPanel () {
|
showInstanceSpecificPanel () {
|
||||||
return this.$store.state.instance.showInstanceSpecificPanel &&
|
return this.$store.state.instance.showInstanceSpecificPanel &&
|
||||||
!this.$store.getters.mergedConfig.hideISP &&
|
!this.$store.getters.mergedConfig.hideISP &&
|
||||||
this.$store.state.instance.instanceSpecificPanelContent
|
this.$store.state.instance.instanceSpecificPanelContent
|
||||||
},
|
},
|
||||||
isChats () {
|
|
||||||
return this.$route.name === 'chat' || this.$route.name === 'chats'
|
|
||||||
},
|
|
||||||
newPostButtonShown () {
|
|
||||||
if (this.isChats) return false
|
|
||||||
return this.$store.getters.mergedConfig.alwaysShowNewPostButton || this.layoutType === 'mobile'
|
|
||||||
},
|
|
||||||
showFeaturesPanel () { return this.$store.state.instance.showFeaturesPanel },
|
showFeaturesPanel () { return this.$store.state.instance.showFeaturesPanel },
|
||||||
shoutboxPosition () {
|
shoutboxPosition () {
|
||||||
return this.$store.getters.mergedConfig.alwaysShowNewPostButton || false
|
return this.$store.getters.mergedConfig.showNewPostButton || false
|
||||||
},
|
},
|
||||||
hideShoutbox () {
|
hideShoutbox () {
|
||||||
return this.$store.getters.mergedConfig.hideShoutbox
|
return this.$store.getters.mergedConfig.hideShoutbox
|
||||||
},
|
},
|
||||||
layoutType () { return this.$store.state.interface.layoutType },
|
isMobileLayout () { return this.$store.state.interface.mobileLayout },
|
||||||
privateMode () { return this.$store.state.instance.private },
|
privateMode () { return this.$store.state.instance.private },
|
||||||
reverseLayout () {
|
sidebarAlign () {
|
||||||
const { thirdColumnMode, sidebarRight: reverseSetting } = this.$store.getters.mergedConfig
|
return {
|
||||||
if (this.layoutType !== 'wide') {
|
'order': this.$store.getters.mergedConfig.sidebarRight ? 99 : 0
|
||||||
return reverseSetting
|
|
||||||
} else {
|
|
||||||
return thirdColumnMode === 'notifications' ? reverseSetting : !reverseSetting
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
noSticky () { return this.$store.getters.mergedConfig.disableStickyHeaders },
|
|
||||||
showScrollbars () { return this.$store.getters.mergedConfig.showScrollbars },
|
|
||||||
...mapGetters(['mergedConfig'])
|
...mapGetters(['mergedConfig'])
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
updateMobileState () {
|
updateMobileState () {
|
||||||
this.$store.dispatch('setLayoutWidth', windowWidth())
|
const mobileLayout = windowWidth() <= 800
|
||||||
this.$store.dispatch('setLayoutHeight', windowHeight())
|
const layoutHeight = windowHeight()
|
||||||
|
const changed = mobileLayout !== this.isMobileLayout
|
||||||
|
if (changed) {
|
||||||
|
this.$store.dispatch('setMobileLayout', mobileLayout)
|
||||||
|
}
|
||||||
|
this.$store.dispatch('setLayoutHeight', layoutHeight)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+452
-399
File diff suppressed because it is too large
Load Diff
+24
-30
@@ -1,40 +1,39 @@
|
|||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
id="app-loaded"
|
id="app"
|
||||||
:style="bgStyle"
|
:style="bgStyle"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
id="app_bg_wrapper"
|
id="app_bg_wrapper"
|
||||||
class="app-bg-wrapper"
|
class="app-bg-wrapper"
|
||||||
/>
|
/>
|
||||||
<MobileNav v-if="layoutType === 'mobile'" />
|
<MobileNav v-if="isMobileLayout" />
|
||||||
<DesktopNav v-else />
|
<DesktopNav v-else />
|
||||||
<Notifications v-if="currentUser" />
|
<div class="app-bg-wrapper app-container-wrapper" />
|
||||||
<div
|
<div
|
||||||
id="content"
|
id="content"
|
||||||
class="app-layout container"
|
class="container underlay"
|
||||||
:class="classes"
|
|
||||||
>
|
>
|
||||||
<div class="underlay" />
|
|
||||||
<div
|
<div
|
||||||
id="sidebar"
|
class="sidebar-flexer mobile-hidden"
|
||||||
class="column -scrollable"
|
:style="sidebarAlign"
|
||||||
:class="{ '-show-scrollbar': showScrollbars }"
|
|
||||||
>
|
>
|
||||||
<user-panel />
|
<div class="sidebar-bounds">
|
||||||
<template v-if="layoutType !== 'mobile'">
|
<div class="sidebar-scroller">
|
||||||
<nav-panel />
|
<div class="sidebar">
|
||||||
<instance-specific-panel v-if="showInstanceSpecificPanel" />
|
<user-panel />
|
||||||
<features-panel v-if="!currentUser && showFeaturesPanel" />
|
<div v-if="!isMobileLayout">
|
||||||
<who-to-follow-panel v-if="currentUser && suggestionsEnabled" />
|
<nav-panel />
|
||||||
<div id="notifs-sidebar" />
|
<instance-specific-panel v-if="showInstanceSpecificPanel" />
|
||||||
</template>
|
<features-panel v-if="!currentUser && showFeaturesPanel" />
|
||||||
|
<who-to-follow-panel v-if="currentUser && suggestionsEnabled" />
|
||||||
|
<notifications v-if="currentUser" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div class="main">
|
||||||
id="main-scroller"
|
|
||||||
class="column main"
|
|
||||||
:class="{ '-full-height': isChats }"
|
|
||||||
>
|
|
||||||
<div
|
<div
|
||||||
v-if="!currentUser"
|
v-if="!currentUser"
|
||||||
class="login-hint panel panel-default"
|
class="login-hint panel panel-default"
|
||||||
@@ -48,24 +47,19 @@
|
|||||||
</div>
|
</div>
|
||||||
<router-view />
|
<router-view />
|
||||||
</div>
|
</div>
|
||||||
<div
|
<media-modal />
|
||||||
id="notifs-column"
|
|
||||||
class="column -scrollable"
|
|
||||||
:class="{ '-show-scrollbar': showScrollbars }"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
<media-modal />
|
|
||||||
<shout-panel
|
<shout-panel
|
||||||
v-if="currentUser && shout && !hideShoutbox"
|
v-if="currentUser && shout && !hideShoutbox"
|
||||||
:floating="true"
|
:floating="true"
|
||||||
class="floating-shout mobile-hidden"
|
class="floating-shout mobile-hidden"
|
||||||
:class="{ '-left': shoutboxPosition }"
|
:class="{ 'left': shoutboxPosition }"
|
||||||
/>
|
/>
|
||||||
<MobilePostStatusButton />
|
<MobilePostStatusButton />
|
||||||
<UserReportingModal />
|
<UserReportingModal />
|
||||||
<PostStatusModal />
|
<PostStatusModal />
|
||||||
<SettingsModal />
|
<SettingsModal />
|
||||||
<div id="modal" />
|
<portal-target name="modal" />
|
||||||
<GlobalNoticeList />
|
<GlobalNoticeList />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -30,5 +30,3 @@ $fallback--attachmentRadius: 10px;
|
|||||||
$fallback--chatMessageRadius: 10px;
|
$fallback--chatMessageRadius: 10px;
|
||||||
|
|
||||||
$fallback--buttonShadow: 0px 0px 2px 0px rgba(0, 0, 0, 1), 0px 1px 0px 0px rgba(255, 255, 255, 0.2) inset, 0px -1px 0px 0px rgba(0, 0, 0, 0.2) inset;
|
$fallback--buttonShadow: 0px 0px 2px 0px rgba(0, 0, 0, 1), 0px 1px 0px 0px rgba(255, 255, 255, 0.2) inset, 0px -1px 0px 0px rgba(0, 0, 0, 0.2) inset;
|
||||||
|
|
||||||
$status-margin: 0.75em;
|
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 34 KiB |
+17
-31
@@ -1,14 +1,8 @@
|
|||||||
import { createApp } from 'vue'
|
import Vue from 'vue'
|
||||||
import { createRouter, createWebHistory } from 'vue-router'
|
import VueRouter from 'vue-router'
|
||||||
import vClickOutside from 'click-outside-vue3'
|
|
||||||
|
|
||||||
import { FontAwesomeIcon, FontAwesomeLayers } from '@fortawesome/vue-fontawesome'
|
|
||||||
|
|
||||||
import App from '../App.vue'
|
|
||||||
import routes from './routes'
|
import routes from './routes'
|
||||||
import VBodyScrollLock from 'src/directives/body_scroll_lock'
|
import App from '../App.vue'
|
||||||
|
import { windowWidth } from '../services/window_utils/window_utils'
|
||||||
import { windowWidth, windowHeight } from '../services/window_utils/window_utils'
|
|
||||||
import { getOrCreateApp, getClientToken } from '../services/new_api/oauth.js'
|
import { getOrCreateApp, getClientToken } from '../services/new_api/oauth.js'
|
||||||
import backendInteractorService from '../services/backend_interactor_service/backend_interactor_service.js'
|
import backendInteractorService from '../services/backend_interactor_service/backend_interactor_service.js'
|
||||||
import { CURRENT_VERSION } from '../services/theme_data/theme_data.service.js'
|
import { CURRENT_VERSION } from '../services/theme_data/theme_data.service.js'
|
||||||
@@ -121,7 +115,6 @@ const setSettings = async ({ apiConfig, staticConfig, store }) => {
|
|||||||
copyInstanceOption('nsfwCensorImage')
|
copyInstanceOption('nsfwCensorImage')
|
||||||
copyInstanceOption('background')
|
copyInstanceOption('background')
|
||||||
copyInstanceOption('hidePostStats')
|
copyInstanceOption('hidePostStats')
|
||||||
copyInstanceOption('hideBotIndication')
|
|
||||||
copyInstanceOption('hideUserStats')
|
copyInstanceOption('hideUserStats')
|
||||||
copyInstanceOption('hideFilteredStatuses')
|
copyInstanceOption('hideFilteredStatuses')
|
||||||
copyInstanceOption('logo')
|
copyInstanceOption('logo')
|
||||||
@@ -332,8 +325,8 @@ const checkOAuthToken = async ({ store }) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const afterStoreSetup = async ({ store, i18n }) => {
|
const afterStoreSetup = async ({ store, i18n }) => {
|
||||||
store.dispatch('setLayoutWidth', windowWidth())
|
const width = windowWidth()
|
||||||
store.dispatch('setLayoutHeight', windowHeight())
|
store.dispatch('setMobileLayout', width <= 800)
|
||||||
|
|
||||||
FaviconService.initFaviconService()
|
FaviconService.initFaviconService()
|
||||||
|
|
||||||
@@ -373,32 +366,25 @@ const afterStoreSetup = async ({ store, i18n }) => {
|
|||||||
getTOS({ store })
|
getTOS({ store })
|
||||||
getStickers({ store })
|
getStickers({ store })
|
||||||
|
|
||||||
const router = createRouter({
|
const router = new VueRouter({
|
||||||
history: createWebHistory(),
|
mode: 'history',
|
||||||
routes: routes(store),
|
routes: routes(store),
|
||||||
scrollBehavior: (to, _from, savedPosition) => {
|
scrollBehavior: (to, _from, savedPosition) => {
|
||||||
if (to.matched.some(m => m.meta.dontScroll)) {
|
if (to.matched.some(m => m.meta.dontScroll)) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
return savedPosition || { left: 0, top: 0 }
|
return savedPosition || { x: 0, y: 0 }
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
const app = createApp(App)
|
/* eslint-disable no-new */
|
||||||
|
return new Vue({
|
||||||
app.use(router)
|
router,
|
||||||
app.use(store)
|
store,
|
||||||
app.use(i18n)
|
i18n,
|
||||||
|
el: '#app',
|
||||||
app.use(vClickOutside)
|
render: h => h(App)
|
||||||
app.use(VBodyScrollLock)
|
})
|
||||||
|
|
||||||
app.component('FAIcon', FontAwesomeIcon)
|
|
||||||
app.component('FALayers', FontAwesomeLayers)
|
|
||||||
|
|
||||||
app.mount('#app')
|
|
||||||
|
|
||||||
return app
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default afterStoreSetup
|
export default afterStoreSetup
|
||||||
|
|||||||
+3
-3
@@ -46,7 +46,7 @@ export default (store) => {
|
|||||||
{ name: 'bookmarks', path: '/bookmarks', component: BookmarkTimeline },
|
{ name: 'bookmarks', path: '/bookmarks', component: BookmarkTimeline },
|
||||||
{ name: 'conversation', path: '/notice/:id', component: ConversationPage, meta: { dontScroll: true } },
|
{ name: 'conversation', path: '/notice/:id', component: ConversationPage, meta: { dontScroll: true } },
|
||||||
{ name: 'remote-user-profile-acct',
|
{ name: 'remote-user-profile-acct',
|
||||||
path: '/remote-users/:_(@)?:username([^/@]+)@:hostname([^/@]+)',
|
path: '/remote-users/(@?):username([^/@]+)@:hostname([^/@]+)',
|
||||||
component: RemoteUserResolver,
|
component: RemoteUserResolver,
|
||||||
beforeEnter: validateAuthenticatedRoute
|
beforeEnter: validateAuthenticatedRoute
|
||||||
},
|
},
|
||||||
@@ -62,14 +62,14 @@ export default (store) => {
|
|||||||
{ name: 'password-reset', path: '/password-reset', component: PasswordReset, props: true },
|
{ name: 'password-reset', path: '/password-reset', component: PasswordReset, props: true },
|
||||||
{ name: 'registration-token', path: '/registration/:token', component: Registration },
|
{ name: 'registration-token', path: '/registration/:token', component: Registration },
|
||||||
{ name: 'friend-requests', path: '/friend-requests', component: FollowRequests, beforeEnter: validateAuthenticatedRoute },
|
{ name: 'friend-requests', path: '/friend-requests', component: FollowRequests, beforeEnter: validateAuthenticatedRoute },
|
||||||
{ name: 'notifications', path: '/:username/notifications', component: Notifications, props: () => ({ disableTeleport: true }), beforeEnter: validateAuthenticatedRoute },
|
{ name: 'notifications', path: '/:username/notifications', component: Notifications, beforeEnter: validateAuthenticatedRoute },
|
||||||
{ name: 'login', path: '/login', component: AuthForm },
|
{ name: 'login', path: '/login', component: AuthForm },
|
||||||
{ name: 'shout-panel', path: '/shout-panel', component: ShoutPanel, props: () => ({ floating: false }) },
|
{ name: 'shout-panel', path: '/shout-panel', component: ShoutPanel, props: () => ({ floating: false }) },
|
||||||
{ name: 'oauth-callback', path: '/oauth-callback', component: OAuthCallback, props: (route) => ({ code: route.query.code }) },
|
{ name: 'oauth-callback', path: '/oauth-callback', component: OAuthCallback, props: (route) => ({ code: route.query.code }) },
|
||||||
{ name: 'search', path: '/search', component: Search, props: (route) => ({ query: route.query.query }) },
|
{ name: 'search', path: '/search', component: Search, props: (route) => ({ query: route.query.query }) },
|
||||||
{ name: 'who-to-follow', path: '/who-to-follow', component: WhoToFollow, beforeEnter: validateAuthenticatedRoute },
|
{ name: 'who-to-follow', path: '/who-to-follow', component: WhoToFollow, beforeEnter: validateAuthenticatedRoute },
|
||||||
{ name: 'about', path: '/about', component: About },
|
{ name: 'about', path: '/about', component: About },
|
||||||
{ name: 'user-profile', path: '/:_(users)?/:name', component: UserProfile }
|
{ name: 'user-profile', path: '/(users/)?:name', component: UserProfile }
|
||||||
]
|
]
|
||||||
|
|
||||||
if (store.state.instance.pleromaChatMessagesAvailable) {
|
if (store.state.instance.pleromaChatMessagesAvailable) {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="column-inner">
|
<div class="sidebar">
|
||||||
<instance-specific-panel v-if="showInstanceSpecificPanel" />
|
<instance-specific-panel v-if="showInstanceSpecificPanel" />
|
||||||
<staff-panel />
|
<staff-panel />
|
||||||
<terms-of-service-panel />
|
<terms-of-service-panel />
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ const AccountActions = {
|
|||||||
openChat () {
|
openChat () {
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
name: 'chat',
|
name: 'chat',
|
||||||
params: { username: this.$store.state.users.currentUser.screen_name, recipient_id: this.user.id }
|
params: { recipient_id: this.user.id }
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -74,6 +74,10 @@
|
|||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
@import '../../_variables.scss';
|
@import '../../_variables.scss';
|
||||||
.AccountActions {
|
.AccountActions {
|
||||||
|
button.dropdown-item {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.ellipsis-button {
|
.ellipsis-button {
|
||||||
width: 2.5em;
|
width: 2.5em;
|
||||||
margin: -0.5em 0;
|
margin: -0.5em 0;
|
||||||
|
|||||||
@@ -19,7 +19,6 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
emits: ['resetAsyncComponent'],
|
|
||||||
methods: {
|
methods: {
|
||||||
retry () {
|
retry () {
|
||||||
this.$emit('resetAsyncComponent')
|
this.$emit('resetAsyncComponent')
|
||||||
|
|||||||
@@ -11,12 +11,7 @@ import {
|
|||||||
faImage,
|
faImage,
|
||||||
faVideo,
|
faVideo,
|
||||||
faPlayCircle,
|
faPlayCircle,
|
||||||
faTimes,
|
faTimes
|
||||||
faStop,
|
|
||||||
faSearchPlus,
|
|
||||||
faTrashAlt,
|
|
||||||
faPencilAlt,
|
|
||||||
faAlignRight
|
|
||||||
} from '@fortawesome/free-solid-svg-icons'
|
} from '@fortawesome/free-solid-svg-icons'
|
||||||
|
|
||||||
library.add(
|
library.add(
|
||||||
@@ -25,39 +20,27 @@ library.add(
|
|||||||
faImage,
|
faImage,
|
||||||
faVideo,
|
faVideo,
|
||||||
faPlayCircle,
|
faPlayCircle,
|
||||||
faTimes,
|
faTimes
|
||||||
faStop,
|
|
||||||
faSearchPlus,
|
|
||||||
faTrashAlt,
|
|
||||||
faPencilAlt,
|
|
||||||
faAlignRight
|
|
||||||
)
|
)
|
||||||
|
|
||||||
const Attachment = {
|
const Attachment = {
|
||||||
props: [
|
props: [
|
||||||
'attachment',
|
'attachment',
|
||||||
'description',
|
|
||||||
'hideDescription',
|
|
||||||
'nsfw',
|
'nsfw',
|
||||||
'size',
|
'size',
|
||||||
|
'allowPlay',
|
||||||
'setMedia',
|
'setMedia',
|
||||||
'remove',
|
'naturalSizeLoad'
|
||||||
'shiftUp',
|
|
||||||
'shiftDn',
|
|
||||||
'edit'
|
|
||||||
],
|
],
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
localDescription: this.description || this.attachment.description,
|
|
||||||
nsfwImage: this.$store.state.instance.nsfwCensorImage || nsfwImage,
|
nsfwImage: this.$store.state.instance.nsfwCensorImage || nsfwImage,
|
||||||
hideNsfwLocal: this.$store.getters.mergedConfig.hideNsfw,
|
hideNsfwLocal: this.$store.getters.mergedConfig.hideNsfw,
|
||||||
preloadImage: this.$store.getters.mergedConfig.preloadImage,
|
preloadImage: this.$store.getters.mergedConfig.preloadImage,
|
||||||
loading: false,
|
loading: false,
|
||||||
img: fileTypeService.fileType(this.attachment.mimetype) === 'image' && document.createElement('img'),
|
img: fileTypeService.fileType(this.attachment.mimetype) === 'image' && document.createElement('img'),
|
||||||
modalOpen: false,
|
modalOpen: false,
|
||||||
showHidden: false,
|
showHidden: false
|
||||||
flashLoaded: false,
|
|
||||||
showDescription: false
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
@@ -66,23 +49,8 @@ const Attachment = {
|
|||||||
VideoAttachment
|
VideoAttachment
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
classNames () {
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
'-loading': this.loading,
|
|
||||||
'-nsfw-placeholder': this.hidden,
|
|
||||||
'-editable': this.edit !== undefined
|
|
||||||
},
|
|
||||||
'-type-' + this.type,
|
|
||||||
this.size && '-size-' + this.size,
|
|
||||||
`-${this.useContainFit ? 'contain' : 'cover'}-fit`
|
|
||||||
]
|
|
||||||
},
|
|
||||||
usePlaceholder () {
|
usePlaceholder () {
|
||||||
return this.size === 'hide'
|
return this.size === 'hide' || this.type === 'unknown'
|
||||||
},
|
|
||||||
useContainFit () {
|
|
||||||
return this.$store.getters.mergedConfig.useContainFit
|
|
||||||
},
|
},
|
||||||
placeholderName () {
|
placeholderName () {
|
||||||
if (this.attachment.description === '' || !this.attachment.description) {
|
if (this.attachment.description === '' || !this.attachment.description) {
|
||||||
@@ -106,33 +74,24 @@ const Attachment = {
|
|||||||
return this.nsfw && this.hideNsfwLocal && !this.showHidden
|
return this.nsfw && this.hideNsfwLocal && !this.showHidden
|
||||||
},
|
},
|
||||||
isEmpty () {
|
isEmpty () {
|
||||||
return (this.type === 'html' && !this.attachment.oembed)
|
return (this.type === 'html' && !this.attachment.oembed) || this.type === 'unknown'
|
||||||
|
},
|
||||||
|
isSmall () {
|
||||||
|
return this.size === 'small'
|
||||||
|
},
|
||||||
|
fullwidth () {
|
||||||
|
if (this.size === 'hide') return false
|
||||||
|
return this.type === 'html' || this.type === 'audio' || this.type === 'unknown'
|
||||||
},
|
},
|
||||||
useModal () {
|
useModal () {
|
||||||
let modalTypes = []
|
const modalTypes = this.size === 'hide' ? ['image', 'video', 'audio']
|
||||||
switch (this.size) {
|
: this.mergedConfig.playVideosInModal
|
||||||
case 'hide':
|
? ['image', 'video']
|
||||||
case 'small':
|
: ['image']
|
||||||
modalTypes = ['image', 'video', 'audio', 'flash']
|
|
||||||
break
|
|
||||||
default:
|
|
||||||
modalTypes = this.mergedConfig.playVideosInModal
|
|
||||||
? ['image', 'video', 'flash']
|
|
||||||
: ['image']
|
|
||||||
break
|
|
||||||
}
|
|
||||||
return modalTypes.includes(this.type)
|
return modalTypes.includes(this.type)
|
||||||
},
|
},
|
||||||
videoTag () {
|
|
||||||
return this.useModal ? 'button' : 'span'
|
|
||||||
},
|
|
||||||
...mapGetters(['mergedConfig'])
|
...mapGetters(['mergedConfig'])
|
||||||
},
|
},
|
||||||
watch: {
|
|
||||||
localDescription (newVal) {
|
|
||||||
this.onEdit(newVal)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
linkClicked ({ target }) {
|
linkClicked ({ target }) {
|
||||||
if (target.tagName === 'A') {
|
if (target.tagName === 'A') {
|
||||||
@@ -141,37 +100,12 @@ const Attachment = {
|
|||||||
},
|
},
|
||||||
openModal (event) {
|
openModal (event) {
|
||||||
if (this.useModal) {
|
if (this.useModal) {
|
||||||
this.$emit('setMedia')
|
event.stopPropagation()
|
||||||
this.$store.dispatch('setCurrentMedia', this.attachment)
|
event.preventDefault()
|
||||||
} else if (this.type === 'unknown') {
|
this.setMedia()
|
||||||
window.open(this.attachment.url)
|
this.$store.dispatch('setCurrent', this.attachment)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
openModalForce (event) {
|
|
||||||
this.$emit('setMedia')
|
|
||||||
this.$store.dispatch('setCurrentMedia', this.attachment)
|
|
||||||
},
|
|
||||||
onEdit (event) {
|
|
||||||
this.edit && this.edit(this.attachment, event)
|
|
||||||
},
|
|
||||||
onRemove () {
|
|
||||||
this.remove && this.remove(this.attachment)
|
|
||||||
},
|
|
||||||
onShiftUp () {
|
|
||||||
this.shiftUp && this.shiftUp(this.attachment)
|
|
||||||
},
|
|
||||||
onShiftDn () {
|
|
||||||
this.shiftDn && this.shiftDn(this.attachment)
|
|
||||||
},
|
|
||||||
stopFlash () {
|
|
||||||
this.$refs.flash.closePlayer()
|
|
||||||
},
|
|
||||||
setFlashLoaded (event) {
|
|
||||||
this.flashLoaded = event
|
|
||||||
},
|
|
||||||
toggleDescription () {
|
|
||||||
this.showDescription = !this.showDescription
|
|
||||||
},
|
|
||||||
toggleHidden (event) {
|
toggleHidden (event) {
|
||||||
if (
|
if (
|
||||||
(this.mergedConfig.useOneClickNsfw && !this.showHidden) &&
|
(this.mergedConfig.useOneClickNsfw && !this.showHidden) &&
|
||||||
@@ -198,7 +132,7 @@ const Attachment = {
|
|||||||
onImageLoad (image) {
|
onImageLoad (image) {
|
||||||
const width = image.naturalWidth
|
const width = image.naturalWidth
|
||||||
const height = image.naturalHeight
|
const height = image.naturalHeight
|
||||||
this.$emit('naturalSizeLoad', { id: this.attachment.id, width, height })
|
this.naturalSizeLoad && this.naturalSizeLoad({ width, height })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,268 +0,0 @@
|
|||||||
@import '../../_variables.scss';
|
|
||||||
|
|
||||||
.Attachment {
|
|
||||||
display: inline-flex;
|
|
||||||
flex-direction: column;
|
|
||||||
position: relative;
|
|
||||||
align-self: flex-start;
|
|
||||||
line-height: 0;
|
|
||||||
height: 100%;
|
|
||||||
border-style: solid;
|
|
||||||
border-width: 1px;
|
|
||||||
border-radius: $fallback--attachmentRadius;
|
|
||||||
border-radius: var(--attachmentRadius, $fallback--attachmentRadius);
|
|
||||||
border-color: $fallback--border;
|
|
||||||
border-color: var(--border, $fallback--border);
|
|
||||||
|
|
||||||
.attachment-wrapper {
|
|
||||||
flex: 1 1 auto;
|
|
||||||
height: 100%;
|
|
||||||
position: relative;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.description-container {
|
|
||||||
flex: 0 1 0;
|
|
||||||
display: flex;
|
|
||||||
padding-top: 0.5em;
|
|
||||||
z-index: 1;
|
|
||||||
|
|
||||||
p {
|
|
||||||
flex: 1;
|
|
||||||
text-align: center;
|
|
||||||
line-height: 1.5;
|
|
||||||
padding: 0.5em;
|
|
||||||
margin: 0;
|
|
||||||
white-space: nowrap;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.-static {
|
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
padding-top: 0;
|
|
||||||
background: var(--popover);
|
|
||||||
box-shadow: var(--popupShadow);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.description-field {
|
|
||||||
flex: 1;
|
|
||||||
min-width: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
& .placeholder-container,
|
|
||||||
& .image-container,
|
|
||||||
& .audio-container,
|
|
||||||
& .video-container,
|
|
||||||
& .flash-container,
|
|
||||||
& .oembed-container {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.image-container {
|
|
||||||
.image {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
& .flash-container,
|
|
||||||
& .video-container {
|
|
||||||
& .flash,
|
|
||||||
& video {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
object-fit: contain;
|
|
||||||
align-self: center;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.audio-container {
|
|
||||||
display: flex;
|
|
||||||
align-items: flex-end;
|
|
||||||
|
|
||||||
audio {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.placeholder-container {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
padding-top: 0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.play-icon {
|
|
||||||
position: absolute;
|
|
||||||
font-size: 64px;
|
|
||||||
top: calc(50% - 32px);
|
|
||||||
left: calc(50% - 32px);
|
|
||||||
color: rgba(255, 255, 255, 0.75);
|
|
||||||
text-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
|
|
||||||
|
|
||||||
&::before {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.attachment-buttons {
|
|
||||||
display: flex;
|
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
|
||||||
top: 0;
|
|
||||||
margin-top: 0.5em;
|
|
||||||
margin-right: 0.5em;
|
|
||||||
z-index: 1;
|
|
||||||
|
|
||||||
.attachment-button {
|
|
||||||
padding: 0;
|
|
||||||
border-radius: $fallback--tooltipRadius;
|
|
||||||
border-radius: var(--tooltipRadius, $fallback--tooltipRadius);
|
|
||||||
text-align: center;
|
|
||||||
width: 2em;
|
|
||||||
height: 2em;
|
|
||||||
margin-left: 0.5em;
|
|
||||||
font-size: 1.25em;
|
|
||||||
// TODO: theming? hard to theme with unknown background image color
|
|
||||||
background: rgba(230, 230, 230, 0.7);
|
|
||||||
|
|
||||||
.svg-inline--fa {
|
|
||||||
color: rgba(0, 0, 0, 0.6);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover .svg-inline--fa {
|
|
||||||
color: rgba(0, 0, 0, 0.9);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.oembed-container {
|
|
||||||
line-height: 1.2em;
|
|
||||||
flex: 1 0 100%;
|
|
||||||
width: 100%;
|
|
||||||
margin-right: 15px;
|
|
||||||
display: flex;
|
|
||||||
|
|
||||||
img {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.image {
|
|
||||||
flex: 1;
|
|
||||||
img {
|
|
||||||
border: 0px;
|
|
||||||
border-radius: 5px;
|
|
||||||
height: 100%;
|
|
||||||
object-fit: cover;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.text {
|
|
||||||
flex: 2;
|
|
||||||
margin: 8px;
|
|
||||||
word-break: break-all;
|
|
||||||
h1 {
|
|
||||||
font-size: 1rem;
|
|
||||||
margin: 0px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&.-size-small {
|
|
||||||
.play-icon {
|
|
||||||
zoom: 0.5;
|
|
||||||
opacity: 0.7;
|
|
||||||
}
|
|
||||||
|
|
||||||
.attachment-buttons {
|
|
||||||
zoom: 0.7;
|
|
||||||
opacity: 0.5;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&.-editable {
|
|
||||||
padding: 0.5em;
|
|
||||||
|
|
||||||
& .description-container,
|
|
||||||
& .attachment-buttons {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&.-placeholder {
|
|
||||||
display: inline-block;
|
|
||||||
color: $fallback--link;
|
|
||||||
color: var(--postLink, $fallback--link);
|
|
||||||
overflow: hidden;
|
|
||||||
white-space: nowrap;
|
|
||||||
height: auto;
|
|
||||||
line-height: 1.5;
|
|
||||||
|
|
||||||
&:not(.-editable) {
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.-editable {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
align-items: baseline;
|
|
||||||
|
|
||||||
& .description-container,
|
|
||||||
& .attachment-buttons {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.description-container {
|
|
||||||
flex: 1;
|
|
||||||
padding-left: 0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.attachment-buttons {
|
|
||||||
order: 99;
|
|
||||||
align-self: center;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
display: inline-block;
|
|
||||||
max-width: 100%;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
}
|
|
||||||
|
|
||||||
svg {
|
|
||||||
color: inherit;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&.-loading {
|
|
||||||
cursor: progress;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.-contain-fit {
|
|
||||||
img,
|
|
||||||
canvas {
|
|
||||||
object-fit: contain;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&.-cover-fit {
|
|
||||||
img,
|
|
||||||
canvas {
|
|
||||||
object-fit: cover;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,8 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<button
|
<div
|
||||||
v-if="usePlaceholder"
|
v-if="usePlaceholder"
|
||||||
class="Attachment -placeholder button-unstyled"
|
:class="{ 'fullwidth': fullwidth }"
|
||||||
:class="classNames"
|
|
||||||
@click="openModal"
|
@click="openModal"
|
||||||
>
|
>
|
||||||
<a
|
<a
|
||||||
@@ -12,257 +11,318 @@
|
|||||||
:href="attachment.url"
|
:href="attachment.url"
|
||||||
:alt="attachment.description"
|
:alt="attachment.description"
|
||||||
:title="attachment.description"
|
:title="attachment.description"
|
||||||
@click.prevent
|
|
||||||
>
|
>
|
||||||
<FAIcon :icon="placeholderIconClass" />
|
<FAIcon :icon="placeholderIconClass" />
|
||||||
<b>{{ nsfw ? "NSFW / " : "" }}</b>{{ edit ? '' : placeholderName }}
|
<b>{{ nsfw ? "NSFW / " : "" }}</b>{{ placeholderName }}
|
||||||
</a>
|
</a>
|
||||||
<div
|
</div>
|
||||||
v-if="edit || remove"
|
|
||||||
class="attachment-buttons"
|
|
||||||
>
|
|
||||||
<button
|
|
||||||
v-if="remove"
|
|
||||||
class="button-unstyled attachment-button"
|
|
||||||
@click.prevent="onRemove"
|
|
||||||
>
|
|
||||||
<FAIcon icon="trash-alt" />
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<div
|
|
||||||
v-if="size !== 'hide' && !hideDescription && (edit || localDescription || showDescription)"
|
|
||||||
class="description-container"
|
|
||||||
:class="{ '-static': !edit }"
|
|
||||||
>
|
|
||||||
<input
|
|
||||||
v-if="edit"
|
|
||||||
v-model="localDescription"
|
|
||||||
type="text"
|
|
||||||
class="description-field"
|
|
||||||
:placeholder="$t('post_status.media_description')"
|
|
||||||
@keydown.enter.prevent=""
|
|
||||||
>
|
|
||||||
<p v-else>
|
|
||||||
{{ localDescription }}
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</button>
|
|
||||||
<div
|
<div
|
||||||
v-else
|
v-else
|
||||||
class="Attachment"
|
v-show="!isEmpty"
|
||||||
:class="classNames"
|
class="attachment"
|
||||||
|
:class="{[type]: true, loading, 'fullwidth': fullwidth, 'nsfw-placeholder': hidden}"
|
||||||
>
|
>
|
||||||
<div
|
<a
|
||||||
v-show="!isEmpty"
|
v-if="hidden"
|
||||||
class="attachment-wrapper"
|
class="image-attachment"
|
||||||
|
:href="attachment.url"
|
||||||
|
:alt="attachment.description"
|
||||||
|
:title="attachment.description"
|
||||||
|
@click.prevent.stop="toggleHidden"
|
||||||
>
|
>
|
||||||
<a
|
<img
|
||||||
v-if="hidden"
|
:key="nsfwImage"
|
||||||
class="image-container"
|
class="nsfw"
|
||||||
:href="attachment.url"
|
:src="nsfwImage"
|
||||||
|
:class="{'small': isSmall}"
|
||||||
|
>
|
||||||
|
<FAIcon
|
||||||
|
v-if="type === 'video'"
|
||||||
|
class="play-icon"
|
||||||
|
icon="play-circle"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
<button
|
||||||
|
v-if="nsfw && hideNsfwLocal && !hidden"
|
||||||
|
class="button-unstyled hider"
|
||||||
|
@click.prevent="toggleHidden"
|
||||||
|
>
|
||||||
|
<FAIcon icon="times" />
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<a
|
||||||
|
v-if="type === 'image' && (!hidden || preloadImage)"
|
||||||
|
class="image-attachment"
|
||||||
|
:class="{'hidden': hidden && preloadImage }"
|
||||||
|
:href="attachment.url"
|
||||||
|
target="_blank"
|
||||||
|
@click="openModal"
|
||||||
|
>
|
||||||
|
<StillImage
|
||||||
|
class="image"
|
||||||
|
:referrerpolicy="referrerpolicy"
|
||||||
|
:mimetype="attachment.mimetype"
|
||||||
|
:src="attachment.large_thumb_url || attachment.url"
|
||||||
|
:image-load-handler="onImageLoad"
|
||||||
:alt="attachment.description"
|
:alt="attachment.description"
|
||||||
:title="attachment.description"
|
/>
|
||||||
@click.prevent.stop="toggleHidden"
|
</a>
|
||||||
>
|
|
||||||
<img
|
|
||||||
:key="nsfwImage"
|
|
||||||
class="nsfw"
|
|
||||||
:src="nsfwImage"
|
|
||||||
>
|
|
||||||
<FAIcon
|
|
||||||
v-if="type === 'video'"
|
|
||||||
class="play-icon"
|
|
||||||
icon="play-circle"
|
|
||||||
/>
|
|
||||||
</a>
|
|
||||||
<div
|
|
||||||
v-if="!hidden"
|
|
||||||
class="attachment-buttons"
|
|
||||||
>
|
|
||||||
<button
|
|
||||||
v-if="type === 'flash' && flashLoaded"
|
|
||||||
class="button-unstyled attachment-button"
|
|
||||||
:title="$t('status.attachment_stop_flash')"
|
|
||||||
@click.prevent="stopFlash"
|
|
||||||
>
|
|
||||||
<FAIcon icon="stop" />
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
v-if="attachment.description && size !== 'small' && !edit && type !== 'unknown'"
|
|
||||||
class="button-unstyled attachment-button"
|
|
||||||
:title="$t('status.show_attachment_description')"
|
|
||||||
@click.prevent="toggleDescription"
|
|
||||||
>
|
|
||||||
<FAIcon icon="align-right" />
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
v-if="!useModal && type !== 'unknown'"
|
|
||||||
class="button-unstyled attachment-button"
|
|
||||||
:title="$t('status.show_attachment_in_modal')"
|
|
||||||
@click.prevent="openModalForce"
|
|
||||||
>
|
|
||||||
<FAIcon icon="search-plus" />
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
v-if="nsfw && hideNsfwLocal"
|
|
||||||
class="button-unstyled attachment-button"
|
|
||||||
:title="$t('status.hide_attachment')"
|
|
||||||
@click.prevent="toggleHidden"
|
|
||||||
>
|
|
||||||
<FAIcon icon="times" />
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
v-if="shiftUp"
|
|
||||||
class="button-unstyled attachment-button"
|
|
||||||
:title="$t('status.move_up')"
|
|
||||||
@click.prevent="onShiftUp"
|
|
||||||
>
|
|
||||||
<FAIcon icon="chevron-left" />
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
v-if="shiftDn"
|
|
||||||
class="button-unstyled attachment-button"
|
|
||||||
:title="$t('status.move_down')"
|
|
||||||
@click.prevent="onShiftDn"
|
|
||||||
>
|
|
||||||
<FAIcon icon="chevron-right" />
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
v-if="remove"
|
|
||||||
class="button-unstyled attachment-button"
|
|
||||||
:title="$t('status.remove_attachment')"
|
|
||||||
@click.prevent="onRemove"
|
|
||||||
>
|
|
||||||
<FAIcon icon="trash-alt" />
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<a
|
<a
|
||||||
v-if="type === 'image' && (!hidden || preloadImage)"
|
v-if="type === 'video' && !hidden"
|
||||||
class="image-container"
|
class="video-container"
|
||||||
:class="{'-hidden': hidden && preloadImage }"
|
:class="{'small': isSmall}"
|
||||||
:href="attachment.url"
|
:href="allowPlay ? undefined : attachment.url"
|
||||||
target="_blank"
|
@click="openModal"
|
||||||
@click.stop.prevent="openModal"
|
|
||||||
>
|
|
||||||
<StillImage
|
|
||||||
class="image"
|
|
||||||
:referrerpolicy="referrerpolicy"
|
|
||||||
:mimetype="attachment.mimetype"
|
|
||||||
:src="attachment.large_thumb_url || attachment.url"
|
|
||||||
:image-load-handler="onImageLoad"
|
|
||||||
:alt="attachment.description"
|
|
||||||
/>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<a
|
|
||||||
v-if="type === 'unknown' && !hidden"
|
|
||||||
class="placeholder-container"
|
|
||||||
:href="attachment.url"
|
|
||||||
target="_blank"
|
|
||||||
>
|
|
||||||
<FAIcon
|
|
||||||
size="5x"
|
|
||||||
:icon="placeholderIconClass"
|
|
||||||
/>
|
|
||||||
<p>
|
|
||||||
{{ localDescription }}
|
|
||||||
</p>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<component
|
|
||||||
:is="videoTag"
|
|
||||||
v-if="type === 'video' && !hidden"
|
|
||||||
class="video-container"
|
|
||||||
:class="{ 'button-unstyled': 'isModal' }"
|
|
||||||
:href="attachment.url"
|
|
||||||
@click.stop.prevent="openModal"
|
|
||||||
>
|
|
||||||
<VideoAttachment
|
|
||||||
class="video"
|
|
||||||
:attachment="attachment"
|
|
||||||
:controls="!useModal"
|
|
||||||
@play="$emit('play')"
|
|
||||||
@pause="$emit('pause')"
|
|
||||||
/>
|
|
||||||
<FAIcon
|
|
||||||
v-if="useModal"
|
|
||||||
class="play-icon"
|
|
||||||
icon="play-circle"
|
|
||||||
/>
|
|
||||||
</component>
|
|
||||||
|
|
||||||
<span
|
|
||||||
v-if="type === 'audio' && !hidden"
|
|
||||||
class="audio-container"
|
|
||||||
:href="attachment.url"
|
|
||||||
@click.stop.prevent="openModal"
|
|
||||||
>
|
|
||||||
<audio
|
|
||||||
v-if="type === 'audio'"
|
|
||||||
:src="attachment.url"
|
|
||||||
:alt="attachment.description"
|
|
||||||
:title="attachment.description"
|
|
||||||
controls
|
|
||||||
@play="$emit('play')"
|
|
||||||
@pause="$emit('pause')"
|
|
||||||
/>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<div
|
|
||||||
v-if="type === 'html' && attachment.oembed"
|
|
||||||
class="oembed-container"
|
|
||||||
@click.prevent="linkClicked"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
v-if="attachment.thumb_url"
|
|
||||||
class="image"
|
|
||||||
>
|
|
||||||
<img :src="attachment.thumb_url">
|
|
||||||
</div>
|
|
||||||
<div class="text">
|
|
||||||
<!-- eslint-disable vue/no-v-html -->
|
|
||||||
<h1><a :href="attachment.url">{{ attachment.oembed.title }}</a></h1>
|
|
||||||
<div v-html="attachment.oembed.oembedHTML" />
|
|
||||||
<!-- eslint-enable vue/no-v-html -->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<span
|
|
||||||
v-if="type === 'flash' && !hidden"
|
|
||||||
class="flash-container"
|
|
||||||
:href="attachment.url"
|
|
||||||
@click.stop.prevent="openModal"
|
|
||||||
>
|
|
||||||
<Flash
|
|
||||||
ref="flash"
|
|
||||||
class="flash"
|
|
||||||
:src="attachment.large_thumb_url || attachment.url"
|
|
||||||
@playerOpened="setFlashLoaded(true)"
|
|
||||||
@playerClosed="setFlashLoaded(false)"
|
|
||||||
/>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div
|
|
||||||
v-if="size !== 'hide' && !hideDescription && (edit || (localDescription && showDescription))"
|
|
||||||
class="description-container"
|
|
||||||
:class="{ '-static': !edit }"
|
|
||||||
>
|
>
|
||||||
<input
|
<VideoAttachment
|
||||||
v-if="edit"
|
class="video"
|
||||||
v-model="localDescription"
|
:attachment="attachment"
|
||||||
type="text"
|
:controls="allowPlay"
|
||||||
class="description-field"
|
@play="$emit('play')"
|
||||||
:placeholder="$t('post_status.media_description')"
|
@pause="$emit('pause')"
|
||||||
@keydown.enter.prevent=""
|
/>
|
||||||
|
<FAIcon
|
||||||
|
v-if="!allowPlay"
|
||||||
|
class="play-icon"
|
||||||
|
icon="play-circle"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<audio
|
||||||
|
v-if="type === 'audio'"
|
||||||
|
:src="attachment.url"
|
||||||
|
:alt="attachment.description"
|
||||||
|
:title="attachment.description"
|
||||||
|
controls
|
||||||
|
@play="$emit('play')"
|
||||||
|
@pause="$emit('pause')"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div
|
||||||
|
v-if="type === 'html' && attachment.oembed"
|
||||||
|
class="oembed"
|
||||||
|
@click.prevent="linkClicked"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
v-if="attachment.thumb_url"
|
||||||
|
class="image"
|
||||||
>
|
>
|
||||||
<p v-else>
|
<img :src="attachment.thumb_url">
|
||||||
{{ localDescription }}
|
</div>
|
||||||
</p>
|
<div class="text">
|
||||||
|
<!-- eslint-disable vue/no-v-html -->
|
||||||
|
<h1><a :href="attachment.url">{{ attachment.oembed.title }}</a></h1>
|
||||||
|
<div v-html="attachment.oembed.oembedHTML" />
|
||||||
|
<!-- eslint-enable vue/no-v-html -->
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<Flash
|
||||||
|
v-if="type === 'flash'"
|
||||||
|
:src="attachment.large_thumb_url || attachment.url"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script src="./attachment.js"></script>
|
<script src="./attachment.js"></script>
|
||||||
|
|
||||||
<style src="./attachment.scss" lang="scss"></style>
|
<style lang="scss">
|
||||||
|
@import '../../_variables.scss';
|
||||||
|
|
||||||
|
.attachments {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
|
||||||
|
.non-gallery {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.placeholder {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 0.3em 1em 0.3em 0;
|
||||||
|
color: $fallback--link;
|
||||||
|
color: var(--postLink, $fallback--link);
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
max-width: 100%;
|
||||||
|
|
||||||
|
svg {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.nsfw-placeholder {
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
&.loading {
|
||||||
|
cursor: progress;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.attachment {
|
||||||
|
position: relative;
|
||||||
|
margin-top: 0.5em;
|
||||||
|
align-self: flex-start;
|
||||||
|
line-height: 0;
|
||||||
|
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 1px;
|
||||||
|
border-radius: $fallback--attachmentRadius;
|
||||||
|
border-radius: var(--attachmentRadius, $fallback--attachmentRadius);
|
||||||
|
border-color: $fallback--border;
|
||||||
|
border-color: var(--border, $fallback--border);
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.non-gallery.attachment {
|
||||||
|
&.flash,
|
||||||
|
&.video {
|
||||||
|
flex: 1 0 40%;
|
||||||
|
}
|
||||||
|
.nsfw {
|
||||||
|
height: 260px;
|
||||||
|
}
|
||||||
|
.small {
|
||||||
|
height: 120px;
|
||||||
|
flex-grow: 0;
|
||||||
|
}
|
||||||
|
.video {
|
||||||
|
height: 260px;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
video {
|
||||||
|
max-height: 100%;
|
||||||
|
object-fit: contain;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.fullwidth {
|
||||||
|
flex-basis: 100%;
|
||||||
|
}
|
||||||
|
// fixes small gap below video
|
||||||
|
&.video {
|
||||||
|
line-height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-container {
|
||||||
|
display: flex;
|
||||||
|
max-height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.play-icon {
|
||||||
|
position: absolute;
|
||||||
|
font-size: 64px;
|
||||||
|
top: calc(50% - 32px);
|
||||||
|
left: calc(50% - 32px);
|
||||||
|
color: rgba(255, 255, 255, 0.75);
|
||||||
|
text-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.play-icon::before {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.html {
|
||||||
|
flex-basis: 90%;
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hider {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
margin: 10px;
|
||||||
|
padding: 0;
|
||||||
|
z-index: 4;
|
||||||
|
border-radius: $fallback--tooltipRadius;
|
||||||
|
border-radius: var(--tooltipRadius, $fallback--tooltipRadius);
|
||||||
|
text-align: center;
|
||||||
|
width: 2em;
|
||||||
|
height: 2em;
|
||||||
|
font-size: 1.25em;
|
||||||
|
// TODO: theming? hard to theme with unknown background image color
|
||||||
|
background: rgba(230, 230, 230, 0.7);
|
||||||
|
.svg-inline--fa {
|
||||||
|
color: rgba(0, 0, 0, 0.6);
|
||||||
|
}
|
||||||
|
&:hover .svg-inline--fa {
|
||||||
|
color: rgba(0, 0, 0, 0.9);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
video {
|
||||||
|
z-index: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
audio {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
img.media-upload {
|
||||||
|
line-height: 0;
|
||||||
|
max-height: 200px;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.oembed {
|
||||||
|
line-height: 1.2em;
|
||||||
|
flex: 1 0 100%;
|
||||||
|
width: 100%;
|
||||||
|
margin-right: 15px;
|
||||||
|
display: flex;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.image {
|
||||||
|
flex: 1;
|
||||||
|
img {
|
||||||
|
border: 0px;
|
||||||
|
border-radius: 5px;
|
||||||
|
height: 100%;
|
||||||
|
object-fit: cover;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.text {
|
||||||
|
flex: 2;
|
||||||
|
margin: 8px;
|
||||||
|
word-break: break-all;
|
||||||
|
h1 {
|
||||||
|
font-size: 14px;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.image-attachment {
|
||||||
|
&,
|
||||||
|
& .image {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nsfw {
|
||||||
|
object-fit: cover;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
image-orientation: from-image; // NOTE: only FF supports this
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
import { h, resolveComponent } from 'vue'
|
|
||||||
import LoginForm from '../login_form/login_form.vue'
|
import LoginForm from '../login_form/login_form.vue'
|
||||||
import MFARecoveryForm from '../mfa_form/recovery_form.vue'
|
import MFARecoveryForm from '../mfa_form/recovery_form.vue'
|
||||||
import MFATOTPForm from '../mfa_form/totp_form.vue'
|
import MFATOTPForm from '../mfa_form/totp_form.vue'
|
||||||
@@ -6,8 +5,8 @@ import { mapGetters } from 'vuex'
|
|||||||
|
|
||||||
const AuthForm = {
|
const AuthForm = {
|
||||||
name: 'AuthForm',
|
name: 'AuthForm',
|
||||||
render () {
|
render (createElement) {
|
||||||
return h(resolveComponent(this.authForm))
|
return createElement('component', { is: this.authForm })
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
authForm () {
|
authForm () {
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<UserAvatar
|
<UserAvatar
|
||||||
class="avatar"
|
class="avatar"
|
||||||
:user="user"
|
:user="user"
|
||||||
@click.prevent="toggleUserExpanded"
|
@click.prevent.native="toggleUserExpanded"
|
||||||
/>
|
/>
|
||||||
</router-link>
|
</router-link>
|
||||||
<div
|
<div
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ const Bookmarks = {
|
|||||||
components: {
|
components: {
|
||||||
Timeline
|
Timeline
|
||||||
},
|
},
|
||||||
unmounted () {
|
destroyed () {
|
||||||
this.$store.commit('clearTimeline', { timeline: 'bookmarks' })
|
this.$store.commit('clearTimeline', { timeline: 'bookmarks' })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+81
-18
@@ -6,7 +6,7 @@ import PostStatusForm from '../post_status_form/post_status_form.vue'
|
|||||||
import ChatTitle from '../chat_title/chat_title.vue'
|
import ChatTitle from '../chat_title/chat_title.vue'
|
||||||
import chatService from '../../services/chat_service/chat_service.js'
|
import chatService from '../../services/chat_service/chat_service.js'
|
||||||
import { promiseInterval } from '../../services/promise_interval/promise_interval.js'
|
import { promiseInterval } from '../../services/promise_interval/promise_interval.js'
|
||||||
import { getScrollPosition, getNewTopPosition, isBottomedOut, isScrollable } from './chat_layout_utils.js'
|
import { getScrollPosition, getNewTopPosition, isBottomedOut, scrollableContainerHeight, isScrollable } from './chat_layout_utils.js'
|
||||||
import { library } from '@fortawesome/fontawesome-svg-core'
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
||||||
import {
|
import {
|
||||||
faChevronDown,
|
faChevronDown,
|
||||||
@@ -20,7 +20,7 @@ library.add(
|
|||||||
)
|
)
|
||||||
|
|
||||||
const BOTTOMED_OUT_OFFSET = 10
|
const BOTTOMED_OUT_OFFSET = 10
|
||||||
const JUMP_TO_BOTTOM_BUTTON_VISIBILITY_OFFSET = 10
|
const JUMP_TO_BOTTOM_BUTTON_VISIBILITY_OFFSET = 150
|
||||||
const SAFE_RESIZE_TIME_OFFSET = 100
|
const SAFE_RESIZE_TIME_OFFSET = 100
|
||||||
const MARK_AS_READ_DELAY = 1500
|
const MARK_AS_READ_DELAY = 1500
|
||||||
const MAX_RETRIES = 10
|
const MAX_RETRIES = 10
|
||||||
@@ -43,7 +43,7 @@ const Chat = {
|
|||||||
},
|
},
|
||||||
created () {
|
created () {
|
||||||
this.startFetching()
|
this.startFetching()
|
||||||
window.addEventListener('resize', this.handleResize)
|
window.addEventListener('resize', this.handleLayoutChange)
|
||||||
},
|
},
|
||||||
mounted () {
|
mounted () {
|
||||||
window.addEventListener('scroll', this.handleScroll)
|
window.addEventListener('scroll', this.handleScroll)
|
||||||
@@ -52,11 +52,15 @@ const Chat = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
|
this.updateScrollableContainerHeight()
|
||||||
this.handleResize()
|
this.handleResize()
|
||||||
})
|
})
|
||||||
|
this.setChatLayout()
|
||||||
},
|
},
|
||||||
unmounted () {
|
destroyed () {
|
||||||
window.removeEventListener('scroll', this.handleScroll)
|
window.removeEventListener('scroll', this.handleScroll)
|
||||||
|
window.removeEventListener('resize', this.handleLayoutChange)
|
||||||
|
this.unsetChatLayout()
|
||||||
if (typeof document.hidden !== 'undefined') document.removeEventListener('visibilitychange', this.handleVisibilityChange, false)
|
if (typeof document.hidden !== 'undefined') document.removeEventListener('visibilitychange', this.handleVisibilityChange, false)
|
||||||
this.$store.dispatch('clearCurrentChat')
|
this.$store.dispatch('clearCurrentChat')
|
||||||
},
|
},
|
||||||
@@ -92,7 +96,8 @@ const Chat = {
|
|||||||
...mapState({
|
...mapState({
|
||||||
backendInteractor: state => state.api.backendInteractor,
|
backendInteractor: state => state.api.backendInteractor,
|
||||||
mastoUserSocketStatus: state => state.api.mastoUserSocketStatus,
|
mastoUserSocketStatus: state => state.api.mastoUserSocketStatus,
|
||||||
mobileLayout: state => state.interface.layoutType === 'mobile',
|
mobileLayout: state => state.interface.mobileLayout,
|
||||||
|
layoutHeight: state => state.interface.layoutHeight,
|
||||||
currentUser: state => state.users.currentUser
|
currentUser: state => state.users.currentUser
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
@@ -110,6 +115,9 @@ const Chat = {
|
|||||||
'$route': function () {
|
'$route': function () {
|
||||||
this.startFetching()
|
this.startFetching()
|
||||||
},
|
},
|
||||||
|
layoutHeight () {
|
||||||
|
this.handleResize({ expand: true })
|
||||||
|
},
|
||||||
mastoUserSocketStatus (newValue) {
|
mastoUserSocketStatus (newValue) {
|
||||||
if (newValue === WSConnectionStatus.JOINED) {
|
if (newValue === WSConnectionStatus.JOINED) {
|
||||||
this.fetchChat({ isFirstFetch: true })
|
this.fetchChat({ isFirstFetch: true })
|
||||||
@@ -124,6 +132,7 @@ const Chat = {
|
|||||||
onFilesDropped () {
|
onFilesDropped () {
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.handleResize()
|
this.handleResize()
|
||||||
|
this.updateScrollableContainerHeight()
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
handleVisibilityChange () {
|
handleVisibilityChange () {
|
||||||
@@ -133,7 +142,43 @@ const Chat = {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
// "Sticks" scroll to bottom instead of top, helps with OSK resizing the viewport
|
setChatLayout () {
|
||||||
|
// This is a hacky way to adjust the global layout to the mobile chat (without modifying the rest of the app).
|
||||||
|
// This layout prevents empty spaces from being visible at the bottom
|
||||||
|
// of the chat on iOS Safari (`safe-area-inset`) when
|
||||||
|
// - the on-screen keyboard appears and the user starts typing
|
||||||
|
// - the user selects the text inside the input area
|
||||||
|
// - the user selects and deletes the text that is multiple lines long
|
||||||
|
// TODO: unify the chat layout with the global layout.
|
||||||
|
let html = document.querySelector('html')
|
||||||
|
if (html) {
|
||||||
|
html.classList.add('chat-layout')
|
||||||
|
}
|
||||||
|
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.updateScrollableContainerHeight()
|
||||||
|
})
|
||||||
|
},
|
||||||
|
unsetChatLayout () {
|
||||||
|
let html = document.querySelector('html')
|
||||||
|
if (html) {
|
||||||
|
html.classList.remove('chat-layout')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleLayoutChange () {
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.updateScrollableContainerHeight()
|
||||||
|
this.scrollDown()
|
||||||
|
})
|
||||||
|
},
|
||||||
|
// Ensures the proper position of the posting form in the mobile layout (the mobile browser panel does not overlap or hide it)
|
||||||
|
updateScrollableContainerHeight () {
|
||||||
|
const header = this.$refs.header
|
||||||
|
const footer = this.$refs.footer
|
||||||
|
const inner = this.mobileLayout ? window.document.body : this.$refs.inner
|
||||||
|
this.scrollableContainerHeight = scrollableContainerHeight(inner, header, footer) + 'px'
|
||||||
|
},
|
||||||
|
// Preserves the scroll position when OSK appears or the posting form changes its height.
|
||||||
handleResize (opts = {}) {
|
handleResize (opts = {}) {
|
||||||
const { expand = false, delayed = false } = opts
|
const { expand = false, delayed = false } = opts
|
||||||
|
|
||||||
@@ -145,20 +190,29 @@ const Chat = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
const { offsetHeight = undefined } = getScrollPosition()
|
this.updateScrollableContainerHeight()
|
||||||
|
|
||||||
|
const { offsetHeight = undefined } = this.lastScrollPosition
|
||||||
|
this.lastScrollPosition = getScrollPosition(this.$refs.scrollable)
|
||||||
|
|
||||||
const diff = this.lastScrollPosition.offsetHeight - offsetHeight
|
const diff = this.lastScrollPosition.offsetHeight - offsetHeight
|
||||||
if (diff !== 0 || (!this.bottomedOut() && expand)) {
|
if (diff < 0 || (!this.bottomedOut() && expand)) {
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
window.scrollTo({ top: window.scrollY + diff })
|
this.updateScrollableContainerHeight()
|
||||||
|
this.$refs.scrollable.scrollTo({
|
||||||
|
top: this.$refs.scrollable.scrollTop - diff,
|
||||||
|
left: 0
|
||||||
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
this.lastScrollPosition = getScrollPosition()
|
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
scrollDown (options = {}) {
|
scrollDown (options = {}) {
|
||||||
const { behavior = 'auto', forceRead = false } = options
|
const { behavior = 'auto', forceRead = false } = options
|
||||||
|
const scrollable = this.$refs.scrollable
|
||||||
|
if (!scrollable) { return }
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
window.scrollTo({ top: document.documentElement.scrollHeight, behavior })
|
scrollable.scrollTo({ top: scrollable.scrollHeight, left: 0, behavior })
|
||||||
})
|
})
|
||||||
if (forceRead) {
|
if (forceRead) {
|
||||||
this.readChat()
|
this.readChat()
|
||||||
@@ -174,10 +228,11 @@ const Chat = {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
bottomedOut (offset) {
|
bottomedOut (offset) {
|
||||||
return isBottomedOut(offset)
|
return isBottomedOut(this.$refs.scrollable, offset)
|
||||||
},
|
},
|
||||||
reachedTop () {
|
reachedTop () {
|
||||||
return window.scrollY <= 0
|
const scrollable = this.$refs.scrollable
|
||||||
|
return scrollable && scrollable.scrollTop <= 0
|
||||||
},
|
},
|
||||||
cullOlderCheck () {
|
cullOlderCheck () {
|
||||||
window.setTimeout(() => {
|
window.setTimeout(() => {
|
||||||
@@ -208,9 +263,10 @@ const Chat = {
|
|||||||
}
|
}
|
||||||
}, 200),
|
}, 200),
|
||||||
handleScrollUp (positionBeforeLoading) {
|
handleScrollUp (positionBeforeLoading) {
|
||||||
const positionAfterLoading = getScrollPosition()
|
const positionAfterLoading = getScrollPosition(this.$refs.scrollable)
|
||||||
window.scrollTo({
|
this.$refs.scrollable.scrollTo({
|
||||||
top: getNewTopPosition(positionBeforeLoading, positionAfterLoading)
|
top: getNewTopPosition(positionBeforeLoading, positionAfterLoading),
|
||||||
|
left: 0
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
fetchChat ({ isFirstFetch = false, fetchLatest = false, maxId }) {
|
fetchChat ({ isFirstFetch = false, fetchLatest = false, maxId }) {
|
||||||
@@ -229,18 +285,22 @@ const Chat = {
|
|||||||
chatService.clear(chatMessageService)
|
chatService.clear(chatMessageService)
|
||||||
}
|
}
|
||||||
|
|
||||||
const positionBeforeUpdate = getScrollPosition()
|
const positionBeforeUpdate = getScrollPosition(this.$refs.scrollable)
|
||||||
this.$store.dispatch('addChatMessages', { chatId, messages }).then(() => {
|
this.$store.dispatch('addChatMessages', { chatId, messages }).then(() => {
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
if (fetchOlderMessages) {
|
if (fetchOlderMessages) {
|
||||||
this.handleScrollUp(positionBeforeUpdate)
|
this.handleScrollUp(positionBeforeUpdate)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isFirstFetch) {
|
||||||
|
this.updateScrollableContainerHeight()
|
||||||
|
}
|
||||||
|
|
||||||
// In vertical screens, the first batch of fetched messages may not always take the
|
// In vertical screens, the first batch of fetched messages may not always take the
|
||||||
// full height of the scrollable container.
|
// full height of the scrollable container.
|
||||||
// If this is the case, we want to fetch the messages until the scrollable container
|
// If this is the case, we want to fetch the messages until the scrollable container
|
||||||
// is fully populated so that the user has the ability to scroll up and load the history.
|
// is fully populated so that the user has the ability to scroll up and load the history.
|
||||||
if (!isScrollable() && messages.length > 0) {
|
if (!isScrollable(this.$refs.scrollable) && messages.length > 0) {
|
||||||
this.fetchChat({ maxId: this.currentChatMessageService.minId })
|
this.fetchChat({ maxId: this.currentChatMessageService.minId })
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@@ -276,6 +336,9 @@ const Chat = {
|
|||||||
this.handleResize()
|
this.handleResize()
|
||||||
// When the posting form size changes because of a media attachment, we need an extra resize
|
// When the posting form size changes because of a media attachment, we need an extra resize
|
||||||
// to account for the potential delay in the DOM update.
|
// to account for the potential delay in the DOM update.
|
||||||
|
setTimeout(() => {
|
||||||
|
this.updateScrollableContainerHeight()
|
||||||
|
}, SAFE_RESIZE_TIME_OFFSET)
|
||||||
this.scrollDown({ forceRead: true })
|
this.scrollDown({ forceRead: true })
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,22 +1,28 @@
|
|||||||
.chat-view {
|
.chat-view {
|
||||||
display: flex;
|
display: flex;
|
||||||
height: 100%;
|
height: calc(100vh - 60px);
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
.chat-title {
|
||||||
|
// prevents chat header jumping on when the user avatar loads
|
||||||
|
height: 28px;
|
||||||
|
}
|
||||||
|
|
||||||
.chat-view-inner {
|
.chat-view-inner {
|
||||||
height: auto;
|
height: auto;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow: visible;
|
overflow: visible;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
margin: 0.5em 0.5em 0 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-view-body {
|
.chat-view-body {
|
||||||
box-sizing: border-box;
|
|
||||||
background-color: var(--chatBg, $fallback--bg);
|
background-color: var(--chatBg, $fallback--bg);
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow: visible;
|
overflow: visible;
|
||||||
min-height: calc(100vh - var(--navbar-height));
|
min-height: 100%;
|
||||||
margin: 0 0 0 0;
|
margin: 0 0 0 0;
|
||||||
border-radius: 10px 10px 0 0;
|
border-radius: 10px 10px 0 0;
|
||||||
border-radius: var(--panelRadius, 10px) var(--panelRadius, 10px) 0 0;
|
border-radius: var(--panelRadius, 10px) var(--panelRadius, 10px) 0 0;
|
||||||
@@ -26,32 +32,36 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.message-list {
|
.scrollable-message-list {
|
||||||
padding: 0 0.8em;
|
padding: 0 0.8em;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
overflow-y: scroll;
|
||||||
|
overflow-x: hidden;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: end;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer {
|
.footer {
|
||||||
position: sticky;
|
position: sticky;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
background-color: $fallback--bg;
|
|
||||||
background-color: var(--bg, $fallback--bg);
|
|
||||||
z-index: 1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-view-heading {
|
.chat-view-heading {
|
||||||
grid-template-columns: auto minmax(50%, 1fr);
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
top: 50px;
|
||||||
|
display: flex;
|
||||||
|
z-index: 2;
|
||||||
|
position: sticky;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.go-back-button {
|
.go-back-button {
|
||||||
|
cursor: pointer;
|
||||||
|
width: 28px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
line-height: 1;
|
padding: 0.6em;
|
||||||
height: 100%;
|
margin: -0.6em 0.6em -0.6em -0.6em;
|
||||||
align-self: start;
|
|
||||||
width: var(--__panel-heading-height-inner);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.jump-to-bottom-button {
|
.jump-to-bottom-button {
|
||||||
@@ -105,4 +115,56 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media all and (max-width: 800px) {
|
||||||
|
height: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
.chat-view-inner {
|
||||||
|
overflow: hidden;
|
||||||
|
height: 100%;
|
||||||
|
margin-top: 0;
|
||||||
|
margin-left: 0;
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chat-view-body {
|
||||||
|
display: flex;
|
||||||
|
min-height: auto;
|
||||||
|
overflow: hidden;
|
||||||
|
height: 100%;
|
||||||
|
margin: 0;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chat-view-heading {
|
||||||
|
box-sizing: border-box;
|
||||||
|
position: static;
|
||||||
|
z-index: 9999;
|
||||||
|
top: 0;
|
||||||
|
margin-top: 0;
|
||||||
|
border-radius: 0;
|
||||||
|
|
||||||
|
/* This practically overlays the panel heading color over panel background
|
||||||
|
* color. This is needed because we allow transparent panel background and
|
||||||
|
* it doesn't work well in this "disjointed panel header" case
|
||||||
|
*/
|
||||||
|
background:
|
||||||
|
linear-gradient(to top, var(--panel), var(--panel)),
|
||||||
|
linear-gradient(to top, var(--bg), var(--bg));
|
||||||
|
height: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.scrollable-message-list {
|
||||||
|
display: unset;
|
||||||
|
overflow-y: scroll;
|
||||||
|
overflow-x: hidden;
|
||||||
|
-webkit-overflow-scrolling: touch;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
position: sticky;
|
||||||
|
bottom: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,22 +2,23 @@
|
|||||||
<div class="chat-view">
|
<div class="chat-view">
|
||||||
<div class="chat-view-inner">
|
<div class="chat-view-inner">
|
||||||
<div
|
<div
|
||||||
|
id="nav"
|
||||||
ref="inner"
|
ref="inner"
|
||||||
class="panel-default panel chat-view-body"
|
class="panel-default panel chat-view-body"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
ref="header"
|
ref="header"
|
||||||
class="panel-heading -sticky chat-view-heading"
|
class="panel-heading chat-view-heading mobile-hidden"
|
||||||
>
|
>
|
||||||
<button
|
<a
|
||||||
class="button-unstyled go-back-button"
|
class="go-back-button"
|
||||||
@click="goBack"
|
@click="goBack"
|
||||||
>
|
>
|
||||||
<FAIcon
|
<FAIcon
|
||||||
size="lg"
|
size="lg"
|
||||||
icon="chevron-left"
|
icon="chevron-left"
|
||||||
/>
|
/>
|
||||||
</button>
|
</a>
|
||||||
<div class="title text-center">
|
<div class="title text-center">
|
||||||
<ChatTitle
|
<ChatTitle
|
||||||
:user="recipient"
|
:user="recipient"
|
||||||
@@ -25,69 +26,73 @@
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<template>
|
||||||
class="message-list"
|
|
||||||
:style="{ height: scrollableContainerHeight }"
|
|
||||||
>
|
|
||||||
<template v-if="!errorLoadingChat">
|
|
||||||
<ChatMessage
|
|
||||||
v-for="chatViewItem in chatViewItems"
|
|
||||||
:key="chatViewItem.id"
|
|
||||||
:author="recipient"
|
|
||||||
:chat-view-item="chatViewItem"
|
|
||||||
:hovered-message-chain="chatViewItem.messageChainId === hoveredMessageChainId"
|
|
||||||
@hover="onMessageHover"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
<div
|
<div
|
||||||
v-else
|
ref="scrollable"
|
||||||
class="chat-loading-error"
|
class="scrollable-message-list"
|
||||||
|
:style="{ height: scrollableContainerHeight }"
|
||||||
|
@scroll="handleScroll"
|
||||||
>
|
>
|
||||||
<div class="alert error">
|
<template v-if="!errorLoadingChat">
|
||||||
{{ $t('chats.error_loading_chat') }}
|
<ChatMessage
|
||||||
|
v-for="chatViewItem in chatViewItems"
|
||||||
|
:key="chatViewItem.id"
|
||||||
|
:author="recipient"
|
||||||
|
:chat-view-item="chatViewItem"
|
||||||
|
:hovered-message-chain="chatViewItem.messageChainId === hoveredMessageChainId"
|
||||||
|
@hover="onMessageHover"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<div
|
||||||
|
v-else
|
||||||
|
class="chat-loading-error"
|
||||||
|
>
|
||||||
|
<div class="alert error">
|
||||||
|
{{ $t('chats.error_loading_chat') }}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<div
|
|
||||||
ref="footer"
|
|
||||||
class="panel-body footer"
|
|
||||||
>
|
|
||||||
<div
|
<div
|
||||||
class="jump-to-bottom-button"
|
ref="footer"
|
||||||
:class="{ 'visible': jumpToBottomButtonVisible }"
|
class="panel-body footer"
|
||||||
@click="scrollDown({ behavior: 'smooth' })"
|
|
||||||
>
|
>
|
||||||
<span>
|
<div
|
||||||
<FAIcon icon="chevron-down" />
|
class="jump-to-bottom-button"
|
||||||
<div
|
:class="{ 'visible': jumpToBottomButtonVisible }"
|
||||||
v-if="newMessageCount"
|
@click="scrollDown({ behavior: 'smooth' })"
|
||||||
class="badge badge-notification unread-chat-count unread-message-count"
|
>
|
||||||
>
|
<span>
|
||||||
{{ newMessageCount }}
|
<FAIcon icon="chevron-down" />
|
||||||
</div>
|
<div
|
||||||
</span>
|
v-if="newMessageCount"
|
||||||
|
class="badge badge-notification unread-chat-count unread-message-count"
|
||||||
|
>
|
||||||
|
{{ newMessageCount }}
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<PostStatusForm
|
||||||
|
:disable-subject="true"
|
||||||
|
:disable-scope-selector="true"
|
||||||
|
:disable-notice="true"
|
||||||
|
:disable-lock-warning="true"
|
||||||
|
:disable-polls="true"
|
||||||
|
:disable-sensitivity-checkbox="true"
|
||||||
|
:disable-submit="errorLoadingChat || !currentChat"
|
||||||
|
:disable-preview="true"
|
||||||
|
:optimistic-posting="true"
|
||||||
|
:post-handler="sendMessage"
|
||||||
|
:submit-on-enter="!mobileLayout"
|
||||||
|
:preserve-focus="!mobileLayout"
|
||||||
|
:auto-focus="!mobileLayout"
|
||||||
|
:placeholder="formPlaceholder"
|
||||||
|
:file-limit="1"
|
||||||
|
max-height="160"
|
||||||
|
emoji-picker-placement="top"
|
||||||
|
@resize="handleResize"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<PostStatusForm
|
</template>
|
||||||
:disable-subject="true"
|
|
||||||
:disable-scope-selector="true"
|
|
||||||
:disable-notice="true"
|
|
||||||
:disable-lock-warning="true"
|
|
||||||
:disable-polls="true"
|
|
||||||
:disable-sensitivity-checkbox="true"
|
|
||||||
:disable-submit="errorLoadingChat || !currentChat"
|
|
||||||
:disable-preview="true"
|
|
||||||
:optimistic-posting="true"
|
|
||||||
:post-handler="sendMessage"
|
|
||||||
:submit-on-enter="!mobileLayout"
|
|
||||||
:preserve-focus="!mobileLayout"
|
|
||||||
:auto-focus="!mobileLayout"
|
|
||||||
:placeholder="formPlaceholder"
|
|
||||||
:file-limit="1"
|
|
||||||
max-height="160"
|
|
||||||
emoji-picker-placement="top"
|
|
||||||
@resize="handleResize"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Captures a scroll position
|
// Captures a scroll position
|
||||||
export const getScrollPosition = () => {
|
export const getScrollPosition = (el) => {
|
||||||
return {
|
return {
|
||||||
scrollTop: window.scrollY,
|
scrollTop: el.scrollTop,
|
||||||
scrollHeight: document.documentElement.scrollHeight,
|
scrollHeight: el.scrollHeight,
|
||||||
offsetHeight: window.innerHeight
|
offsetHeight: el.offsetHeight
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -13,12 +13,21 @@ export const getNewTopPosition = (previousPosition, newPosition) => {
|
|||||||
return previousPosition.scrollTop + (newPosition.scrollHeight - previousPosition.scrollHeight)
|
return previousPosition.scrollTop + (newPosition.scrollHeight - previousPosition.scrollHeight)
|
||||||
}
|
}
|
||||||
|
|
||||||
export const isBottomedOut = (offset = 0) => {
|
export const isBottomedOut = (el, offset = 0) => {
|
||||||
const scrollHeight = window.scrollY + offset
|
if (!el) { return }
|
||||||
const totalHeight = document.documentElement.scrollHeight - window.innerHeight
|
const scrollHeight = el.scrollTop + offset
|
||||||
|
const totalHeight = el.scrollHeight - el.offsetHeight
|
||||||
return totalHeight <= scrollHeight
|
return totalHeight <= scrollHeight
|
||||||
}
|
}
|
||||||
// Returns whether or not the scrollbar is visible.
|
|
||||||
export const isScrollable = () => {
|
// Height of the scrollable container. The dynamic height is needed to ensure the mobile browser panel doesn't overlap or hide the posting form.
|
||||||
return document.documentElement.scrollHeight > window.innerHeight
|
export const scrollableContainerHeight = (inner, header, footer) => {
|
||||||
|
return inner.offsetHeight - header.clientHeight - footer.clientHeight
|
||||||
|
}
|
||||||
|
|
||||||
|
// Returns whether or not the scrollbar is visible.
|
||||||
|
export const isScrollable = (el) => {
|
||||||
|
if (!el) return
|
||||||
|
|
||||||
|
return el.scrollHeight > el.clientHeight
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
v-else
|
v-else
|
||||||
class="chat-list panel panel-default"
|
class="chat-list panel panel-default"
|
||||||
>
|
>
|
||||||
<div class="panel-heading -sticky">
|
<div class="panel-heading">
|
||||||
<span class="title">
|
<span class="title">
|
||||||
{{ $t("chats.chats") }}
|
{{ $t("chats.chats") }}
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
@@ -43,7 +43,7 @@
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
flex-shrink: 1;
|
flex-shrink: 1;
|
||||||
line-height: var(--post-line-height);
|
line-height: 1.4em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-preview {
|
.chat-preview {
|
||||||
@@ -82,7 +82,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.time-wrapper {
|
.time-wrapper {
|
||||||
line-height: var(--post-line-height);
|
line-height: 1.4em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-preview-body {
|
.chat-preview-body {
|
||||||
|
|||||||
@@ -27,7 +27,6 @@ const ChatMessage = {
|
|||||||
'chatViewItem',
|
'chatViewItem',
|
||||||
'hoveredMessageChain'
|
'hoveredMessageChain'
|
||||||
],
|
],
|
||||||
emits: ['hover'],
|
|
||||||
components: {
|
components: {
|
||||||
Popover,
|
Popover,
|
||||||
Attachment,
|
Attachment,
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
@import '../../_variables.scss';
|
@import '../../_variables.scss';
|
||||||
|
|
||||||
.chat-message-wrapper {
|
.chat-message-wrapper {
|
||||||
|
|
||||||
&.hovered-message-chain {
|
&.hovered-message-chain {
|
||||||
.animated.Avatar {
|
.animated.Avatar {
|
||||||
canvas {
|
canvas {
|
||||||
@@ -41,12 +40,6 @@
|
|||||||
.chat-message {
|
.chat-message {
|
||||||
display: flex;
|
display: flex;
|
||||||
padding-bottom: 0.5em;
|
padding-bottom: 0.5em;
|
||||||
|
|
||||||
.status-body:hover {
|
|
||||||
--_still-image-img-visibility: visible;
|
|
||||||
--_still-image-canvas-visibility: hidden;
|
|
||||||
--_still-image-label-visibility: hidden;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.avatar-wrapper {
|
.avatar-wrapper {
|
||||||
@@ -69,6 +62,10 @@
|
|||||||
&.with-media {
|
&.with-media {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
|
.gallery-row {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
.status {
|
.status {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,10 +22,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.go-back-button {
|
.go-back-button {
|
||||||
|
cursor: pointer;
|
||||||
|
width: 28px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
line-height: 1;
|
padding: 0.6em;
|
||||||
height: 100%;
|
margin: -0.6em 0.6em -0.6em -0.6em;
|
||||||
align-self: start;
|
|
||||||
width: var(--__panel-heading-height-inner);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,20 +1,21 @@
|
|||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
|
id="nav"
|
||||||
class="panel-default panel chat-new"
|
class="panel-default panel chat-new"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
ref="header"
|
ref="header"
|
||||||
class="panel-heading"
|
class="panel-heading"
|
||||||
>
|
>
|
||||||
<button
|
<a
|
||||||
class="button-unstyled go-back-button"
|
class="go-back-button"
|
||||||
@click="goBack"
|
@click="goBack"
|
||||||
>
|
>
|
||||||
<FAIcon
|
<FAIcon
|
||||||
size="lg"
|
size="lg"
|
||||||
icon="chevron-left"
|
icon="chevron-left"
|
||||||
/>
|
/>
|
||||||
</button>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="input-wrap">
|
<div class="input-wrap">
|
||||||
<div class="input-search">
|
<div class="input-search">
|
||||||
|
|||||||
@@ -1,12 +1,11 @@
|
|||||||
|
import Vue from 'vue'
|
||||||
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
|
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
|
||||||
import UserAvatar from '../user_avatar/user_avatar.vue'
|
import UserAvatar from '../user_avatar/user_avatar.vue'
|
||||||
import RichContent from 'src/components/rich_content/rich_content.jsx'
|
|
||||||
|
|
||||||
export default {
|
export default Vue.component('chat-title', {
|
||||||
name: 'ChatTitle',
|
name: 'ChatTitle',
|
||||||
components: {
|
components: {
|
||||||
UserAvatar,
|
UserAvatar
|
||||||
RichContent
|
|
||||||
},
|
},
|
||||||
props: [
|
props: [
|
||||||
'user', 'withAvatar'
|
'user', 'withAvatar'
|
||||||
@@ -24,4 +23,4 @@ export default {
|
|||||||
return generateProfileLink(user.id, user.screen_name)
|
return generateProfileLink(user.id, user.screen_name)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
|
|||||||
@@ -1,26 +1,25 @@
|
|||||||
<template>
|
<template>
|
||||||
|
<!-- eslint-disable vue/no-v-html -->
|
||||||
<div
|
<div
|
||||||
class="chat-title"
|
class="chat-title"
|
||||||
:title="title"
|
:title="title"
|
||||||
>
|
>
|
||||||
<router-link
|
<router-link
|
||||||
v-if="withAvatar && user"
|
v-if="withAvatar && user"
|
||||||
class="avatar-container"
|
|
||||||
:to="getUserProfileLink(user)"
|
:to="getUserProfileLink(user)"
|
||||||
>
|
>
|
||||||
<UserAvatar
|
<UserAvatar
|
||||||
class="titlebar-avatar"
|
|
||||||
:user="user"
|
:user="user"
|
||||||
|
width="23px"
|
||||||
|
height="23px"
|
||||||
/>
|
/>
|
||||||
</router-link>
|
</router-link>
|
||||||
<RichContent
|
<span
|
||||||
v-if="user"
|
|
||||||
class="username"
|
class="username"
|
||||||
:title="'@'+(user && user.screen_name_ui)"
|
v-html="htmlTitle"
|
||||||
:html="htmlTitle"
|
|
||||||
:emoji="user.emoji || []"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
<!-- eslint-enable vue/no-v-html -->
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script src="./chat_title.js"></script>
|
<script src="./chat_title.js"></script>
|
||||||
@@ -33,8 +32,7 @@
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
align-items: center;
|
||||||
--emoji-size: 14px;
|
|
||||||
|
|
||||||
.username {
|
.username {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
@@ -43,17 +41,21 @@
|
|||||||
display: inline;
|
display: inline;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
|
||||||
|
.emoji {
|
||||||
|
width: 14px;
|
||||||
|
height: 14px;
|
||||||
|
vertical-align: middle;
|
||||||
|
object-fit: contain
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.avatar-container {
|
.Avatar {
|
||||||
align-self: center;
|
width: 23px;
|
||||||
line-height: 1;
|
height: 23px;
|
||||||
}
|
|
||||||
|
|
||||||
.titlebar-avatar {
|
|
||||||
margin-right: 0.5em;
|
margin-right: 0.5em;
|
||||||
height: 1.5em;
|
|
||||||
width: 1.5em;
|
|
||||||
border-radius: $fallback--avatarAltRadius;
|
border-radius: $fallback--avatarAltRadius;
|
||||||
border-radius: var(--avatarAltRadius, $fallback--avatarAltRadius);
|
border-radius: var(--avatarAltRadius, $fallback--avatarAltRadius);
|
||||||
|
|
||||||
|
|||||||
@@ -6,9 +6,9 @@
|
|||||||
<input
|
<input
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
:checked="modelValue"
|
:checked="checked"
|
||||||
:indeterminate="indeterminate"
|
:indeterminate.prop="indeterminate"
|
||||||
@change="$emit('update:modelValue', $event.target.checked)"
|
@change="$emit('change', $event.target.checked)"
|
||||||
>
|
>
|
||||||
<i class="checkbox-indicator" />
|
<i class="checkbox-indicator" />
|
||||||
<span
|
<span
|
||||||
@@ -22,9 +22,12 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
emits: ['update:modelValue'],
|
model: {
|
||||||
|
prop: 'checked',
|
||||||
|
event: 'change'
|
||||||
|
},
|
||||||
props: [
|
props: [
|
||||||
'modelValue',
|
'checked',
|
||||||
'indeterminate',
|
'indeterminate',
|
||||||
'disabled'
|
'disabled'
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -11,28 +11,28 @@
|
|||||||
</label>
|
</label>
|
||||||
<Checkbox
|
<Checkbox
|
||||||
v-if="typeof fallback !== 'undefined' && showOptionalTickbox"
|
v-if="typeof fallback !== 'undefined' && showOptionalTickbox"
|
||||||
:model-value="present"
|
:checked="present"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
class="opt"
|
class="opt"
|
||||||
@update:modelValue="$emit('update:modelValue', typeof modelValue === 'undefined' ? fallback : undefined)"
|
@change="$emit('input', typeof value === 'undefined' ? fallback : undefined)"
|
||||||
/>
|
/>
|
||||||
<div class="input color-input-field">
|
<div class="input color-input-field">
|
||||||
<input
|
<input
|
||||||
:id="name + '-t'"
|
:id="name + '-t'"
|
||||||
class="textColor unstyled"
|
class="textColor unstyled"
|
||||||
type="text"
|
type="text"
|
||||||
:value="modelValue || fallback"
|
:value="value || fallback"
|
||||||
:disabled="!present || disabled"
|
:disabled="!present || disabled"
|
||||||
@input="$emit('update:modelValue', $event.target.value)"
|
@input="$emit('input', $event.target.value)"
|
||||||
>
|
>
|
||||||
<input
|
<input
|
||||||
v-if="validColor"
|
v-if="validColor"
|
||||||
:id="name"
|
:id="name"
|
||||||
class="nativeColor unstyled"
|
class="nativeColor unstyled"
|
||||||
type="color"
|
type="color"
|
||||||
:value="modelValue || fallback"
|
:value="value || fallback"
|
||||||
:disabled="!present || disabled"
|
:disabled="!present || disabled"
|
||||||
@input="$emit('update:modelValue', $event.target.value)"
|
@input="$emit('input', $event.target.value)"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
v-if="transparentColor"
|
v-if="transparentColor"
|
||||||
@@ -67,7 +67,7 @@ export default {
|
|||||||
},
|
},
|
||||||
// Color value, should be required but vue cannot tell the difference
|
// Color value, should be required but vue cannot tell the difference
|
||||||
// between "property missing" and "property set to undefined"
|
// between "property missing" and "property set to undefined"
|
||||||
modelValue: {
|
value: {
|
||||||
required: false,
|
required: false,
|
||||||
type: String,
|
type: String,
|
||||||
default: undefined
|
default: undefined
|
||||||
@@ -91,19 +91,18 @@ export default {
|
|||||||
default: true
|
default: true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
emits: ['update:modelValue'],
|
|
||||||
computed: {
|
computed: {
|
||||||
present () {
|
present () {
|
||||||
return typeof this.modelValue !== 'undefined'
|
return typeof this.value !== 'undefined'
|
||||||
},
|
},
|
||||||
validColor () {
|
validColor () {
|
||||||
return hex2rgb(this.modelValue || this.fallback)
|
return hex2rgb(this.value || this.fallback)
|
||||||
},
|
},
|
||||||
transparentColor () {
|
transparentColor () {
|
||||||
return this.modelValue === 'transparent'
|
return this.value === 'transparent'
|
||||||
},
|
},
|
||||||
computedColor () {
|
computedColor () {
|
||||||
return this.modelValue && this.modelValue.startsWith('--')
|
return this.value && this.value.startsWith('--')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,19 +1,5 @@
|
|||||||
import { reduce, filter, findIndex, clone, get } from 'lodash'
|
import { reduce, filter, findIndex, clone, get } from 'lodash'
|
||||||
import Status from '../status/status.vue'
|
import Status from '../status/status.vue'
|
||||||
import ThreadTree from '../thread_tree/thread_tree.vue'
|
|
||||||
|
|
||||||
import { library } from '@fortawesome/fontawesome-svg-core'
|
|
||||||
import {
|
|
||||||
faAngleDoubleDown,
|
|
||||||
faAngleDoubleLeft,
|
|
||||||
faChevronLeft
|
|
||||||
} from '@fortawesome/free-solid-svg-icons'
|
|
||||||
|
|
||||||
library.add(
|
|
||||||
faAngleDoubleDown,
|
|
||||||
faAngleDoubleLeft,
|
|
||||||
faChevronLeft
|
|
||||||
)
|
|
||||||
|
|
||||||
const sortById = (a, b) => {
|
const sortById = (a, b) => {
|
||||||
const idA = a.type === 'retweet' ? a.retweeted_status.id : a.id
|
const idA = a.type === 'retweet' ? a.retweeted_status.id : a.id
|
||||||
@@ -49,10 +35,7 @@ const conversation = {
|
|||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
highlight: null,
|
highlight: null,
|
||||||
expanded: false,
|
expanded: false
|
||||||
threadDisplayStatusObject: {}, // id => 'showing' | 'hidden'
|
|
||||||
statusContentPropertiesObject: {},
|
|
||||||
inlineDivePosition: null
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
props: [
|
props: [
|
||||||
@@ -70,50 +53,12 @@ const conversation = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
maxDepthToShowByDefault () {
|
|
||||||
// maxDepthInThread = max number of depths that is *visible*
|
|
||||||
// since our depth starts with 0 and "showing" means "showing children"
|
|
||||||
// there is a -2 here
|
|
||||||
const maxDepth = this.$store.getters.mergedConfig.maxDepthInThread - 2
|
|
||||||
return maxDepth >= 1 ? maxDepth : 1
|
|
||||||
},
|
|
||||||
displayStyle () {
|
|
||||||
return this.$store.getters.mergedConfig.conversationDisplay
|
|
||||||
},
|
|
||||||
isTreeView () {
|
|
||||||
return !this.isLinearView
|
|
||||||
},
|
|
||||||
treeViewIsSimple () {
|
|
||||||
return !this.$store.getters.mergedConfig.conversationTreeAdvanced
|
|
||||||
},
|
|
||||||
isLinearView () {
|
|
||||||
return this.displayStyle === 'linear'
|
|
||||||
},
|
|
||||||
shouldFadeAncestors () {
|
|
||||||
return this.$store.getters.mergedConfig.conversationTreeFadeAncestors
|
|
||||||
},
|
|
||||||
otherRepliesButtonPosition () {
|
|
||||||
return this.$store.getters.mergedConfig.conversationOtherRepliesButton
|
|
||||||
},
|
|
||||||
showOtherRepliesButtonBelowStatus () {
|
|
||||||
return this.otherRepliesButtonPosition === 'below'
|
|
||||||
},
|
|
||||||
showOtherRepliesButtonInsideStatus () {
|
|
||||||
return this.otherRepliesButtonPosition === 'inside'
|
|
||||||
},
|
|
||||||
suspendable () {
|
|
||||||
if (this.isTreeView) {
|
|
||||||
return Object.entries(this.statusContentProperties)
|
|
||||||
.every(([k, prop]) => !prop.replying && prop.mediaPlaying.length === 0)
|
|
||||||
}
|
|
||||||
if (this.$refs.statusComponent && this.$refs.statusComponent[0]) {
|
|
||||||
return this.$refs.statusComponent.every(s => s.suspendable)
|
|
||||||
} else {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
hideStatus () {
|
hideStatus () {
|
||||||
return this.virtualHidden && this.suspendable
|
if (this.$refs.statusComponent && this.$refs.statusComponent[0]) {
|
||||||
|
return this.virtualHidden && this.$refs.statusComponent[0].suspendable
|
||||||
|
} else {
|
||||||
|
return this.virtualHidden
|
||||||
|
}
|
||||||
},
|
},
|
||||||
status () {
|
status () {
|
||||||
return this.$store.state.statuses.allStatusesObject[this.statusId]
|
return this.$store.state.statuses.allStatusesObject[this.statusId]
|
||||||
@@ -145,121 +90,6 @@ const conversation = {
|
|||||||
|
|
||||||
return sortAndFilterConversation(conversation, this.status)
|
return sortAndFilterConversation(conversation, this.status)
|
||||||
},
|
},
|
||||||
statusMap () {
|
|
||||||
return this.conversation.reduce((res, s) => {
|
|
||||||
res[s.id] = s
|
|
||||||
return res
|
|
||||||
}, {})
|
|
||||||
},
|
|
||||||
threadTree () {
|
|
||||||
const reverseLookupTable = this.conversation.reduce((table, status, index) => {
|
|
||||||
table[status.id] = index
|
|
||||||
return table
|
|
||||||
}, {})
|
|
||||||
|
|
||||||
const threads = this.conversation.reduce((a, cur) => {
|
|
||||||
const id = cur.id
|
|
||||||
a.forest[id] = this.getReplies(id)
|
|
||||||
.map(s => s.id)
|
|
||||||
|
|
||||||
return a
|
|
||||||
}, {
|
|
||||||
forest: {}
|
|
||||||
})
|
|
||||||
|
|
||||||
const walk = (forest, topLevel, depth = 0, processed = {}) => topLevel.map(id => {
|
|
||||||
if (processed[id]) {
|
|
||||||
return []
|
|
||||||
}
|
|
||||||
|
|
||||||
processed[id] = true
|
|
||||||
return [{
|
|
||||||
status: this.conversation[reverseLookupTable[id]],
|
|
||||||
id,
|
|
||||||
depth
|
|
||||||
}, walk(forest, forest[id], depth + 1, processed)].reduce((a, b) => a.concat(b), [])
|
|
||||||
}).reduce((a, b) => a.concat(b), [])
|
|
||||||
|
|
||||||
const linearized = walk(threads.forest, this.topLevel.map(k => k.id))
|
|
||||||
|
|
||||||
return linearized
|
|
||||||
},
|
|
||||||
replyIds () {
|
|
||||||
return this.conversation.map(k => k.id)
|
|
||||||
.reduce((res, id) => {
|
|
||||||
res[id] = (this.replies[id] || []).map(k => k.id)
|
|
||||||
return res
|
|
||||||
}, {})
|
|
||||||
},
|
|
||||||
totalReplyCount () {
|
|
||||||
const sizes = {}
|
|
||||||
const subTreeSizeFor = (id) => {
|
|
||||||
if (sizes[id]) {
|
|
||||||
return sizes[id]
|
|
||||||
}
|
|
||||||
sizes[id] = 1 + this.replyIds[id].map(cid => subTreeSizeFor(cid)).reduce((a, b) => a + b, 0)
|
|
||||||
return sizes[id]
|
|
||||||
}
|
|
||||||
this.conversation.map(k => k.id).map(subTreeSizeFor)
|
|
||||||
return Object.keys(sizes).reduce((res, id) => {
|
|
||||||
res[id] = sizes[id] - 1 // exclude itself
|
|
||||||
return res
|
|
||||||
}, {})
|
|
||||||
},
|
|
||||||
totalReplyDepth () {
|
|
||||||
const depths = {}
|
|
||||||
const subTreeDepthFor = (id) => {
|
|
||||||
if (depths[id]) {
|
|
||||||
return depths[id]
|
|
||||||
}
|
|
||||||
depths[id] = 1 + this.replyIds[id].map(cid => subTreeDepthFor(cid)).reduce((a, b) => a > b ? a : b, 0)
|
|
||||||
return depths[id]
|
|
||||||
}
|
|
||||||
this.conversation.map(k => k.id).map(subTreeDepthFor)
|
|
||||||
return Object.keys(depths).reduce((res, id) => {
|
|
||||||
res[id] = depths[id] - 1 // exclude itself
|
|
||||||
return res
|
|
||||||
}, {})
|
|
||||||
},
|
|
||||||
depths () {
|
|
||||||
return this.threadTree.reduce((a, k) => {
|
|
||||||
a[k.id] = k.depth
|
|
||||||
return a
|
|
||||||
}, {})
|
|
||||||
},
|
|
||||||
topLevel () {
|
|
||||||
const topLevel = this.conversation.reduce((tl, cur) =>
|
|
||||||
tl.filter(k => this.getReplies(cur.id).map(v => v.id).indexOf(k.id) === -1), this.conversation)
|
|
||||||
return topLevel
|
|
||||||
},
|
|
||||||
otherTopLevelCount () {
|
|
||||||
return this.topLevel.length - 1
|
|
||||||
},
|
|
||||||
showingTopLevel () {
|
|
||||||
if (this.canDive && this.diveRoot) {
|
|
||||||
return [this.statusMap[this.diveRoot]]
|
|
||||||
}
|
|
||||||
return this.topLevel
|
|
||||||
},
|
|
||||||
diveRoot () {
|
|
||||||
const statusId = this.inlineDivePosition || this.statusId
|
|
||||||
const isTopLevel = !this.parentOf(statusId)
|
|
||||||
return isTopLevel ? null : statusId
|
|
||||||
},
|
|
||||||
diveDepth () {
|
|
||||||
return this.canDive && this.diveRoot ? this.depths[this.diveRoot] : 0
|
|
||||||
},
|
|
||||||
diveMode () {
|
|
||||||
return this.canDive && !!this.diveRoot
|
|
||||||
},
|
|
||||||
shouldShowAllConversationButton () {
|
|
||||||
// The "show all conversation" button tells the user that there exist
|
|
||||||
// other toplevel statuses, so do not show it if there is only a single root
|
|
||||||
return this.isTreeView && this.isExpanded && this.diveMode && this.topLevel.length > 1
|
|
||||||
},
|
|
||||||
shouldShowAncestors () {
|
|
||||||
return this.isTreeView && this.isExpanded && this.ancestorsOf(this.diveRoot).length
|
|
||||||
},
|
|
||||||
replies () {
|
replies () {
|
||||||
let i = 1
|
let i = 1
|
||||||
// eslint-disable-next-line camelcase
|
// eslint-disable-next-line camelcase
|
||||||
@@ -279,71 +109,15 @@ const conversation = {
|
|||||||
}, {})
|
}, {})
|
||||||
},
|
},
|
||||||
isExpanded () {
|
isExpanded () {
|
||||||
return !!(this.expanded || this.isPage)
|
return this.expanded || this.isPage
|
||||||
},
|
},
|
||||||
hiddenStyle () {
|
hiddenStyle () {
|
||||||
const height = (this.status && this.status.virtualHeight) || '120px'
|
const height = (this.status && this.status.virtualHeight) || '120px'
|
||||||
return this.virtualHidden ? { height } : {}
|
return this.virtualHidden ? { height } : {}
|
||||||
},
|
|
||||||
threadDisplayStatus () {
|
|
||||||
return this.conversation.reduce((a, k) => {
|
|
||||||
const id = k.id
|
|
||||||
const depth = this.depths[id]
|
|
||||||
const status = (() => {
|
|
||||||
if (this.threadDisplayStatusObject[id]) {
|
|
||||||
return this.threadDisplayStatusObject[id]
|
|
||||||
}
|
|
||||||
if ((depth - this.diveDepth) <= this.maxDepthToShowByDefault) {
|
|
||||||
return 'showing'
|
|
||||||
} else {
|
|
||||||
return 'hidden'
|
|
||||||
}
|
|
||||||
})()
|
|
||||||
|
|
||||||
a[id] = status
|
|
||||||
return a
|
|
||||||
}, {})
|
|
||||||
},
|
|
||||||
statusContentProperties () {
|
|
||||||
return this.conversation.reduce((a, k) => {
|
|
||||||
const id = k.id
|
|
||||||
const props = (() => {
|
|
||||||
const def = {
|
|
||||||
showingTall: false,
|
|
||||||
expandingSubject: false,
|
|
||||||
showingLongSubject: false,
|
|
||||||
isReplying: false,
|
|
||||||
mediaPlaying: []
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.statusContentPropertiesObject[id]) {
|
|
||||||
return {
|
|
||||||
...def,
|
|
||||||
...this.statusContentPropertiesObject[id]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return def
|
|
||||||
})()
|
|
||||||
|
|
||||||
a[id] = props
|
|
||||||
return a
|
|
||||||
}, {})
|
|
||||||
},
|
|
||||||
canDive () {
|
|
||||||
return this.isTreeView && this.isExpanded
|
|
||||||
},
|
|
||||||
focused () {
|
|
||||||
return (id) => {
|
|
||||||
return (this.isExpanded) && id === this.highlight
|
|
||||||
}
|
|
||||||
},
|
|
||||||
maybeHighlight () {
|
|
||||||
return this.isExpanded ? this.highlight : null
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
Status,
|
Status
|
||||||
ThreadTree
|
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
statusId (newVal, oldVal) {
|
statusId (newVal, oldVal) {
|
||||||
@@ -358,8 +132,6 @@ const conversation = {
|
|||||||
expanded (value) {
|
expanded (value) {
|
||||||
if (value) {
|
if (value) {
|
||||||
this.fetchConversation()
|
this.fetchConversation()
|
||||||
} else {
|
|
||||||
this.resetDisplayState()
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
virtualHidden (value) {
|
virtualHidden (value) {
|
||||||
@@ -389,8 +161,8 @@ const conversation = {
|
|||||||
getReplies (id) {
|
getReplies (id) {
|
||||||
return this.replies[id] || []
|
return this.replies[id] || []
|
||||||
},
|
},
|
||||||
getHighlight () {
|
focused (id) {
|
||||||
return this.isExpanded ? this.highlight : null
|
return (this.isExpanded) && id === this.statusId
|
||||||
},
|
},
|
||||||
setHighlight (id) {
|
setHighlight (id) {
|
||||||
if (!id) return
|
if (!id) return
|
||||||
@@ -398,139 +170,15 @@ const conversation = {
|
|||||||
this.$store.dispatch('fetchFavsAndRepeats', id)
|
this.$store.dispatch('fetchFavsAndRepeats', id)
|
||||||
this.$store.dispatch('fetchEmojiReactionsBy', id)
|
this.$store.dispatch('fetchEmojiReactionsBy', id)
|
||||||
},
|
},
|
||||||
|
getHighlight () {
|
||||||
|
return this.isExpanded ? this.highlight : null
|
||||||
|
},
|
||||||
toggleExpanded () {
|
toggleExpanded () {
|
||||||
this.expanded = !this.expanded
|
this.expanded = !this.expanded
|
||||||
},
|
},
|
||||||
getConversationId (statusId) {
|
getConversationId (statusId) {
|
||||||
const status = this.$store.state.statuses.allStatusesObject[statusId]
|
const status = this.$store.state.statuses.allStatusesObject[statusId]
|
||||||
return get(status, 'retweeted_status.statusnet_conversation_id', get(status, 'statusnet_conversation_id'))
|
return get(status, 'retweeted_status.statusnet_conversation_id', get(status, 'statusnet_conversation_id'))
|
||||||
},
|
|
||||||
setThreadDisplay (id, nextStatus) {
|
|
||||||
this.threadDisplayStatusObject = {
|
|
||||||
...this.threadDisplayStatusObject,
|
|
||||||
[id]: nextStatus
|
|
||||||
}
|
|
||||||
},
|
|
||||||
toggleThreadDisplay (id) {
|
|
||||||
const curStatus = this.threadDisplayStatus[id]
|
|
||||||
const nextStatus = curStatus === 'showing' ? 'hidden' : 'showing'
|
|
||||||
this.setThreadDisplay(id, nextStatus)
|
|
||||||
},
|
|
||||||
setThreadDisplayRecursively (id, nextStatus) {
|
|
||||||
this.setThreadDisplay(id, nextStatus)
|
|
||||||
this.getReplies(id).map(k => k.id).map(id => this.setThreadDisplayRecursively(id, nextStatus))
|
|
||||||
},
|
|
||||||
showThreadRecursively (id) {
|
|
||||||
this.setThreadDisplayRecursively(id, 'showing')
|
|
||||||
},
|
|
||||||
setStatusContentProperty (id, name, value) {
|
|
||||||
this.statusContentPropertiesObject = {
|
|
||||||
...this.statusContentPropertiesObject,
|
|
||||||
[id]: {
|
|
||||||
...this.statusContentPropertiesObject[id],
|
|
||||||
[name]: value
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
toggleStatusContentProperty (id, name) {
|
|
||||||
this.setStatusContentProperty(id, name, !this.statusContentProperties[id][name])
|
|
||||||
},
|
|
||||||
leastVisibleAncestor (id) {
|
|
||||||
let cur = id
|
|
||||||
let parent = this.parentOf(cur)
|
|
||||||
while (cur) {
|
|
||||||
// if the parent is showing it means cur is visible
|
|
||||||
if (this.threadDisplayStatus[parent] === 'showing') {
|
|
||||||
return cur
|
|
||||||
}
|
|
||||||
parent = this.parentOf(parent)
|
|
||||||
cur = this.parentOf(cur)
|
|
||||||
}
|
|
||||||
// nothing found, fall back to toplevel
|
|
||||||
return this.topLevel[0] ? this.topLevel[0].id : undefined
|
|
||||||
},
|
|
||||||
diveIntoStatus (id, preventScroll) {
|
|
||||||
this.tryScrollTo(id)
|
|
||||||
},
|
|
||||||
diveToTopLevel () {
|
|
||||||
this.tryScrollTo(this.topLevelAncestorOrSelfId(this.diveRoot) || this.topLevel[0].id)
|
|
||||||
},
|
|
||||||
// only used when we are not on a page
|
|
||||||
undive () {
|
|
||||||
this.inlineDivePosition = null
|
|
||||||
this.setHighlight(this.statusId)
|
|
||||||
},
|
|
||||||
tryScrollTo (id) {
|
|
||||||
if (!id) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if (this.isPage) {
|
|
||||||
// set statusId
|
|
||||||
this.$router.push({ name: 'conversation', params: { id } })
|
|
||||||
} else {
|
|
||||||
this.inlineDivePosition = id
|
|
||||||
}
|
|
||||||
// Because the conversation can be unmounted when out of sight
|
|
||||||
// and mounted again when it comes into sight,
|
|
||||||
// the `mounted` or `created` function in `status` should not
|
|
||||||
// contain scrolling calls, as we do not want the page to jump
|
|
||||||
// when we scroll with an expanded conversation.
|
|
||||||
//
|
|
||||||
// Now the method is to rely solely on the `highlight` watcher
|
|
||||||
// in `status` components.
|
|
||||||
// In linear views, all statuses are rendered at all times, but
|
|
||||||
// in tree views, it is possible that a change in active status
|
|
||||||
// removes and adds status components (e.g. an originally child
|
|
||||||
// status becomes an ancestor status, and thus they will be
|
|
||||||
// different).
|
|
||||||
// Here, let the components be rendered first, in order to trigger
|
|
||||||
// the `highlight` watcher.
|
|
||||||
this.$nextTick(() => {
|
|
||||||
this.setHighlight(id)
|
|
||||||
})
|
|
||||||
},
|
|
||||||
goToCurrent () {
|
|
||||||
this.tryScrollTo(this.diveRoot || this.topLevel[0].id)
|
|
||||||
},
|
|
||||||
statusById (id) {
|
|
||||||
return this.statusMap[id]
|
|
||||||
},
|
|
||||||
parentOf (id) {
|
|
||||||
const status = this.statusById(id)
|
|
||||||
if (!status) {
|
|
||||||
return undefined
|
|
||||||
}
|
|
||||||
const { in_reply_to_status_id: parentId } = status
|
|
||||||
if (!this.statusMap[parentId]) {
|
|
||||||
return undefined
|
|
||||||
}
|
|
||||||
return parentId
|
|
||||||
},
|
|
||||||
parentOrSelf (id) {
|
|
||||||
return this.parentOf(id) || id
|
|
||||||
},
|
|
||||||
// Ancestors of some status, from top to bottom
|
|
||||||
ancestorsOf (id) {
|
|
||||||
const ancestors = []
|
|
||||||
let cur = this.parentOf(id)
|
|
||||||
while (cur) {
|
|
||||||
ancestors.unshift(this.statusMap[cur])
|
|
||||||
cur = this.parentOf(cur)
|
|
||||||
}
|
|
||||||
return ancestors
|
|
||||||
},
|
|
||||||
topLevelAncestorOrSelfId (id) {
|
|
||||||
let cur = id
|
|
||||||
let parent = this.parentOf(id)
|
|
||||||
while (parent) {
|
|
||||||
cur = this.parentOf(cur)
|
|
||||||
parent = this.parentOf(parent)
|
|
||||||
}
|
|
||||||
return cur
|
|
||||||
},
|
|
||||||
resetDisplayState () {
|
|
||||||
this.undive()
|
|
||||||
this.threadDisplayStatusObject = {}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
v-if="isExpanded"
|
v-if="isExpanded"
|
||||||
class="panel-heading conversation-heading -sticky"
|
class="panel-heading conversation-heading"
|
||||||
>
|
>
|
||||||
<span class="title"> {{ $t('timeline.conversation') }} </span>
|
<span class="title"> {{ $t('timeline.conversation') }} </span>
|
||||||
<button
|
<button
|
||||||
@@ -18,176 +18,24 @@
|
|||||||
{{ $t('timeline.collapse') }}
|
{{ $t('timeline.collapse') }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="conversation-body panel-body">
|
<status
|
||||||
<div
|
v-for="status in conversation"
|
||||||
v-if="isTreeView"
|
:key="status.id"
|
||||||
class="thread-body"
|
ref="statusComponent"
|
||||||
>
|
:inline-expanded="collapsable && isExpanded"
|
||||||
<div
|
:statusoid="status"
|
||||||
v-if="shouldShowAllConversationButton"
|
:expandable="!isExpanded"
|
||||||
class="conversation-dive-to-top-level-box"
|
:show-pinned="pinnedStatusIdsObject && pinnedStatusIdsObject[status.id]"
|
||||||
>
|
:focused="focused(status.id)"
|
||||||
<i18n-t
|
:in-conversation="isExpanded"
|
||||||
keypath="status.show_all_conversation_with_icon"
|
:highlight="getHighlight()"
|
||||||
tag="button"
|
:replies="getReplies(status.id)"
|
||||||
class="button-unstyled -link"
|
:in-profile="inProfile"
|
||||||
scope="global"
|
:profile-user-id="profileUserId"
|
||||||
@click.prevent="diveToTopLevel"
|
class="conversation-status status-fadein panel-body"
|
||||||
>
|
@goto="setHighlight"
|
||||||
<template #icon>
|
@toggleExpanded="toggleExpanded"
|
||||||
<FAIcon
|
/>
|
||||||
icon="angle-double-left"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
<template #text>
|
|
||||||
<span>
|
|
||||||
{{ $tc('status.show_all_conversation', otherTopLevelCount, { numStatus: otherTopLevelCount }) }}
|
|
||||||
</span>
|
|
||||||
</template>
|
|
||||||
</i18n-t>
|
|
||||||
</div>
|
|
||||||
<div
|
|
||||||
v-if="shouldShowAncestors"
|
|
||||||
class="thread-ancestors"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
v-for="status in ancestorsOf(diveRoot)"
|
|
||||||
:key="status.id"
|
|
||||||
class="thread-ancestor"
|
|
||||||
:class="{'thread-ancestor-has-other-replies': getReplies(status.id).length > 1, '-faded': shouldFadeAncestors}"
|
|
||||||
>
|
|
||||||
<status
|
|
||||||
ref="statusComponent"
|
|
||||||
:inline-expanded="collapsable && isExpanded"
|
|
||||||
:statusoid="status"
|
|
||||||
:expandable="!isExpanded"
|
|
||||||
:show-pinned="pinnedStatusIdsObject && pinnedStatusIdsObject[status.id]"
|
|
||||||
:focused="focused(status.id)"
|
|
||||||
:in-conversation="isExpanded"
|
|
||||||
:highlight="getHighlight()"
|
|
||||||
:replies="getReplies(status.id)"
|
|
||||||
:in-profile="inProfile"
|
|
||||||
:profile-user-id="profileUserId"
|
|
||||||
class="conversation-status status-fadein panel-body"
|
|
||||||
|
|
||||||
:simple-tree="treeViewIsSimple"
|
|
||||||
:toggle-thread-display="toggleThreadDisplay"
|
|
||||||
:thread-display-status="threadDisplayStatus"
|
|
||||||
:show-thread-recursively="showThreadRecursively"
|
|
||||||
:total-reply-count="totalReplyCount"
|
|
||||||
:total-reply-depth="totalReplyDepth"
|
|
||||||
:show-other-replies-as-button="showOtherRepliesButtonInsideStatus"
|
|
||||||
:dive="() => diveIntoStatus(status.id)"
|
|
||||||
|
|
||||||
:controlled-showing-tall="statusContentProperties[status.id].showingTall"
|
|
||||||
:controlled-expanding-subject="statusContentProperties[status.id].expandingSubject"
|
|
||||||
:controlled-showing-long-subject="statusContentProperties[status.id].showingLongSubject"
|
|
||||||
:controlled-replying="statusContentProperties[status.id].replying"
|
|
||||||
:controlled-media-playing="statusContentProperties[status.id].mediaPlaying"
|
|
||||||
:controlled-toggle-showing-tall="() => toggleStatusContentProperty(status.id, 'showingTall')"
|
|
||||||
:controlled-toggle-expanding-subject="() => toggleStatusContentProperty(status.id, 'expandingSubject')"
|
|
||||||
:controlled-toggle-showing-long-subject="() => toggleStatusContentProperty(status.id, 'showingLongSubject')"
|
|
||||||
:controlled-toggle-replying="() => toggleStatusContentProperty(status.id, 'replying')"
|
|
||||||
:controlled-set-media-playing="(newVal) => toggleStatusContentProperty(status.id, 'mediaPlaying', newVal)"
|
|
||||||
|
|
||||||
@goto="setHighlight"
|
|
||||||
@toggleExpanded="toggleExpanded"
|
|
||||||
/>
|
|
||||||
<div
|
|
||||||
v-if="showOtherRepliesButtonBelowStatus && getReplies(status.id).length > 1"
|
|
||||||
class="thread-ancestor-dive-box"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="thread-ancestor-dive-box-inner"
|
|
||||||
>
|
|
||||||
<i18n-t
|
|
||||||
tag="button"
|
|
||||||
scope="global"
|
|
||||||
keypath="status.ancestor_follow_with_icon"
|
|
||||||
class="button-unstyled -link thread-tree-show-replies-button"
|
|
||||||
@click.prevent="diveIntoStatus(status.id)"
|
|
||||||
>
|
|
||||||
<template #icon>
|
|
||||||
<FAIcon
|
|
||||||
icon="angle-double-right"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
<template #text>
|
|
||||||
<span>
|
|
||||||
{{ $tc('status.ancestor_follow', getReplies(status.id).length - 1, { numReplies: getReplies(status.id).length - 1 }) }}
|
|
||||||
</span>
|
|
||||||
</template>
|
|
||||||
</i18n-t>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<thread-tree
|
|
||||||
v-for="status in showingTopLevel"
|
|
||||||
:key="status.id"
|
|
||||||
ref="statusComponent"
|
|
||||||
:depth="0"
|
|
||||||
|
|
||||||
:status="status"
|
|
||||||
:in-profile="inProfile"
|
|
||||||
:conversation="conversation"
|
|
||||||
:collapsable="collapsable"
|
|
||||||
:is-expanded="isExpanded"
|
|
||||||
:pinned-status-ids-object="pinnedStatusIdsObject"
|
|
||||||
:profile-user-id="profileUserId"
|
|
||||||
|
|
||||||
:focused="focused"
|
|
||||||
:get-replies="getReplies"
|
|
||||||
:highlight="maybeHighlight"
|
|
||||||
:set-highlight="setHighlight"
|
|
||||||
:toggle-expanded="toggleExpanded"
|
|
||||||
|
|
||||||
:simple="treeViewIsSimple"
|
|
||||||
:toggle-thread-display="toggleThreadDisplay"
|
|
||||||
:thread-display-status="threadDisplayStatus"
|
|
||||||
:show-thread-recursively="showThreadRecursively"
|
|
||||||
:total-reply-count="totalReplyCount"
|
|
||||||
:total-reply-depth="totalReplyDepth"
|
|
||||||
:status-content-properties="statusContentProperties"
|
|
||||||
:set-status-content-property="setStatusContentProperty"
|
|
||||||
:toggle-status-content-property="toggleStatusContentProperty"
|
|
||||||
:dive="canDive ? diveIntoStatus : undefined"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div
|
|
||||||
v-if="isLinearView"
|
|
||||||
class="thread-body"
|
|
||||||
>
|
|
||||||
<status
|
|
||||||
v-for="status in conversation"
|
|
||||||
:key="status.id"
|
|
||||||
ref="statusComponent"
|
|
||||||
:inline-expanded="collapsable && isExpanded"
|
|
||||||
:statusoid="status"
|
|
||||||
:expandable="!isExpanded"
|
|
||||||
:show-pinned="pinnedStatusIdsObject && pinnedStatusIdsObject[status.id]"
|
|
||||||
:focused="focused(status.id)"
|
|
||||||
:in-conversation="isExpanded"
|
|
||||||
:highlight="getHighlight()"
|
|
||||||
:replies="getReplies(status.id)"
|
|
||||||
:in-profile="inProfile"
|
|
||||||
:profile-user-id="profileUserId"
|
|
||||||
class="conversation-status status-fadein panel-body"
|
|
||||||
|
|
||||||
:toggle-thread-display="toggleThreadDisplay"
|
|
||||||
:thread-display-status="threadDisplayStatus"
|
|
||||||
:show-thread-recursively="showThreadRecursively"
|
|
||||||
:total-reply-count="totalReplyCount"
|
|
||||||
:total-reply-depth="totalReplyDepth"
|
|
||||||
:status-content-properties="statusContentProperties"
|
|
||||||
:set-status-content-property="setStatusContentProperty"
|
|
||||||
:toggle-status-content-property="toggleStatusContentProperty"
|
|
||||||
|
|
||||||
@goto="setHighlight"
|
|
||||||
@toggleExpanded="toggleExpanded"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
v-else
|
v-else
|
||||||
@@ -201,48 +49,6 @@
|
|||||||
@import '../../_variables.scss';
|
@import '../../_variables.scss';
|
||||||
|
|
||||||
.Conversation {
|
.Conversation {
|
||||||
z-index: 1;
|
|
||||||
|
|
||||||
.conversation-dive-to-top-level-box {
|
|
||||||
padding: var(--status-margin, $status-margin);
|
|
||||||
border-bottom-width: 1px;
|
|
||||||
border-bottom-style: solid;
|
|
||||||
border-bottom-color: var(--border, $fallback--border);
|
|
||||||
border-radius: 0;
|
|
||||||
/* Make the button stretch along the whole row */
|
|
||||||
display: flex;
|
|
||||||
align-items: stretch;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.thread-ancestors {
|
|
||||||
margin-left: var(--status-margin, $status-margin);
|
|
||||||
border-left: 2px solid var(--border, $fallback--border);
|
|
||||||
}
|
|
||||||
|
|
||||||
.thread-ancestor.-faded .StatusContent {
|
|
||||||
--link: var(--faintLink);
|
|
||||||
--text: var(--faint);
|
|
||||||
color: var(--text);
|
|
||||||
}
|
|
||||||
|
|
||||||
.thread-ancestor-dive-box {
|
|
||||||
padding-left: var(--status-margin, $status-margin);
|
|
||||||
border-bottom-width: 1px;
|
|
||||||
border-bottom-style: solid;
|
|
||||||
border-bottom-color: var(--border, $fallback--border);
|
|
||||||
border-radius: 0;
|
|
||||||
/* Make the button stretch along the whole row */
|
|
||||||
&, &-inner {
|
|
||||||
display: flex;
|
|
||||||
align-items: stretch;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.thread-ancestor-dive-box-inner {
|
|
||||||
padding: var(--status-margin, $status-margin);
|
|
||||||
}
|
|
||||||
|
|
||||||
.conversation-status {
|
.conversation-status {
|
||||||
border-bottom-width: 1px;
|
border-bottom-width: 1px;
|
||||||
border-bottom-style: solid;
|
border-bottom-style: solid;
|
||||||
@@ -250,33 +56,12 @@
|
|||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.thread-ancestor-has-other-replies .conversation-status,
|
&.-expanded {
|
||||||
.thread-ancestor:last-child .conversation-status,
|
.conversation-status:last-child {
|
||||||
.thread-ancestor:last-child .thread-ancestor-dive-box,
|
border-bottom: none;
|
||||||
&:last-child .conversation-status,
|
border-radius: 0 0 $fallback--panelRadius $fallback--panelRadius;
|
||||||
&.-expanded .thread-tree .conversation-status {
|
border-radius: 0 0 var(--panelRadius, $fallback--panelRadius) var(--panelRadius, $fallback--panelRadius);
|
||||||
border-bottom: none;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.thread-ancestors + .thread-tree > .conversation-status {
|
|
||||||
border-top-width: 1px;
|
|
||||||
border-top-style: solid;
|
|
||||||
border-top-color: var(--border, $fallback--border);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* expanded conversation in timeline */
|
|
||||||
&.status-fadein.-expanded .thread-body {
|
|
||||||
border-left-width: 4px;
|
|
||||||
border-left-style: solid;
|
|
||||||
border-left-color: $fallback--cRed;
|
|
||||||
border-left-color: var(--cRed, $fallback--cRed);
|
|
||||||
border-radius: 0 0 $fallback--panelRadius $fallback--panelRadius;
|
|
||||||
border-radius: 0 0 var(--panelRadius, $fallback--panelRadius) var(--panelRadius, $fallback--panelRadius);
|
|
||||||
border-bottom: 1px solid var(--border, $fallback--border);
|
|
||||||
}
|
|
||||||
|
|
||||||
&.-expanded.status-fadein {
|
|
||||||
margin: calc(var(--status-margin, $status-margin) / 2);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
@import '../../_variables.scss';
|
@import '../../_variables.scss';
|
||||||
|
|
||||||
.DesktopNav {
|
.DesktopNav {
|
||||||
|
height: 50px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
position: fixed;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: var(--topBarLink, $fallback--link);
|
color: var(--topBarLink, $fallback--link);
|
||||||
@@ -9,7 +11,7 @@
|
|||||||
|
|
||||||
.inner-nav {
|
.inner-nav {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-rows: var(--navbar-height);
|
grid-template-rows: 50px;
|
||||||
grid-template-columns: 2fr auto 2fr;
|
grid-template-columns: 2fr auto 2fr;
|
||||||
grid-template-areas: "sitename logo actions";
|
grid-template-areas: "sitename logo actions";
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
@@ -18,7 +20,7 @@
|
|||||||
max-width: 980px;
|
max-width: 980px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.-logoLeft .inner-nav {
|
&.-logoLeft {
|
||||||
grid-template-columns: auto 2fr 2fr;
|
grid-template-columns: auto 2fr 2fr;
|
||||||
grid-template-areas: "logo sitename actions";
|
grid-template-areas: "logo sitename actions";
|
||||||
}
|
}
|
||||||
@@ -75,7 +77,7 @@
|
|||||||
|
|
||||||
img {
|
img {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
height: var(--navbar-height);
|
height: 50px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -101,8 +103,8 @@
|
|||||||
|
|
||||||
.item {
|
.item {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
line-height: var(--navbar-height);
|
line-height: 50px;
|
||||||
height: var(--navbar-height);
|
height: 50px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
<search-bar
|
<search-bar
|
||||||
v-if="currentUser || !privateMode"
|
v-if="currentUser || !privateMode"
|
||||||
@toggled="onSearchBarToggled"
|
@toggled="onSearchBarToggled"
|
||||||
@click.stop
|
@click.stop.native
|
||||||
/>
|
/>
|
||||||
<button
|
<button
|
||||||
class="button-unstyled nav-icon"
|
class="button-unstyled nav-icon"
|
||||||
@@ -52,7 +52,6 @@
|
|||||||
href="/pleroma/admin/#/login-pleroma"
|
href="/pleroma/admin/#/login-pleroma"
|
||||||
class="nav-icon"
|
class="nav-icon"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
@click.stop
|
|
||||||
>
|
>
|
||||||
<FAIcon
|
<FAIcon
|
||||||
fixed-width
|
fixed-width
|
||||||
|
|||||||
@@ -58,7 +58,16 @@
|
|||||||
background-color: var(--bg, $fallback--bg);
|
background-color: var(--bg, $fallback--bg);
|
||||||
|
|
||||||
.dialog-modal-heading {
|
.dialog-modal-heading {
|
||||||
|
padding: .5em .5em;
|
||||||
|
margin-right: auto;
|
||||||
|
margin-bottom: 0;
|
||||||
|
white-space: nowrap;
|
||||||
|
color: var(--panelText);
|
||||||
|
background-color: $fallback--fg;
|
||||||
|
background-color: var(--panel, $fallback--fg);
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
|
margin-bottom: 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -31,7 +31,6 @@ library.add(
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
const EmojiInput = {
|
const EmojiInput = {
|
||||||
emits: ['update:modelValue', 'shown'],
|
|
||||||
props: {
|
props: {
|
||||||
suggest: {
|
suggest: {
|
||||||
/**
|
/**
|
||||||
@@ -58,7 +57,8 @@ const EmojiInput = {
|
|||||||
required: true,
|
required: true,
|
||||||
type: Function
|
type: Function
|
||||||
},
|
},
|
||||||
modelValue: {
|
// TODO VUE3: change to modelValue, change 'input' event to 'input'
|
||||||
|
value: {
|
||||||
/**
|
/**
|
||||||
* Used for v-model
|
* Used for v-model
|
||||||
*/
|
*/
|
||||||
@@ -137,8 +137,8 @@ const EmojiInput = {
|
|||||||
return (this.wordAtCaret || {}).word || ''
|
return (this.wordAtCaret || {}).word || ''
|
||||||
},
|
},
|
||||||
wordAtCaret () {
|
wordAtCaret () {
|
||||||
if (this.modelValue && this.caret) {
|
if (this.value && this.caret) {
|
||||||
const word = Completion.wordAtPosition(this.modelValue, this.caret - 1) || {}
|
const word = Completion.wordAtPosition(this.value, this.caret - 1) || {}
|
||||||
return word
|
return word
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -189,11 +189,8 @@ const EmojiInput = {
|
|||||||
img: imageUrl || ''
|
img: imageUrl || ''
|
||||||
}))
|
}))
|
||||||
},
|
},
|
||||||
suggestions: {
|
suggestions (newValue) {
|
||||||
handler (newValue) {
|
this.$nextTick(this.resize)
|
||||||
this.$nextTick(this.resize)
|
|
||||||
},
|
|
||||||
deep: true
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@@ -228,13 +225,13 @@ const EmojiInput = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
replace (replacement) {
|
replace (replacement) {
|
||||||
const newValue = Completion.replaceWord(this.modelValue, this.wordAtCaret, replacement)
|
const newValue = Completion.replaceWord(this.value, this.wordAtCaret, replacement)
|
||||||
this.$emit('update:modelValue', newValue)
|
this.$emit('input', newValue)
|
||||||
this.caret = 0
|
this.caret = 0
|
||||||
},
|
},
|
||||||
insert ({ insertion, keepOpen, surroundingSpace = true }) {
|
insert ({ insertion, keepOpen, surroundingSpace = true }) {
|
||||||
const before = this.modelValue.substring(0, this.caret) || ''
|
const before = this.value.substring(0, this.caret) || ''
|
||||||
const after = this.modelValue.substring(this.caret) || ''
|
const after = this.value.substring(this.caret) || ''
|
||||||
|
|
||||||
/* Using a bit more smart approach to padding emojis with spaces:
|
/* Using a bit more smart approach to padding emojis with spaces:
|
||||||
* - put a space before cursor if there isn't one already, unless we
|
* - put a space before cursor if there isn't one already, unless we
|
||||||
@@ -262,7 +259,7 @@ const EmojiInput = {
|
|||||||
after
|
after
|
||||||
].join('')
|
].join('')
|
||||||
this.keepOpen = keepOpen
|
this.keepOpen = keepOpen
|
||||||
this.$emit('update:modelValue', newValue)
|
this.$emit('input', newValue)
|
||||||
const position = this.caret + (insertion + spaceAfter + spaceBefore).length
|
const position = this.caret + (insertion + spaceAfter + spaceBefore).length
|
||||||
if (!keepOpen) {
|
if (!keepOpen) {
|
||||||
this.input.focus()
|
this.input.focus()
|
||||||
@@ -281,8 +278,8 @@ const EmojiInput = {
|
|||||||
if (len > 0 || suggestion) {
|
if (len > 0 || suggestion) {
|
||||||
const chosenSuggestion = suggestion || this.suggestions[this.highlighted]
|
const chosenSuggestion = suggestion || this.suggestions[this.highlighted]
|
||||||
const replacement = chosenSuggestion.replacement
|
const replacement = chosenSuggestion.replacement
|
||||||
const newValue = Completion.replaceWord(this.modelValue, this.wordAtCaret, replacement)
|
const newValue = Completion.replaceWord(this.value, this.wordAtCaret, replacement)
|
||||||
this.$emit('update:modelValue', newValue)
|
this.$emit('input', newValue)
|
||||||
this.highlighted = 0
|
this.highlighted = 0
|
||||||
const position = this.wordAtCaret.start + replacement.length
|
const position = this.wordAtCaret.start + replacement.length
|
||||||
|
|
||||||
@@ -458,7 +455,7 @@ const EmojiInput = {
|
|||||||
this.showPicker = false
|
this.showPicker = false
|
||||||
this.setCaret(e)
|
this.setCaret(e)
|
||||||
this.resize()
|
this.resize()
|
||||||
this.$emit('update:modelValue', e.target.value)
|
this.$emit('input', e.target.value)
|
||||||
},
|
},
|
||||||
onClickInput (e) {
|
onClickInput (e) {
|
||||||
this.showPicker = false
|
this.showPicker = false
|
||||||
|
|||||||
@@ -78,7 +78,7 @@
|
|||||||
top: 0;
|
top: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
margin: .2em .25em;
|
margin: .2em .25em;
|
||||||
font-size: 1.3em;
|
font-size: 16px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
import { defineAsyncComponent } from 'vue'
|
|
||||||
import Checkbox from '../checkbox/checkbox.vue'
|
import Checkbox from '../checkbox/checkbox.vue'
|
||||||
import { library } from '@fortawesome/fontawesome-svg-core'
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
||||||
import {
|
import {
|
||||||
@@ -58,7 +57,7 @@ const EmojiPicker = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
StickerPicker: defineAsyncComponent(() => import('../sticker_picker/sticker_picker.vue')),
|
StickerPicker: () => import('../sticker_picker/sticker_picker.vue'),
|
||||||
Checkbox
|
Checkbox
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@@ -80,7 +79,7 @@ const EmojiPicker = {
|
|||||||
},
|
},
|
||||||
highlight (key) {
|
highlight (key) {
|
||||||
const ref = this.$refs['group-' + key]
|
const ref = this.$refs['group-' + key]
|
||||||
const top = ref.offsetTop
|
const top = ref[0].offsetTop
|
||||||
this.setShowStickers(false)
|
this.setShowStickers(false)
|
||||||
this.activeGroup = key
|
this.activeGroup = key
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
@@ -97,7 +96,7 @@ const EmojiPicker = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
triggerLoadMore (target) {
|
triggerLoadMore (target) {
|
||||||
const ref = this.$refs['group-end-custom']
|
const ref = this.$refs['group-end-custom'][0]
|
||||||
if (!ref) return
|
if (!ref) return
|
||||||
const bottom = ref.offsetTop + ref.offsetHeight
|
const bottom = ref.offsetTop + ref.offsetHeight
|
||||||
|
|
||||||
@@ -120,7 +119,7 @@ const EmojiPicker = {
|
|||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.emojisView.forEach(group => {
|
this.emojisView.forEach(group => {
|
||||||
const ref = this.$refs['group-' + group.id]
|
const ref = this.$refs['group-' + group.id]
|
||||||
if (ref.offsetTop <= top) {
|
if (ref[0].offsetTop <= top) {
|
||||||
this.activeGroup = group.id
|
this.activeGroup = group.id
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
right: 0;
|
right: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
margin: 0 !important;
|
margin: 0 !important;
|
||||||
z-index: 100;
|
z-index: 1;
|
||||||
background-color: $fallback--bg;
|
background-color: $fallback--bg;
|
||||||
background-color: var(--popover, $fallback--bg);
|
background-color: var(--popover, $fallback--bg);
|
||||||
color: $fallback--link;
|
color: $fallback--link;
|
||||||
@@ -73,13 +73,12 @@
|
|||||||
&-item {
|
&-item {
|
||||||
padding: 0 7px;
|
padding: 0 7px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-size: 1.85em;
|
font-size: 24px;
|
||||||
|
|
||||||
&.disabled {
|
&.disabled {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
border-bottom: 4px solid;
|
border-bottom: 4px solid;
|
||||||
|
|
||||||
@@ -152,10 +151,9 @@
|
|||||||
justify-content: left;
|
justify-content: left;
|
||||||
|
|
||||||
&-title {
|
&-title {
|
||||||
font-size: 0.85em;
|
font-size: 12px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
&.disabled {
|
&.disabled {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,23 +11,8 @@
|
|||||||
@click="emojiOnClick(reaction.name, $event)"
|
@click="emojiOnClick(reaction.name, $event)"
|
||||||
@mouseenter="fetchEmojiReactionsByIfMissing()"
|
@mouseenter="fetchEmojiReactionsByIfMissing()"
|
||||||
>
|
>
|
||||||
<span
|
<span class="reaction-emoji">{{ reaction.name }}</span>
|
||||||
v-if="reaction.url !== null"
|
<span>{{ reaction.count }}</span>
|
||||||
>
|
|
||||||
<img
|
|
||||||
:src="reaction.url"
|
|
||||||
:title="reaction.name"
|
|
||||||
class="reaction-emoji"
|
|
||||||
width="2.55em"
|
|
||||||
>
|
|
||||||
{{ reaction.count }}
|
|
||||||
</span>
|
|
||||||
<span v-else>
|
|
||||||
<span class="reaction-emoji unicode-emoji">
|
|
||||||
{{ reaction.name }}
|
|
||||||
</span>
|
|
||||||
<span>{{ reaction.count }}</span>
|
|
||||||
</span>
|
|
||||||
</button>
|
</button>
|
||||||
</UserListPopover>
|
</UserListPopover>
|
||||||
<a
|
<a
|
||||||
@@ -51,10 +36,6 @@
|
|||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.unicode-emoji {
|
|
||||||
font-size: 210%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emoji-reaction {
|
.emoji-reaction {
|
||||||
padding: 0 0.5em;
|
padding: 0 0.5em;
|
||||||
margin-right: 0.5em;
|
margin-right: 0.5em;
|
||||||
@@ -64,7 +45,7 @@
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
.reaction-emoji {
|
.reaction-emoji {
|
||||||
width: 2.55em !important;
|
width: 1.25em;
|
||||||
margin-right: 0.25em;
|
margin-right: 0.25em;
|
||||||
}
|
}
|
||||||
&:focus {
|
&:focus {
|
||||||
|
|||||||
@@ -15,8 +15,18 @@ const Exporter = {
|
|||||||
type: String,
|
type: String,
|
||||||
default: 'export.csv'
|
default: 'export.csv'
|
||||||
},
|
},
|
||||||
exportButtonLabel: { type: String },
|
exportButtonLabel: {
|
||||||
processingMessage: { type: String }
|
type: String,
|
||||||
|
default () {
|
||||||
|
return this.$t('exporter.export')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
processingMessage: {
|
||||||
|
type: String,
|
||||||
|
default () {
|
||||||
|
return this.$t('exporter.processing')
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
|
|||||||
@@ -7,14 +7,14 @@
|
|||||||
spin
|
spin
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<span>{{ processingMessage || $t('exporter.processing') }}</span>
|
<span>{{ processingMessage }}</span>
|
||||||
</div>
|
</div>
|
||||||
<button
|
<button
|
||||||
v-else
|
v-else
|
||||||
class="btn button-default"
|
class="btn button-default"
|
||||||
@click="process"
|
@click="process"
|
||||||
>
|
>
|
||||||
{{ exportButtonLabel || $t('exporter.export') }}
|
{{ exportButtonLabel }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -39,13 +39,12 @@ const Flash = {
|
|||||||
this.player = 'error'
|
this.player = 'error'
|
||||||
})
|
})
|
||||||
this.ruffleInstance = player
|
this.ruffleInstance = player
|
||||||
this.$emit('playerOpened')
|
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
closePlayer () {
|
closePlayer () {
|
||||||
this.ruffleInstance && this.ruffleInstance.remove()
|
console.log(this.ruffleInstance)
|
||||||
|
this.ruffleInstance.remove()
|
||||||
this.player = false
|
this.player = false
|
||||||
this.$emit('playerClosed')
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -36,6 +36,13 @@
|
|||||||
</p>
|
</p>
|
||||||
</span>
|
</span>
|
||||||
</button>
|
</button>
|
||||||
|
<button
|
||||||
|
v-if="player"
|
||||||
|
class="button-unstyled hider"
|
||||||
|
@click="closePlayer"
|
||||||
|
>
|
||||||
|
<FAIcon icon="stop" />
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -44,9 +51,8 @@
|
|||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
@import '../../_variables.scss';
|
@import '../../_variables.scss';
|
||||||
.Flash {
|
.Flash {
|
||||||
display: inline-block;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 260px;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
.player {
|
.player {
|
||||||
@@ -54,16 +60,6 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.placeholder {
|
|
||||||
height: 100%;
|
|
||||||
width: 100%;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
background: var(--bg);
|
|
||||||
color: var(--link);
|
|
||||||
}
|
|
||||||
|
|
||||||
.hider {
|
.hider {
|
||||||
top: 0;
|
top: 0;
|
||||||
}
|
}
|
||||||
@@ -80,5 +76,13 @@
|
|||||||
display: none;
|
display: none;
|
||||||
visibility: 'hidden';
|
visibility: 'hidden';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.placeholder {
|
||||||
|
height: 100%;
|
||||||
|
flex: 1;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { requestFollow, requestUnfollow } from '../../services/follow_manipulate/follow_manipulate'
|
import { requestFollow, requestUnfollow } from '../../services/follow_manipulate/follow_manipulate'
|
||||||
export default {
|
export default {
|
||||||
props: ['relationship', 'user', 'labelFollowing', 'buttonClass'],
|
props: ['relationship', 'labelFollowing', 'buttonClass'],
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
inProgress: false
|
inProgress: false
|
||||||
@@ -29,9 +29,6 @@ export default {
|
|||||||
} else {
|
} else {
|
||||||
return this.$t('user_card.follow')
|
return this.$t('user_card.follow')
|
||||||
}
|
}
|
||||||
},
|
|
||||||
disabled () {
|
|
||||||
return this.inProgress || this.user.deactivated
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
<button
|
<button
|
||||||
class="btn button-default follow-button"
|
class="btn button-default follow-button"
|
||||||
:class="{ toggled: isPressed }"
|
:class="{ toggled: isPressed }"
|
||||||
:disabled="disabled"
|
:disabled="inProgress"
|
||||||
:title="title"
|
:title="title"
|
||||||
@click="onClick"
|
@click="onClick"
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -20,7 +20,6 @@
|
|||||||
:relationship="relationship"
|
:relationship="relationship"
|
||||||
:label-following="$t('user_card.follow_unfollow')"
|
:label-following="$t('user_card.follow_unfollow')"
|
||||||
class="follow-card-follow-button"
|
class="follow-card-follow-button"
|
||||||
:user="user"
|
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { set } from 'lodash'
|
import { set } from 'vue'
|
||||||
import Select from '../select/select.vue'
|
import Select from '../select/select.vue'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@@ -6,12 +6,11 @@ export default {
|
|||||||
Select
|
Select
|
||||||
},
|
},
|
||||||
props: [
|
props: [
|
||||||
'name', 'label', 'modelValue', 'fallback', 'options', 'no-inherit'
|
'name', 'label', 'value', 'fallback', 'options', 'no-inherit'
|
||||||
],
|
],
|
||||||
emits: ['update:modelValue'],
|
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
lValue: this.modelValue,
|
lValue: this.value,
|
||||||
availableOptions: [
|
availableOptions: [
|
||||||
this.noInherit ? '' : 'inherit',
|
this.noInherit ? '' : 'inherit',
|
||||||
'custom',
|
'custom',
|
||||||
@@ -23,7 +22,7 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
beforeUpdate () {
|
beforeUpdate () {
|
||||||
this.lValue = this.modelValue
|
this.lValue = this.value
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
present () {
|
present () {
|
||||||
@@ -38,7 +37,7 @@ export default {
|
|||||||
},
|
},
|
||||||
set (v) {
|
set (v) {
|
||||||
set(this.lValue, 'family', v)
|
set(this.lValue, 'family', v)
|
||||||
this.$emit('update:modelValue', this.lValue)
|
this.$emit('input', this.lValue)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
isCustom () {
|
isCustom () {
|
||||||
|
|||||||
@@ -15,14 +15,13 @@
|
|||||||
class="opt exlcude-disabled"
|
class="opt exlcude-disabled"
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
:checked="present"
|
:checked="present"
|
||||||
@change="$emit('update:modelValue', typeof modelValue === 'undefined' ? fallback : undefined)"
|
@input="$emit('input', typeof value === 'undefined' ? fallback : undefined)"
|
||||||
>
|
>
|
||||||
<label
|
<label
|
||||||
v-if="typeof fallback !== 'undefined'"
|
v-if="typeof fallback !== 'undefined'"
|
||||||
class="opt-l"
|
class="opt-l"
|
||||||
:for="name + '-o'"
|
:for="name + '-o'"
|
||||||
/>
|
/>
|
||||||
{{ ' ' }}
|
|
||||||
<Select
|
<Select
|
||||||
:id="name + '-font-switcher'"
|
:id="name + '-font-switcher'"
|
||||||
v-model="preset"
|
v-model="preset"
|
||||||
|
|||||||
@@ -1,26 +1,15 @@
|
|||||||
import Attachment from '../attachment/attachment.vue'
|
import Attachment from '../attachment/attachment.vue'
|
||||||
import { sumBy, set } from 'lodash'
|
import { chunk, last, dropRight, sumBy } from 'lodash'
|
||||||
|
|
||||||
const Gallery = {
|
const Gallery = {
|
||||||
props: [
|
props: [
|
||||||
'attachments',
|
'attachments',
|
||||||
'limitRows',
|
|
||||||
'descriptions',
|
|
||||||
'limit',
|
|
||||||
'nsfw',
|
'nsfw',
|
||||||
'setMedia',
|
'setMedia'
|
||||||
'size',
|
|
||||||
'editable',
|
|
||||||
'removeAttachment',
|
|
||||||
'shiftUpAttachment',
|
|
||||||
'shiftDnAttachment',
|
|
||||||
'editAttachment',
|
|
||||||
'grid'
|
|
||||||
],
|
],
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
sizes: {},
|
sizes: {}
|
||||||
hidingLong: true
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
components: { Attachment },
|
components: { Attachment },
|
||||||
@@ -29,70 +18,26 @@ const Gallery = {
|
|||||||
if (!this.attachments) {
|
if (!this.attachments) {
|
||||||
return []
|
return []
|
||||||
}
|
}
|
||||||
const attachments = this.limit > 0
|
const rows = chunk(this.attachments, 3)
|
||||||
? this.attachments.slice(0, this.limit)
|
if (last(rows).length === 1 && rows.length > 1) {
|
||||||
: this.attachments
|
// if 1 attachment on last row -> add it to the previous row instead
|
||||||
if (this.size === 'hide') {
|
const lastAttachment = last(rows)[0]
|
||||||
return attachments.map(item => ({ minimal: true, items: [item] }))
|
const allButLastRow = dropRight(rows)
|
||||||
|
last(allButLastRow).push(lastAttachment)
|
||||||
|
return allButLastRow
|
||||||
}
|
}
|
||||||
const rows = this.grid
|
|
||||||
? [{ grid: true, items: attachments }]
|
|
||||||
: attachments.reduce((acc, attachment, i) => {
|
|
||||||
if (attachment.mimetype.includes('audio')) {
|
|
||||||
return [...acc, { audio: true, items: [attachment] }, { items: [] }]
|
|
||||||
}
|
|
||||||
if (!(
|
|
||||||
attachment.mimetype.includes('image') ||
|
|
||||||
attachment.mimetype.includes('video') ||
|
|
||||||
attachment.mimetype.includes('flash')
|
|
||||||
)) {
|
|
||||||
return [...acc, { minimal: true, items: [attachment] }, { items: [] }]
|
|
||||||
}
|
|
||||||
const maxPerRow = 3
|
|
||||||
const attachmentsRemaining = this.attachments.length - i + 1
|
|
||||||
const currentRow = acc[acc.length - 1].items
|
|
||||||
currentRow.push(attachment)
|
|
||||||
if (currentRow.length >= maxPerRow && attachmentsRemaining > maxPerRow) {
|
|
||||||
return [...acc, { items: [] }]
|
|
||||||
} else {
|
|
||||||
return acc
|
|
||||||
}
|
|
||||||
}, [{ items: [] }]).filter(_ => _.items.length > 0)
|
|
||||||
return rows
|
return rows
|
||||||
},
|
},
|
||||||
attachmentsDimensionalScore () {
|
useContainFit () {
|
||||||
return this.rows.reduce((acc, row) => {
|
return this.$store.getters.mergedConfig.useContainFit
|
||||||
let size = 0
|
|
||||||
if (row.minimal) {
|
|
||||||
size += 1 / 8
|
|
||||||
} else if (row.audio) {
|
|
||||||
size += 1 / 4
|
|
||||||
} else {
|
|
||||||
size += 1 / (row.items.length + 0.6)
|
|
||||||
}
|
|
||||||
return acc + size
|
|
||||||
}, 0)
|
|
||||||
},
|
|
||||||
tooManyAttachments () {
|
|
||||||
if (this.editable || this.size === 'small') {
|
|
||||||
return false
|
|
||||||
} else if (this.size === 'hide') {
|
|
||||||
return this.attachments.length > 8
|
|
||||||
} else {
|
|
||||||
return this.attachmentsDimensionalScore > 1
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onNaturalSizeLoad ({ id, width, height }) {
|
onNaturalSizeLoad (id, size) {
|
||||||
set(this.sizes, id, { width, height })
|
this.$set(this.sizes, id, size)
|
||||||
},
|
},
|
||||||
rowStyle (row) {
|
rowStyle (itemsPerRow) {
|
||||||
if (row.audio) {
|
return { 'padding-bottom': `${(100 / (itemsPerRow + 0.6))}%` }
|
||||||
return { 'padding-bottom': '25%' } // fixed reduced height for audio
|
|
||||||
} else if (!row.minimal && !row.grid) {
|
|
||||||
return { 'padding-bottom': `${(100 / (row.items.length + 0.6))}%` }
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
itemStyle (id, row) {
|
itemStyle (id, row) {
|
||||||
const total = sumBy(row, item => this.getAspectRatio(item.id))
|
const total = sumBy(row, item => this.getAspectRatio(item.id))
|
||||||
@@ -101,16 +46,6 @@ const Gallery = {
|
|||||||
getAspectRatio (id) {
|
getAspectRatio (id) {
|
||||||
const size = this.sizes[id]
|
const size = this.sizes[id]
|
||||||
return size ? size.width / size.height : 1
|
return size ? size.width / size.height : 1
|
||||||
},
|
|
||||||
toggleHidingLong (event) {
|
|
||||||
this.hidingLong = event
|
|
||||||
},
|
|
||||||
openGallery () {
|
|
||||||
this.$store.dispatch('setMedia', this.attachments)
|
|
||||||
this.$store.dispatch('setCurrentMedia', this.attachments[0])
|
|
||||||
},
|
|
||||||
onMedia () {
|
|
||||||
this.$store.dispatch('setMedia', this.attachments)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,83 +1,26 @@
|
|||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
ref="galleryContainer"
|
ref="galleryContainer"
|
||||||
class="Gallery"
|
style="width: 100%;"
|
||||||
:class="{ '-long': tooManyAttachments && hidingLong }"
|
|
||||||
>
|
>
|
||||||
<div class="gallery-rows">
|
|
||||||
<div
|
|
||||||
v-for="(row, rowIndex) in rows"
|
|
||||||
:key="rowIndex"
|
|
||||||
class="gallery-row"
|
|
||||||
:style="rowStyle(row)"
|
|
||||||
:class="{ '-audio': row.audio, '-minimal': row.minimal, '-grid': grid }"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="gallery-row-inner"
|
|
||||||
:class="{ '-grid': grid }"
|
|
||||||
>
|
|
||||||
<Attachment
|
|
||||||
v-for="(attachment, attachmentIndex) in row.items"
|
|
||||||
:key="attachment.id"
|
|
||||||
class="gallery-item"
|
|
||||||
:nsfw="nsfw"
|
|
||||||
:attachment="attachment"
|
|
||||||
:size="size"
|
|
||||||
:editable="editable"
|
|
||||||
:remove="removeAttachment"
|
|
||||||
:shift-up="!(attachmentIndex === 0 && rowIndex === 0) && shiftUpAttachment"
|
|
||||||
:shift-dn="!(attachmentIndex === row.items.length - 1 && rowIndex === rows.length - 1) && shiftDnAttachment"
|
|
||||||
:edit="editAttachment"
|
|
||||||
:description="descriptions && descriptions[attachment.id]"
|
|
||||||
:hide-description="size === 'small' || tooManyAttachments && hidingLong"
|
|
||||||
:style="itemStyle(attachment.id, row.items)"
|
|
||||||
@setMedia="onMedia"
|
|
||||||
@naturalSizeLoad="onNaturalSizeLoad"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div
|
<div
|
||||||
v-if="tooManyAttachments"
|
v-for="(row, index) in rows"
|
||||||
class="many-attachments"
|
:key="index"
|
||||||
|
class="gallery-row"
|
||||||
|
:style="rowStyle(row.length)"
|
||||||
|
:class="{ 'contain-fit': useContainFit, 'cover-fit': !useContainFit }"
|
||||||
>
|
>
|
||||||
<div class="many-attachments-text">
|
<div class="gallery-row-inner">
|
||||||
{{ $t("status.many_attachments", { number: attachments.length }) }}
|
<attachment
|
||||||
</div>
|
v-for="attachment in row"
|
||||||
<div class="many-attachments-buttons">
|
:key="attachment.id"
|
||||||
<span
|
:set-media="setMedia"
|
||||||
v-if="!hidingLong"
|
:nsfw="nsfw"
|
||||||
class="many-attachments-button"
|
:attachment="attachment"
|
||||||
>
|
:allow-play="false"
|
||||||
<button
|
:natural-size-load="onNaturalSizeLoad.bind(null, attachment.id)"
|
||||||
class="button-unstyled -link"
|
:style="itemStyle(attachment.id, row)"
|
||||||
@click="toggleHidingLong(true)"
|
/>
|
||||||
>
|
|
||||||
{{ $t("status.collapse_attachments") }}
|
|
||||||
</button>
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
v-if="hidingLong"
|
|
||||||
class="many-attachments-button"
|
|
||||||
>
|
|
||||||
<button
|
|
||||||
class="button-unstyled -link"
|
|
||||||
@click="toggleHidingLong(false)"
|
|
||||||
>
|
|
||||||
{{ $t("status.show_all_attachments") }}
|
|
||||||
</button>
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
v-if="hidingLong"
|
|
||||||
class="many-attachments-button"
|
|
||||||
>
|
|
||||||
<button
|
|
||||||
class="button-unstyled -link"
|
|
||||||
@click="openGallery"
|
|
||||||
>
|
|
||||||
{{ $t("status.open_gallery") }}
|
|
||||||
</button>
|
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -88,66 +31,12 @@
|
|||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
@import '../../_variables.scss';
|
@import '../../_variables.scss';
|
||||||
|
|
||||||
.Gallery {
|
.gallery-row {
|
||||||
.gallery-rows {
|
position: relative;
|
||||||
display: flex;
|
height: 0;
|
||||||
flex-direction: column;
|
width: 100%;
|
||||||
}
|
flex-grow: 1;
|
||||||
|
margin-top: 0.5em;
|
||||||
.gallery-row {
|
|
||||||
position: relative;
|
|
||||||
height: 0;
|
|
||||||
width: 100%;
|
|
||||||
flex-grow: 1;
|
|
||||||
|
|
||||||
&:not(:first-child) {
|
|
||||||
margin-top: 0.5em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&.-long {
|
|
||||||
.gallery-rows {
|
|
||||||
max-height: 25em;
|
|
||||||
overflow: hidden;
|
|
||||||
mask:
|
|
||||||
linear-gradient(to top, white, transparent) bottom/100% 70px no-repeat,
|
|
||||||
linear-gradient(to top, white, white);
|
|
||||||
|
|
||||||
/* Autoprefixed seem to ignore this one, and also syntax is different */
|
|
||||||
-webkit-mask-composite: xor;
|
|
||||||
mask-composite: exclude;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.many-attachments-text {
|
|
||||||
text-align: center;
|
|
||||||
line-height: 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
.many-attachments-buttons {
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
.many-attachments-button {
|
|
||||||
display: flex;
|
|
||||||
flex: 1;
|
|
||||||
justify-content: center;
|
|
||||||
line-height: 2;
|
|
||||||
|
|
||||||
button {
|
|
||||||
padding: 0 2em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.gallery-row {
|
|
||||||
&.-grid,
|
|
||||||
&.-minimal {
|
|
||||||
height: auto;
|
|
||||||
.gallery-row-inner {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.gallery-row-inner {
|
.gallery-row-inner {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@@ -159,24 +48,9 @@
|
|||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
align-content: stretch;
|
align-content: stretch;
|
||||||
|
|
||||||
&.-grid {
|
|
||||||
width: 100%;
|
|
||||||
height: auto;
|
|
||||||
position: relative;
|
|
||||||
display: grid;
|
|
||||||
grid-column-gap: 0.5em;
|
|
||||||
grid-row-gap: 0.5em;
|
|
||||||
grid-template-columns: repeat(auto-fill, minmax(15em, 1fr));
|
|
||||||
|
|
||||||
.gallery-item {
|
|
||||||
margin: 0;
|
|
||||||
height: 200px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.gallery-item {
|
.gallery-row-inner .attachment {
|
||||||
margin: 0 0.5em 0 0;
|
margin: 0 0.5em 0 0;
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
@@ -187,5 +61,32 @@
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.image-attachment {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-container {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.contain-fit {
|
||||||
|
img,
|
||||||
|
video,
|
||||||
|
canvas {
|
||||||
|
object-fit: contain;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.cover-fit {
|
||||||
|
img,
|
||||||
|
video,
|
||||||
|
canvas {
|
||||||
|
object-fit: cover;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -44,18 +44,20 @@
|
|||||||
max-width: calc(100% - 3em);
|
max-width: calc(100% - 3em);
|
||||||
display: flex;
|
display: flex;
|
||||||
padding-left: 1.5em;
|
padding-left: 1.5em;
|
||||||
line-height: 2;
|
line-height: 2em;
|
||||||
margin-bottom: 0.5em;
|
|
||||||
|
|
||||||
.notice-message {
|
.notice-message {
|
||||||
flex: 1 1 100%;
|
flex: 1 1 100%;
|
||||||
}
|
}
|
||||||
|
i {
|
||||||
|
flex: 0 0;
|
||||||
|
width: 1.5em;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.global-error {
|
.global-error {
|
||||||
background-color: var(--alertPopupError, $fallback--cRed);
|
background-color: var(--alertPopupError, $fallback--cRed);
|
||||||
color: var(--alertPopupErrorText, $fallback--text);
|
color: var(--alertPopupErrorText, $fallback--text);
|
||||||
|
|
||||||
.svg-inline--fa {
|
.svg-inline--fa {
|
||||||
color: var(--alertPopupErrorText, $fallback--text);
|
color: var(--alertPopupErrorText, $fallback--text);
|
||||||
}
|
}
|
||||||
@@ -64,7 +66,6 @@
|
|||||||
.global-warning {
|
.global-warning {
|
||||||
background-color: var(--alertPopupWarning, $fallback--cOrange);
|
background-color: var(--alertPopupWarning, $fallback--cOrange);
|
||||||
color: var(--alertPopupWarningText, $fallback--text);
|
color: var(--alertPopupWarningText, $fallback--text);
|
||||||
|
|
||||||
.svg-inline--fa {
|
.svg-inline--fa {
|
||||||
color: var(--alertPopupWarningText, $fallback--text);
|
color: var(--alertPopupWarningText, $fallback--text);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -117,7 +117,7 @@ const ImageCropper = {
|
|||||||
const fileInput = this.$refs.input
|
const fileInput = this.$refs.input
|
||||||
fileInput.addEventListener('change', this.readFile)
|
fileInput.addEventListener('change', this.readFile)
|
||||||
},
|
},
|
||||||
beforeUnmount: function () {
|
beforeDestroy: function () {
|
||||||
// remove the event listeners
|
// remove the event listeners
|
||||||
const trigger = this.getTriggerDOM()
|
const trigger = this.getTriggerDOM()
|
||||||
if (trigger) {
|
if (trigger) {
|
||||||
|
|||||||
@@ -15,9 +15,24 @@ const Importer = {
|
|||||||
type: Function,
|
type: Function,
|
||||||
required: true
|
required: true
|
||||||
},
|
},
|
||||||
submitButtonLabel: { type: String },
|
submitButtonLabel: {
|
||||||
successMessage: { type: String },
|
type: String,
|
||||||
errorMessage: { type: String }
|
default () {
|
||||||
|
return this.$t('importer.submit')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
successMessage: {
|
||||||
|
type: String,
|
||||||
|
default () {
|
||||||
|
return this.$t('importer.success')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
errorMessage: {
|
||||||
|
type: String,
|
||||||
|
default () {
|
||||||
|
return this.$t('importer.error')
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
|
|||||||
@@ -18,31 +18,21 @@
|
|||||||
class="btn button-default"
|
class="btn button-default"
|
||||||
@click="submit"
|
@click="submit"
|
||||||
>
|
>
|
||||||
{{ submitButtonLabel || $t('importer.submit') }}
|
{{ submitButtonLabel }}
|
||||||
</button>
|
</button>
|
||||||
<div v-if="success">
|
<div v-if="success">
|
||||||
<button
|
<FAIcon
|
||||||
class="button-unstyled"
|
icon="times"
|
||||||
@click="dismiss"
|
@click="dismiss"
|
||||||
>
|
/>
|
||||||
<FAIcon
|
<p>{{ successMessage }}</p>
|
||||||
icon="times"
|
|
||||||
/>
|
|
||||||
</button>
|
|
||||||
{{ ' ' }}
|
|
||||||
<span>{{ successMessage || $t('importer.success') }}</span>
|
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="error">
|
<div v-else-if="error">
|
||||||
<button
|
<FAIcon
|
||||||
class="button-unstyled"
|
icon="times"
|
||||||
@click="dismiss"
|
@click="dismiss"
|
||||||
>
|
/>
|
||||||
<FAIcon
|
<p>{{ errorMessage }}</p>
|
||||||
icon="times"
|
|
||||||
/>
|
|
||||||
</button>
|
|
||||||
{{ ' ' }}
|
|
||||||
<span>{{ errorMessage || $t('importer.error') }}</span>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
import Notifications from '../notifications/notifications.vue'
|
import Notifications from '../notifications/notifications.vue'
|
||||||
import TabSwitcher from 'src/components/tab_switcher/tab_switcher.jsx'
|
|
||||||
|
|
||||||
const tabModeDict = {
|
const tabModeDict = {
|
||||||
mentions: ['mention'],
|
mentions: ['mention'],
|
||||||
@@ -21,8 +20,7 @@ const Interactions = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
Notifications,
|
Notifications
|
||||||
TabSwitcher
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,11 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<label for="interface-language-switcher">
|
<label for="interface-language-switcher">
|
||||||
{{ promptText }}
|
{{ $t('settings.interfaceLanguage') }}
|
||||||
</label>
|
</label>
|
||||||
{{ ' ' }}
|
|
||||||
<Select
|
<Select
|
||||||
id="interface-language-switcher"
|
id="interface-language-switcher"
|
||||||
v-model="controlledLanguage"
|
v-model="language"
|
||||||
>
|
>
|
||||||
<option
|
<option
|
||||||
v-for="lang in languages"
|
v-for="lang in languages"
|
||||||
@@ -20,43 +19,39 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import languagesObject from '../../i18n/messages'
|
||||||
import localeService from '../../services/locale/locale.service.js'
|
import localeService from '../../services/locale/locale.service.js'
|
||||||
|
import ISO6391 from 'iso-639-1'
|
||||||
|
import _ from 'lodash'
|
||||||
import Select from '../select/select.vue'
|
import Select from '../select/select.vue'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
Select
|
Select
|
||||||
},
|
},
|
||||||
props: {
|
|
||||||
promptText: {
|
|
||||||
type: String,
|
|
||||||
required: true
|
|
||||||
},
|
|
||||||
language: {
|
|
||||||
type: String,
|
|
||||||
required: true
|
|
||||||
},
|
|
||||||
setLanguage: {
|
|
||||||
type: Function,
|
|
||||||
required: true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
computed: {
|
computed: {
|
||||||
languages () {
|
languages () {
|
||||||
return localeService.languages
|
return _.map(languagesObject.languages, (code) => ({ code: code, name: this.getLanguageName(code) })).sort((a, b) => a.name.localeCompare(b.name))
|
||||||
},
|
},
|
||||||
|
|
||||||
controlledLanguage: {
|
language: {
|
||||||
get: function () { return this.language },
|
get: function () { return this.$store.getters.mergedConfig.interfaceLanguage },
|
||||||
set: function (val) {
|
set: function (val) {
|
||||||
this.setLanguage(val)
|
this.$store.dispatch('setOption', { name: 'interfaceLanguage', value: val })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
getLanguageName (code) {
|
getLanguageName (code) {
|
||||||
return localeService.getLanguageName(code)
|
const specialLanguageNames = {
|
||||||
|
'ja_easy': 'やさしいにほんご',
|
||||||
|
'zh': '简体中文',
|
||||||
|
'zh_Hant': '繁體中文'
|
||||||
|
}
|
||||||
|
const languageName = specialLanguageNames[code] || ISO6391.getNativeName(code)
|
||||||
|
const browserLocale = localeService.internalToBrowserLocale(code)
|
||||||
|
return languageName.charAt(0).toLocaleUpperCase(browserLocale) + languageName.slice(1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -63,7 +63,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.card-host {
|
.card-host {
|
||||||
font-size: 0.85em;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-description {
|
.card-description {
|
||||||
|
|||||||
@@ -76,15 +76,11 @@
|
|||||||
>
|
>
|
||||||
<div class="alert error">
|
<div class="alert error">
|
||||||
{{ error }}
|
{{ error }}
|
||||||
<button
|
<FAIcon
|
||||||
class="button-unstyled"
|
class="fa-scale-110 fa-old-padding"
|
||||||
|
icon="times"
|
||||||
@click="clearError"
|
@click="clearError"
|
||||||
>
|
/>
|
||||||
<FAIcon
|
|
||||||
class="fa-scale-110 fa-old-padding"
|
|
||||||
icon="times"
|
|
||||||
/>
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -101,7 +97,7 @@
|
|||||||
padding: 0.6em;
|
padding: 0.6em;
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
min-height: 2em;
|
min-height: 28px;
|
||||||
width: 10em;
|
width: 10em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,46 +1,24 @@
|
|||||||
import StillImage from '../still-image/still-image.vue'
|
import StillImage from '../still-image/still-image.vue'
|
||||||
import VideoAttachment from '../video_attachment/video_attachment.vue'
|
import VideoAttachment from '../video_attachment/video_attachment.vue'
|
||||||
import Modal from '../modal/modal.vue'
|
import Modal from '../modal/modal.vue'
|
||||||
import PinchZoom from '../pinch_zoom/pinch_zoom.vue'
|
|
||||||
import SwipeClick from '../swipe_click/swipe_click.vue'
|
|
||||||
import GestureService from '../../services/gesture_service/gesture_service'
|
|
||||||
import Flash from 'src/components/flash/flash.vue'
|
|
||||||
import fileTypeService from '../../services/file_type/file_type.service.js'
|
import fileTypeService from '../../services/file_type/file_type.service.js'
|
||||||
|
import GestureService from '../../services/gesture_service/gesture_service'
|
||||||
import { library } from '@fortawesome/fontawesome-svg-core'
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
||||||
import {
|
import {
|
||||||
faChevronLeft,
|
faChevronLeft,
|
||||||
faChevronRight,
|
faChevronRight
|
||||||
faCircleNotch,
|
|
||||||
faTimes
|
|
||||||
} from '@fortawesome/free-solid-svg-icons'
|
} from '@fortawesome/free-solid-svg-icons'
|
||||||
|
|
||||||
library.add(
|
library.add(
|
||||||
faChevronLeft,
|
faChevronLeft,
|
||||||
faChevronRight,
|
faChevronRight
|
||||||
faCircleNotch,
|
|
||||||
faTimes
|
|
||||||
)
|
)
|
||||||
|
|
||||||
const MediaModal = {
|
const MediaModal = {
|
||||||
components: {
|
components: {
|
||||||
StillImage,
|
StillImage,
|
||||||
VideoAttachment,
|
VideoAttachment,
|
||||||
PinchZoom,
|
Modal
|
||||||
SwipeClick,
|
|
||||||
Modal,
|
|
||||||
Flash
|
|
||||||
},
|
|
||||||
data () {
|
|
||||||
return {
|
|
||||||
loading: false,
|
|
||||||
swipeDirection: GestureService.DIRECTION_LEFT,
|
|
||||||
swipeThreshold: () => {
|
|
||||||
const considerableMoveRatio = 1 / 4
|
|
||||||
return window.innerWidth * considerableMoveRatio
|
|
||||||
},
|
|
||||||
pinchZoomMinScale: 1,
|
|
||||||
pinchZoomScaleResetLimit: 1.2
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
showing () {
|
showing () {
|
||||||
@@ -49,9 +27,6 @@ const MediaModal = {
|
|||||||
media () {
|
media () {
|
||||||
return this.$store.state.mediaViewer.media
|
return this.$store.state.mediaViewer.media
|
||||||
},
|
},
|
||||||
description () {
|
|
||||||
return this.currentMedia.description
|
|
||||||
},
|
|
||||||
currentIndex () {
|
currentIndex () {
|
||||||
return this.$store.state.mediaViewer.currentIndex
|
return this.$store.state.mediaViewer.currentIndex
|
||||||
},
|
},
|
||||||
@@ -62,62 +37,43 @@ const MediaModal = {
|
|||||||
return this.media.length > 1
|
return this.media.length > 1
|
||||||
},
|
},
|
||||||
type () {
|
type () {
|
||||||
return this.currentMedia ? this.getType(this.currentMedia) : null
|
return this.currentMedia ? fileTypeService.fileType(this.currentMedia.mimetype) : null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
created () {
|
||||||
|
this.mediaSwipeGestureRight = GestureService.swipeGesture(
|
||||||
|
GestureService.DIRECTION_RIGHT,
|
||||||
|
this.goPrev,
|
||||||
|
50
|
||||||
|
)
|
||||||
|
this.mediaSwipeGestureLeft = GestureService.swipeGesture(
|
||||||
|
GestureService.DIRECTION_LEFT,
|
||||||
|
this.goNext,
|
||||||
|
50
|
||||||
|
)
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getType (media) {
|
mediaTouchStart (e) {
|
||||||
return fileTypeService.fileType(media.mimetype)
|
GestureService.beginSwipe(e, this.mediaSwipeGestureRight)
|
||||||
|
GestureService.beginSwipe(e, this.mediaSwipeGestureLeft)
|
||||||
|
},
|
||||||
|
mediaTouchMove (e) {
|
||||||
|
GestureService.updateSwipe(e, this.mediaSwipeGestureRight)
|
||||||
|
GestureService.updateSwipe(e, this.mediaSwipeGestureLeft)
|
||||||
},
|
},
|
||||||
hide () {
|
hide () {
|
||||||
// HACK: Closing immediately via a touch will cause the click
|
this.$store.dispatch('closeMediaViewer')
|
||||||
// to be processed on the content below the overlay
|
|
||||||
const transitionTime = 100 // ms
|
|
||||||
setTimeout(() => {
|
|
||||||
this.$store.dispatch('closeMediaViewer')
|
|
||||||
}, transitionTime)
|
|
||||||
},
|
|
||||||
hideIfNotSwiped (event) {
|
|
||||||
// If we have swiped over SwipeClick, do not trigger hide
|
|
||||||
const comp = this.$refs.swipeClick
|
|
||||||
if (!comp) {
|
|
||||||
this.hide()
|
|
||||||
} else {
|
|
||||||
comp.$gesture.click(event)
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
goPrev () {
|
goPrev () {
|
||||||
if (this.canNavigate) {
|
if (this.canNavigate) {
|
||||||
const prevIndex = this.currentIndex === 0 ? this.media.length - 1 : (this.currentIndex - 1)
|
const prevIndex = this.currentIndex === 0 ? this.media.length - 1 : (this.currentIndex - 1)
|
||||||
const newMedia = this.media[prevIndex]
|
this.$store.dispatch('setCurrent', this.media[prevIndex])
|
||||||
if (this.getType(newMedia) === 'image') {
|
|
||||||
this.loading = true
|
|
||||||
}
|
|
||||||
this.$store.dispatch('setCurrentMedia', newMedia)
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
goNext () {
|
goNext () {
|
||||||
if (this.canNavigate) {
|
if (this.canNavigate) {
|
||||||
const nextIndex = this.currentIndex === this.media.length - 1 ? 0 : (this.currentIndex + 1)
|
const nextIndex = this.currentIndex === this.media.length - 1 ? 0 : (this.currentIndex + 1)
|
||||||
const newMedia = this.media[nextIndex]
|
this.$store.dispatch('setCurrent', this.media[nextIndex])
|
||||||
if (this.getType(newMedia) === 'image') {
|
|
||||||
this.loading = true
|
|
||||||
}
|
|
||||||
this.$store.dispatch('setCurrentMedia', newMedia)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
onImageLoaded () {
|
|
||||||
this.loading = false
|
|
||||||
},
|
|
||||||
handleSwipePreview (offsets) {
|
|
||||||
this.$refs.pinchZoom.setTransform({ scale: 1, x: offsets[0], y: 0 })
|
|
||||||
},
|
|
||||||
handleSwipeEnd (sign) {
|
|
||||||
this.$refs.pinchZoom.setTransform({ scale: 1, x: 0, y: 0 })
|
|
||||||
if (sign > 0) {
|
|
||||||
this.goNext()
|
|
||||||
} else if (sign < 0) {
|
|
||||||
this.goPrev()
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
handleKeyupEvent (e) {
|
handleKeyupEvent (e) {
|
||||||
@@ -142,7 +98,7 @@ const MediaModal = {
|
|||||||
document.addEventListener('keyup', this.handleKeyupEvent)
|
document.addEventListener('keyup', this.handleKeyupEvent)
|
||||||
document.addEventListener('keydown', this.handleKeydownEvent)
|
document.addEventListener('keydown', this.handleKeydownEvent)
|
||||||
},
|
},
|
||||||
unmounted () {
|
destroyed () {
|
||||||
window.removeEventListener('popstate', this.hide)
|
window.removeEventListener('popstate', this.hide)
|
||||||
document.removeEventListener('keyup', this.handleKeyupEvent)
|
document.removeEventListener('keyup', this.handleKeyupEvent)
|
||||||
document.removeEventListener('keydown', this.handleKeydownEvent)
|
document.removeEventListener('keydown', this.handleKeydownEvent)
|
||||||
|
|||||||
@@ -2,38 +2,18 @@
|
|||||||
<Modal
|
<Modal
|
||||||
v-if="showing"
|
v-if="showing"
|
||||||
class="media-modal-view"
|
class="media-modal-view"
|
||||||
@backdropClicked="hideIfNotSwiped"
|
@backdropClicked="hide"
|
||||||
>
|
>
|
||||||
<SwipeClick
|
<img
|
||||||
v-if="type === 'image'"
|
v-if="type === 'image'"
|
||||||
ref="swipeClick"
|
class="modal-image"
|
||||||
class="modal-image-container"
|
:src="currentMedia.url"
|
||||||
:direction="swipeDirection"
|
:alt="currentMedia.description"
|
||||||
:threshold="swipeThreshold"
|
:title="currentMedia.description"
|
||||||
@preview-requested="handleSwipePreview"
|
@touchstart.stop="mediaTouchStart"
|
||||||
@swipe-finished="handleSwipeEnd"
|
@touchmove.stop="mediaTouchMove"
|
||||||
@swipeless-clicked="hide"
|
@click="hide"
|
||||||
>
|
>
|
||||||
<PinchZoom
|
|
||||||
ref="pinchZoom"
|
|
||||||
class="modal-image-container-inner"
|
|
||||||
selector=".modal-image"
|
|
||||||
reach-min-scale-strategy="reset"
|
|
||||||
stop-propagate-handled="stop-propgate-handled"
|
|
||||||
:allow-pan-min-scale="pinchZoomMinScale"
|
|
||||||
:min-scale="pinchZoomMinScale"
|
|
||||||
:reset-to-min-scale-limit="pinchZoomScaleResetLimit"
|
|
||||||
>
|
|
||||||
<img
|
|
||||||
:class="{ loading }"
|
|
||||||
class="modal-image"
|
|
||||||
:src="currentMedia.url"
|
|
||||||
:alt="currentMedia.description"
|
|
||||||
:title="currentMedia.description"
|
|
||||||
@load="onImageLoaded"
|
|
||||||
>
|
|
||||||
</PinchZoom>
|
|
||||||
</SwipeClick>
|
|
||||||
<VideoAttachment
|
<VideoAttachment
|
||||||
v-if="type === 'video'"
|
v-if="type === 'video'"
|
||||||
class="modal-image"
|
class="modal-image"
|
||||||
@@ -48,84 +28,38 @@
|
|||||||
:title="currentMedia.description"
|
:title="currentMedia.description"
|
||||||
controls
|
controls
|
||||||
/>
|
/>
|
||||||
<Flash
|
|
||||||
v-if="type === 'flash'"
|
|
||||||
class="modal-image"
|
|
||||||
:src="currentMedia.url"
|
|
||||||
:alt="currentMedia.description"
|
|
||||||
:title="currentMedia.description"
|
|
||||||
/>
|
|
||||||
<button
|
<button
|
||||||
v-if="canNavigate"
|
v-if="canNavigate"
|
||||||
:title="$t('media_modal.previous')"
|
:title="$t('media_modal.previous')"
|
||||||
class="modal-view-button modal-view-button-arrow modal-view-button-arrow--prev"
|
class="modal-view-button-arrow modal-view-button-arrow--prev"
|
||||||
@click.stop.prevent="goPrev"
|
@click.stop.prevent="goPrev"
|
||||||
>
|
>
|
||||||
<FAIcon
|
<FAIcon
|
||||||
class="button-icon arrow-icon"
|
class="arrow-icon"
|
||||||
icon="chevron-left"
|
icon="chevron-left"
|
||||||
/>
|
/>
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
v-if="canNavigate"
|
v-if="canNavigate"
|
||||||
:title="$t('media_modal.next')"
|
:title="$t('media_modal.next')"
|
||||||
class="modal-view-button modal-view-button-arrow modal-view-button-arrow--next"
|
class="modal-view-button-arrow modal-view-button-arrow--next"
|
||||||
@click.stop.prevent="goNext"
|
@click.stop.prevent="goNext"
|
||||||
>
|
>
|
||||||
<FAIcon
|
<FAIcon
|
||||||
class="button-icon arrow-icon"
|
class="arrow-icon"
|
||||||
icon="chevron-right"
|
icon="chevron-right"
|
||||||
/>
|
/>
|
||||||
</button>
|
</button>
|
||||||
<button
|
|
||||||
class="modal-view-button modal-view-button-hide"
|
|
||||||
:title="$t('media_modal.hide')"
|
|
||||||
@click.stop.prevent="hide"
|
|
||||||
>
|
|
||||||
<FAIcon
|
|
||||||
class="button-icon"
|
|
||||||
icon="times"
|
|
||||||
/>
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<span
|
|
||||||
v-if="description"
|
|
||||||
class="description"
|
|
||||||
>
|
|
||||||
{{ description }}
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="counter"
|
|
||||||
>
|
|
||||||
{{ $tc('media_modal.counter', currentIndex + 1, { current: currentIndex + 1, total: media.length }) }}
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
v-if="loading"
|
|
||||||
class="loading-spinner"
|
|
||||||
>
|
|
||||||
<FAIcon
|
|
||||||
spin
|
|
||||||
icon="circle-notch"
|
|
||||||
size="5x"
|
|
||||||
/>
|
|
||||||
</span>
|
|
||||||
</Modal>
|
</Modal>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script src="./media_modal.js"></script>
|
<script src="./media_modal.js"></script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
$modal-view-button-icon-height: 3em;
|
|
||||||
$modal-view-button-icon-half-height: calc(#{$modal-view-button-icon-height} / 2);
|
|
||||||
$modal-view-button-icon-width: 3em;
|
|
||||||
$modal-view-button-icon-margin: 0.5em;
|
|
||||||
|
|
||||||
.modal-view.media-modal-view {
|
.modal-view.media-modal-view {
|
||||||
z-index: 9000;
|
z-index: 1001;
|
||||||
flex-direction: column;
|
|
||||||
|
|
||||||
.modal-view-button-arrow,
|
.modal-view-button-arrow {
|
||||||
.modal-view-button-hide {
|
|
||||||
opacity: 0.75;
|
opacity: 0.75;
|
||||||
|
|
||||||
&:focus,
|
&:focus,
|
||||||
@@ -133,154 +67,69 @@ $modal-view-button-icon-margin: 0.5em;
|
|||||||
outline: none;
|
outline: none;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
overflow: hidden;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.media-modal-view {
|
@keyframes media-fadein {
|
||||||
@keyframes media-fadein {
|
from {
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.modal-image-container {
|
|
||||||
display: flex;
|
|
||||||
overflow: hidden;
|
|
||||||
align-items: center;
|
|
||||||
flex-direction: column;
|
|
||||||
max-width: 100%;
|
|
||||||
max-height: 100%;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
flex-grow: 1;
|
|
||||||
justify-content: center;
|
|
||||||
|
|
||||||
&-inner {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
flex-grow: 1;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.description,
|
|
||||||
.counter {
|
|
||||||
/* Hardcoded since background is also hardcoded */
|
|
||||||
color: white;
|
|
||||||
margin-top: 1em;
|
|
||||||
text-shadow: 0 0 10px black, 0 0 10px black;
|
|
||||||
padding: 0.2em 2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.description {
|
|
||||||
flex: 0 0 auto;
|
|
||||||
overflow-y: auto;
|
|
||||||
min-height: 1em;
|
|
||||||
max-width: 500px;
|
|
||||||
max-height: 9.5em;
|
|
||||||
word-break: break-all;
|
|
||||||
}
|
|
||||||
|
|
||||||
.modal-image {
|
|
||||||
max-width: 100%;
|
|
||||||
max-height: 100%;
|
|
||||||
image-orientation: from-image; // NOTE: only FF supports this
|
|
||||||
animation: 0.1s cubic-bezier(0.7, 0, 1, 0.6) media-fadein;
|
|
||||||
|
|
||||||
&.loading {
|
|
||||||
opacity: 0.5;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.loading-spinner {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
position: absolute;
|
|
||||||
pointer-events: none;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
|
|
||||||
svg {
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.modal-view-button {
|
|
||||||
border: 0;
|
|
||||||
padding: 0;
|
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
box-shadow: none;
|
}
|
||||||
background: none;
|
to {
|
||||||
appearance: none;
|
opacity: 1;
|
||||||
overflow: visible;
|
}
|
||||||
cursor: pointer;
|
}
|
||||||
transition: opacity 333ms cubic-bezier(.4,0,.22,1);
|
|
||||||
height: $modal-view-button-icon-height;
|
|
||||||
width: $modal-view-button-icon-width;
|
|
||||||
|
|
||||||
.button-icon {
|
.modal-image {
|
||||||
position: absolute;
|
max-width: 90%;
|
||||||
height: $modal-view-button-icon-height;
|
max-height: 90%;
|
||||||
width: $modal-view-button-icon-width;
|
box-shadow: 0px 5px 15px 0 rgba(0, 0, 0, 0.5);
|
||||||
font-size: 1rem;
|
image-orientation: from-image; // NOTE: only FF supports this
|
||||||
line-height: $modal-view-button-icon-height;
|
animation: 0.1s cubic-bezier(0.7, 0, 1, 0.6) media-fadein;
|
||||||
color: #FFF;
|
}
|
||||||
text-align: center;
|
|
||||||
background-color: rgba(0,0,0,.3);
|
.modal-view-button-arrow {
|
||||||
}
|
position: absolute;
|
||||||
|
display: block;
|
||||||
|
top: 50%;
|
||||||
|
margin-top: -50px;
|
||||||
|
width: 70px;
|
||||||
|
height: 100px;
|
||||||
|
border: 0;
|
||||||
|
padding: 0;
|
||||||
|
opacity: 0;
|
||||||
|
box-shadow: none;
|
||||||
|
background: none;
|
||||||
|
appearance: none;
|
||||||
|
overflow: visible;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: opacity 333ms cubic-bezier(.4,0,.22,1);
|
||||||
|
|
||||||
|
.arrow-icon {
|
||||||
|
position: absolute;
|
||||||
|
top: 35px;
|
||||||
|
height: 30px;
|
||||||
|
width: 32px;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 30px;
|
||||||
|
color: #FFF;
|
||||||
|
text-align: center;
|
||||||
|
background-color: rgba(0,0,0,.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-view-button-arrow {
|
&--prev {
|
||||||
position: absolute;
|
left: 0;
|
||||||
display: block;
|
|
||||||
top: 50%;
|
|
||||||
margin-top: $modal-view-button-icon-half-height;
|
|
||||||
width: $modal-view-button-icon-width;
|
|
||||||
height: $modal-view-button-icon-height;
|
|
||||||
|
|
||||||
.arrow-icon {
|
.arrow-icon {
|
||||||
position: absolute;
|
left: 6px;
|
||||||
top: 0;
|
|
||||||
line-height: $modal-view-button-icon-height;
|
|
||||||
color: #FFF;
|
|
||||||
text-align: center;
|
|
||||||
background-color: rgba(0,0,0,.3);
|
|
||||||
}
|
|
||||||
|
|
||||||
&--prev {
|
|
||||||
left: 0;
|
|
||||||
.arrow-icon {
|
|
||||||
left: $modal-view-button-icon-margin;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&--next {
|
|
||||||
right: 0;
|
|
||||||
.arrow-icon {
|
|
||||||
right: $modal-view-button-icon-margin;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-view-button-hide {
|
&--next {
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
right: 0;
|
||||||
.button-icon {
|
.arrow-icon {
|
||||||
top: $modal-view-button-icon-margin;
|
right: 6px;
|
||||||
right: $modal-view-button-icon-margin;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,9 +17,9 @@
|
|||||||
/>
|
/>
|
||||||
<input
|
<input
|
||||||
v-if="uploadReady"
|
v-if="uploadReady"
|
||||||
class="hidden-input-file"
|
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
type="file"
|
type="file"
|
||||||
|
style="position: fixed; top: -100em"
|
||||||
multiple="true"
|
multiple="true"
|
||||||
@change="change"
|
@change="change"
|
||||||
>
|
>
|
||||||
@@ -32,10 +32,6 @@
|
|||||||
@import '../../_variables.scss';
|
@import '../../_variables.scss';
|
||||||
|
|
||||||
.media-upload {
|
.media-upload {
|
||||||
cursor: pointer; // We use <label> for interactivity... i wonder if it's fine
|
cursor: pointer;
|
||||||
|
|
||||||
.hidden-input-file {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
|
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
|
||||||
import { mapGetters, mapState } from 'vuex'
|
import { mapGetters, mapState } from 'vuex'
|
||||||
import { highlightClass, highlightStyle } from '../../services/user_highlighter/user_highlighter.js'
|
import { highlightClass, highlightStyle } from '../../services/user_highlighter/user_highlighter.js'
|
||||||
import UserAvatar from '../user_avatar/user_avatar.vue'
|
|
||||||
import { library } from '@fortawesome/fontawesome-svg-core'
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
||||||
import {
|
import {
|
||||||
faAt
|
faAt
|
||||||
@@ -13,9 +12,6 @@ library.add(
|
|||||||
|
|
||||||
const MentionLink = {
|
const MentionLink = {
|
||||||
name: 'MentionLink',
|
name: 'MentionLink',
|
||||||
components: {
|
|
||||||
UserAvatar
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
url: {
|
url: {
|
||||||
required: true,
|
required: true,
|
||||||
@@ -54,10 +50,6 @@ const MentionLink = {
|
|||||||
userName () {
|
userName () {
|
||||||
return this.user && this.userNameFullUi.split('@')[0]
|
return this.user && this.userNameFullUi.split('@')[0]
|
||||||
},
|
},
|
||||||
serverName () {
|
|
||||||
// XXX assumed that domain does not contain @
|
|
||||||
return this.user && (this.userNameFullUi.split('@')[1] || this.$store.getters.instanceDomain)
|
|
||||||
},
|
|
||||||
userNameFull () {
|
userNameFull () {
|
||||||
return this.user && this.user.screen_name
|
return this.user && this.user.screen_name
|
||||||
},
|
},
|
||||||
@@ -87,43 +79,12 @@ const MentionLink = {
|
|||||||
classnames () {
|
classnames () {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
'-you': this.isYou && this.shouldBoldenYou,
|
'-you': this.isYou,
|
||||||
'-highlighted': this.highlight
|
'-highlighted': this.highlight
|
||||||
},
|
},
|
||||||
this.highlightType
|
this.highlightType
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
useAtIcon () {
|
|
||||||
return this.mergedConfig.useAtIcon
|
|
||||||
},
|
|
||||||
isRemote () {
|
|
||||||
return this.userName !== this.userNameFull
|
|
||||||
},
|
|
||||||
shouldShowFullUserName () {
|
|
||||||
const conf = this.mergedConfig.mentionLinkDisplay
|
|
||||||
if (conf === 'short') {
|
|
||||||
return false
|
|
||||||
} else if (conf === 'full') {
|
|
||||||
return true
|
|
||||||
} else { // full_for_remote
|
|
||||||
return this.isRemote
|
|
||||||
}
|
|
||||||
},
|
|
||||||
shouldShowTooltip () {
|
|
||||||
return this.mergedConfig.mentionLinkShowTooltip && this.mergedConfig.mentionLinkDisplay === 'short' && this.isRemote
|
|
||||||
},
|
|
||||||
shouldShowAvatar () {
|
|
||||||
return this.mergedConfig.mentionLinkShowAvatar
|
|
||||||
},
|
|
||||||
shouldShowYous () {
|
|
||||||
return this.mergedConfig.mentionLinkShowYous
|
|
||||||
},
|
|
||||||
shouldBoldenYou () {
|
|
||||||
return this.mergedConfig.mentionLinkBoldenYou
|
|
||||||
},
|
|
||||||
shouldFadeDomain () {
|
|
||||||
return this.mergedConfig.mentionLinkFadeDomain
|
|
||||||
},
|
|
||||||
...mapGetters(['mergedConfig']),
|
...mapGetters(['mergedConfig']),
|
||||||
...mapState({
|
...mapState({
|
||||||
currentUser: state => state.users.currentUser
|
currentUser: state => state.users.currentUser
|
||||||
|
|||||||
@@ -1,27 +1,15 @@
|
|||||||
@import '../../_variables.scss';
|
|
||||||
|
|
||||||
.MentionLink {
|
.MentionLink {
|
||||||
position: relative;
|
position: relative;
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
display: inline;
|
display: inline-block;
|
||||||
color: var(--link);
|
color: var(--link);
|
||||||
word-break: normal;
|
|
||||||
|
|
||||||
& .new,
|
& .new,
|
||||||
& .original {
|
& .original {
|
||||||
display: inline;
|
display: inline-block;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mention-avatar {
|
|
||||||
border-radius: var(--avatarAltRadius, $fallback--avatarAltRadius);
|
|
||||||
width: 1.5em;
|
|
||||||
height: 1.5em;
|
|
||||||
vertical-align: middle;
|
|
||||||
user-select: none;
|
|
||||||
margin-right: 0.2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.full {
|
.full {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
@@ -39,8 +27,7 @@
|
|||||||
user-select: all;
|
user-select: all;
|
||||||
}
|
}
|
||||||
|
|
||||||
& .short.-with-tooltip,
|
.short {
|
||||||
& .you {
|
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -49,15 +36,11 @@
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.shortName {
|
|
||||||
white-space: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
.new {
|
.new {
|
||||||
&.-you {
|
&.-you {
|
||||||
& .shortName,
|
& .shortName,
|
||||||
& .full {
|
& .full {
|
||||||
//font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -65,6 +48,7 @@
|
|||||||
color: var(--link);
|
color: var(--link);
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
height: 50%;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
padding: 0 0.1em;
|
padding: 0 0.1em;
|
||||||
vertical-align: -25%;
|
vertical-align: -25%;
|
||||||
@@ -72,7 +56,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&.-striped {
|
&.-striped {
|
||||||
& .shortName,
|
& .userName,
|
||||||
& .full {
|
& .full {
|
||||||
background-image:
|
background-image:
|
||||||
repeating-linear-gradient(
|
repeating-linear-gradient(
|
||||||
@@ -86,14 +70,14 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&.-solid {
|
&.-solid {
|
||||||
& .shortName,
|
& .userName,
|
||||||
& .full {
|
& .full {
|
||||||
background-image: linear-gradient(var(--____highlight-tintColor2), var(--____highlight-tintColor2));
|
background-image: linear-gradient(var(--____highlight-tintColor2), var(--____highlight-tintColor2));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.-side {
|
&.-side {
|
||||||
& .shortName,
|
& .userName,
|
||||||
& .userNameFull {
|
& .userNameFull {
|
||||||
box-shadow: 0 -5px 3px -4px inset var(--____highlight-solidColor);
|
box-shadow: 0 -5px 3px -4px inset var(--____highlight-solidColor);
|
||||||
}
|
}
|
||||||
@@ -104,12 +88,4 @@
|
|||||||
opacity: 1;
|
opacity: 1;
|
||||||
pointer-events: initial;
|
pointer-events: initial;
|
||||||
}
|
}
|
||||||
|
|
||||||
.serverName.-faded {
|
|
||||||
color: var(--faintLink, $fallback--link);
|
|
||||||
}
|
|
||||||
|
|
||||||
.full .-faded {
|
|
||||||
color: var(--faint, $fallback--faint);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,9 @@
|
|||||||
class="original"
|
class="original"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
v-html="content"
|
v-html="content"
|
||||||
/><!-- eslint-enable vue/no-v-html --><span
|
/>
|
||||||
|
<!-- eslint-enable vue/no-v-html -->
|
||||||
|
<span
|
||||||
v-if="user"
|
v-if="user"
|
||||||
class="new"
|
class="new"
|
||||||
:style="style"
|
:style="style"
|
||||||
@@ -17,45 +19,33 @@
|
|||||||
>
|
>
|
||||||
<a
|
<a
|
||||||
class="short button-unstyled"
|
class="short button-unstyled"
|
||||||
:class="{ '-with-tooltip': shouldShowTooltip }"
|
|
||||||
:href="url"
|
:href="url"
|
||||||
@click.prevent="onClick"
|
@click.prevent="onClick"
|
||||||
>
|
>
|
||||||
<!-- eslint-disable vue/no-v-html -->
|
<!-- eslint-disable vue/no-v-html -->
|
||||||
<span class="shortName">@<span
|
<FAIcon
|
||||||
|
size="sm"
|
||||||
|
icon="at"
|
||||||
|
class="at"
|
||||||
|
/><span class="shortName"><span
|
||||||
class="userName"
|
class="userName"
|
||||||
v-html="userName"
|
v-html="userName"
|
||||||
/><span
|
/></span>
|
||||||
v-if="shouldShowFullUserName"
|
|
||||||
class="serverName"
|
|
||||||
:class="{ '-faded': shouldFadeDomain }"
|
|
||||||
v-html="'@' + serverName"
|
|
||||||
/>
|
|
||||||
</span>
|
|
||||||
<span
|
<span
|
||||||
v-if="isYou && shouldShowYous"
|
v-if="isYou"
|
||||||
:class="{ '-you': shouldBoldenYou }"
|
class="you"
|
||||||
> {{ ' ' + $t('status.you') }}</span>
|
>{{ $t('status.you') }}</span>
|
||||||
<!-- eslint-enable vue/no-v-html -->
|
<!-- eslint-enable vue/no-v-html -->
|
||||||
</a><span
|
</a>
|
||||||
v-if="shouldShowTooltip"
|
<span
|
||||||
|
v-if="userName !== userNameFull"
|
||||||
class="full popover-default"
|
class="full popover-default"
|
||||||
:class="[highlightType]"
|
:class="[highlightType]"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="userNameFull"
|
class="userNameFull"
|
||||||
>
|
v-text="'@' + userNameFull"
|
||||||
<!-- eslint-disable vue/no-v-html -->
|
/>
|
||||||
@<span
|
|
||||||
class="userName"
|
|
||||||
v-html="userName"
|
|
||||||
/><span
|
|
||||||
class="serverName"
|
|
||||||
:class="{ '-faded': shouldFadeDomain }"
|
|
||||||
v-html="'@' + serverName"
|
|
||||||
/>
|
|
||||||
<!-- eslint-enable vue/no-v-html -->
|
|
||||||
</span>
|
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
@@ -1,13 +1,11 @@
|
|||||||
.MentionsLine {
|
.MentionsLine {
|
||||||
word-break: break-all;
|
|
||||||
|
|
||||||
.mention-link:not(:first-child)::before {
|
|
||||||
content: ' ';
|
|
||||||
}
|
|
||||||
|
|
||||||
.showMoreLess {
|
.showMoreLess {
|
||||||
margin-left: 0.5em;
|
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
color: var(--link);
|
color: var(--link);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.fullExtraMentions,
|
||||||
|
.mention-link:not(:last-child) {
|
||||||
|
margin-right: 0.25em;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
class="mention-link"
|
class="mention-link"
|
||||||
:content="mention.content"
|
:content="mention.content"
|
||||||
:url="mention.url"
|
:url="mention.url"
|
||||||
|
:first-mention="false"
|
||||||
/><span
|
/><span
|
||||||
v-if="manyMentions"
|
v-if="manyMentions"
|
||||||
class="extraMentions"
|
class="extraMentions"
|
||||||
@@ -20,6 +21,7 @@
|
|||||||
class="mention-link"
|
class="mention-link"
|
||||||
:content="mention.content"
|
:content="mention.content"
|
||||||
:url="mention.url"
|
:url="mention.url"
|
||||||
|
:first-mention="false"
|
||||||
/>
|
/>
|
||||||
</span><button
|
</span><button
|
||||||
v-if="!expanded"
|
v-if="!expanded"
|
||||||
|
|||||||
@@ -56,15 +56,11 @@
|
|||||||
>
|
>
|
||||||
<div class="alert error">
|
<div class="alert error">
|
||||||
{{ error }}
|
{{ error }}
|
||||||
<button
|
<FAIcon
|
||||||
class="button-unstyled"
|
class="fa-scale-110 fa-old-padding"
|
||||||
|
icon="times"
|
||||||
@click="clearError"
|
@click="clearError"
|
||||||
>
|
/>
|
||||||
<FAIcon
|
|
||||||
class="fa-scale-110 fa-old-padding"
|
|
||||||
icon="times"
|
|
||||||
/>
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -58,16 +58,12 @@
|
|||||||
>
|
>
|
||||||
<div class="alert error">
|
<div class="alert error">
|
||||||
{{ error }}
|
{{ error }}
|
||||||
<button
|
<FAIcon
|
||||||
class="button-unstyled"
|
size="lg"
|
||||||
|
class="fa-scale-110 fa-old-padding"
|
||||||
|
icon="times"
|
||||||
@click="clearError"
|
@click="clearError"
|
||||||
>
|
/>
|
||||||
<FAIcon
|
|
||||||
size="lg"
|
|
||||||
class="fa-scale-110 fa-old-padding"
|
|
||||||
icon="times"
|
|
||||||
/>
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,279 +0,0 @@
|
|||||||
import { defineComponent, h } from 'vue'
|
|
||||||
import * as mfm from 'mfm-js'
|
|
||||||
import MentionLink from '../mention_link/mention_link.vue'
|
|
||||||
import mention_link from '../mention_link/mention_link'
|
|
||||||
|
|
||||||
function concat (xss) {
|
|
||||||
return ([]).concat(...xss)
|
|
||||||
}
|
|
||||||
|
|
||||||
export const MFM_TAGS = ['tada', 'jelly', 'twitch', 'shake', 'spin', 'jump', 'bounce', 'flip', 'x2', 'x3', 'x4', 'font', 'blur', 'rainbow', 'sparkle', 'rotate']
|
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
props: {
|
|
||||||
status: {
|
|
||||||
type: Object,
|
|
||||||
required: true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
render () {
|
|
||||||
if (!this.status) return null
|
|
||||||
const ast = mfm.parse(this.status.mfm_content, { fnNameList: MFM_TAGS })
|
|
||||||
const validTime = (t) => {
|
|
||||||
if (t == null) return null
|
|
||||||
return t.match(/^[0-9.]+s$/) ? t : null
|
|
||||||
}
|
|
||||||
|
|
||||||
const genEl = (ast) => concat(ast.map((token) => {
|
|
||||||
switch (token.type) {
|
|
||||||
case 'text': {
|
|
||||||
const text = token.props.text.replace(/(\r\n|\n|\r)/g, '\n')
|
|
||||||
|
|
||||||
const res = []
|
|
||||||
for (const t of text.split('\n')) {
|
|
||||||
res.push(h('br'))
|
|
||||||
res.push(t)
|
|
||||||
}
|
|
||||||
res.shift()
|
|
||||||
return res
|
|
||||||
}
|
|
||||||
|
|
||||||
case 'bold': {
|
|
||||||
return [h('b', genEl(token.children))]
|
|
||||||
}
|
|
||||||
|
|
||||||
case 'strike': {
|
|
||||||
return [h('del', genEl(token.children))]
|
|
||||||
}
|
|
||||||
|
|
||||||
case 'italic': {
|
|
||||||
return h('i', {
|
|
||||||
style: 'font-style: oblique;'
|
|
||||||
}, genEl(token.children))
|
|
||||||
}
|
|
||||||
|
|
||||||
case 'fn': {
|
|
||||||
// TODO: CSSを文字列で組み立てていくと token.props.args.~~~ 経由でCSSインジェクションできるのでよしなにやる
|
|
||||||
let style
|
|
||||||
switch (token.props.name) {
|
|
||||||
case 'tada': {
|
|
||||||
style = `font-size: 150%;` + 'animation: tada 1s linear infinite both;'
|
|
||||||
break
|
|
||||||
}
|
|
||||||
case 'jelly': {
|
|
||||||
const speed = validTime(token.props.args.speed) || '1s'
|
|
||||||
style = `animation: mfm-rubberBand ${speed} linear infinite both;`
|
|
||||||
break
|
|
||||||
}
|
|
||||||
case 'twitch': {
|
|
||||||
const speed = validTime(token.props.args.speed) || '0.5s'
|
|
||||||
style = `animation: mfm-twitch ${speed} ease infinite;`
|
|
||||||
break
|
|
||||||
}
|
|
||||||
case 'shake': {
|
|
||||||
const speed = validTime(token.props.args.speed) || '0.5s'
|
|
||||||
style = `animation: mfm-shake ${speed} ease infinite;`
|
|
||||||
break
|
|
||||||
}
|
|
||||||
case 'spin': {
|
|
||||||
const direction =
|
|
||||||
token.props.args.left ? 'reverse'
|
|
||||||
: token.props.args.alternate ? 'alternate'
|
|
||||||
: 'normal'
|
|
||||||
const anime =
|
|
||||||
token.props.args.x ? 'mfm-spinX'
|
|
||||||
: token.props.args.y ? 'mfm-spinY'
|
|
||||||
: 'mfm-spin'
|
|
||||||
const speed = validTime(token.props.args.speed) || '1.5s'
|
|
||||||
style = `animation: ${anime} ${speed} linear infinite; animation-direction: ${direction};`
|
|
||||||
break
|
|
||||||
}
|
|
||||||
case 'jump': {
|
|
||||||
style = 'animation: mfm-jump 0.75s linear infinite;'
|
|
||||||
break
|
|
||||||
}
|
|
||||||
case 'bounce': {
|
|
||||||
style = 'animation: mfm-bounce 0.75s linear infinite; transform-origin: center bottom;'
|
|
||||||
break
|
|
||||||
}
|
|
||||||
case 'flip': {
|
|
||||||
const transform =
|
|
||||||
(token.props.args.h && token.props.args.v) ? 'scale(-1, -1)'
|
|
||||||
: token.props.args.v ? 'scaleY(-1)'
|
|
||||||
: 'scaleX(-1)'
|
|
||||||
style = `transform: ${transform};`
|
|
||||||
break
|
|
||||||
}
|
|
||||||
case 'x2': {
|
|
||||||
style = `font-size: 200%;`
|
|
||||||
break
|
|
||||||
}
|
|
||||||
case 'x3': {
|
|
||||||
style = `font-size: 400%;`
|
|
||||||
break
|
|
||||||
}
|
|
||||||
case 'x4': {
|
|
||||||
style = `font-size: 600%;`
|
|
||||||
break
|
|
||||||
}
|
|
||||||
case 'font': {
|
|
||||||
const family =
|
|
||||||
token.props.args.serif ? 'serif'
|
|
||||||
: token.props.args.monospace ? 'monospace'
|
|
||||||
: token.props.args.cursive ? 'cursive'
|
|
||||||
: token.props.args.fantasy ? 'fantasy'
|
|
||||||
: token.props.args.emoji ? 'emoji'
|
|
||||||
: token.props.args.math ? 'math'
|
|
||||||
: null
|
|
||||||
if (family) style = `font-family: ${family};`
|
|
||||||
break
|
|
||||||
}
|
|
||||||
case 'blur': {
|
|
||||||
return h('span', {
|
|
||||||
class: '_mfm_blur_'
|
|
||||||
}, genEl(token.children))
|
|
||||||
}
|
|
||||||
case 'rainbow': {
|
|
||||||
style = 'animation: mfm-rainbow 1s linear infinite;'
|
|
||||||
break
|
|
||||||
}
|
|
||||||
case 'sparkle': {
|
|
||||||
return h(MkSparkle, {}, genEl(token.children))
|
|
||||||
}
|
|
||||||
case 'rotate': {
|
|
||||||
const degrees = parseInt(token.props.args.deg) || '90'
|
|
||||||
style = `transform: rotate(${degrees}deg); transform-origin: center center;`
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (style == null) {
|
|
||||||
return h('span', {}, ['$[', token.props.name, ' ', ...genEl(token.children), ']'])
|
|
||||||
} else {
|
|
||||||
return h('span', {
|
|
||||||
style: 'display: inline-block;' + style
|
|
||||||
}, genEl(token.children))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
case 'small': {
|
|
||||||
return [h('small', {
|
|
||||||
style: 'opacity: 0.7;'
|
|
||||||
}, genEl(token.children))]
|
|
||||||
}
|
|
||||||
|
|
||||||
case 'center': {
|
|
||||||
return [h('div', {
|
|
||||||
style: 'text-align:center;'
|
|
||||||
}, genEl(token.children))]
|
|
||||||
}
|
|
||||||
|
|
||||||
case 'url': {
|
|
||||||
return [h('a', {
|
|
||||||
key: Math.random(),
|
|
||||||
href: token.props.url,
|
|
||||||
rel: 'nofollow noopener'
|
|
||||||
}, token.props.url)]
|
|
||||||
}
|
|
||||||
|
|
||||||
case 'link': {
|
|
||||||
console.log(token.props)
|
|
||||||
return [h('a', {
|
|
||||||
key: Math.random(),
|
|
||||||
href: token.props.url,
|
|
||||||
rel: 'nofollow noopener'
|
|
||||||
}, genEl(token.children))]
|
|
||||||
}
|
|
||||||
|
|
||||||
case 'mention': {
|
|
||||||
const user = this.status.attentions.find((mention) => `@${mention.screen_name}` === token.props.acct || mention.screen_name === token.props.username)
|
|
||||||
if (user) {
|
|
||||||
return [h(MentionLink, {
|
|
||||||
url: user.statusnet_profile_url,
|
|
||||||
content: token.props.acct,
|
|
||||||
userScreenName: token.props.acct
|
|
||||||
})]
|
|
||||||
}
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
|
|
||||||
case 'hashtag': {
|
|
||||||
return [h('a', {
|
|
||||||
rel: 'noopener noreferrer',
|
|
||||||
target: '_blank',
|
|
||||||
key: token.props.hashtag,
|
|
||||||
href: this.status.tags.find((hash) => hash.name === token.props.hashtag).url
|
|
||||||
}, `#${token.props.hashtag}`)]
|
|
||||||
}
|
|
||||||
|
|
||||||
case 'blockCode': {
|
|
||||||
return [h('pre', {
|
|
||||||
key: Math.random(),
|
|
||||||
lang: token.props.lang
|
|
||||||
}, token.props.code)]
|
|
||||||
}
|
|
||||||
|
|
||||||
case 'inlineCode': {
|
|
||||||
return [h('pre', {
|
|
||||||
key: Math.random(),
|
|
||||||
code: token.props.code,
|
|
||||||
inline: true
|
|
||||||
})]
|
|
||||||
}
|
|
||||||
|
|
||||||
case 'quote': {
|
|
||||||
if (!this.nowrap) {
|
|
||||||
return [h('div', {
|
|
||||||
class: 'quote'
|
|
||||||
}, genEl(token.children))]
|
|
||||||
} else {
|
|
||||||
return [h('span', {
|
|
||||||
class: 'quote'
|
|
||||||
}, genEl(token.children))]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
case 'emojiCode': {
|
|
||||||
return [h('div', {
|
|
||||||
class: 'still-image emoji img'
|
|
||||||
},
|
|
||||||
[h('img', {
|
|
||||||
key: Math.random(),
|
|
||||||
title: token.props.name,
|
|
||||||
alt: token.props.name,
|
|
||||||
src: this.status.emojis.find((emoji) => emoji.shortcode === token.props.name).static_url
|
|
||||||
})]
|
|
||||||
)]
|
|
||||||
}
|
|
||||||
|
|
||||||
case 'unicodeEmoji': {
|
|
||||||
return token.props.emoji
|
|
||||||
}
|
|
||||||
|
|
||||||
case 'math': {
|
|
||||||
return [h('pre', {
|
|
||||||
key: Math.random(),
|
|
||||||
code: token.props.code
|
|
||||||
})]
|
|
||||||
}
|
|
||||||
|
|
||||||
case 'mathInline': {
|
|
||||||
return [h('pre', {
|
|
||||||
key: Math.random(),
|
|
||||||
code: token.props.code,
|
|
||||||
inline: true
|
|
||||||
})]
|
|
||||||
}
|
|
||||||
|
|
||||||
default: {
|
|
||||||
console.error('unrecognized ast type:', token.type)
|
|
||||||
|
|
||||||
return []
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}))
|
|
||||||
|
|
||||||
// Parse ast to DOM
|
|
||||||
return h('span', genEl(ast))
|
|
||||||
}
|
|
||||||
})
|
|
||||||
@@ -78,8 +78,7 @@ const MobileNav = {
|
|||||||
this.$store.dispatch('logout')
|
this.$store.dispatch('logout')
|
||||||
},
|
},
|
||||||
markNotificationsAsSeen () {
|
markNotificationsAsSeen () {
|
||||||
// this.$refs.notifications.markAsSeen()
|
this.$refs.notifications.markAsSeen()
|
||||||
this.$store.dispatch('markNotificationsAsSeen')
|
|
||||||
},
|
},
|
||||||
onScroll ({ target: { scrollTop, clientHeight, scrollHeight } }) {
|
onScroll ({ target: { scrollTop, clientHeight, scrollHeight } }) {
|
||||||
if (scrollTop + clientHeight >= scrollHeight) {
|
if (scrollTop + clientHeight >= scrollHeight) {
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
<nav
|
<nav
|
||||||
id="nav"
|
id="nav"
|
||||||
class="mobile-nav"
|
class="mobile-nav"
|
||||||
|
:class="{ 'mobile-hidden': isChat }"
|
||||||
@click="scrollToTop()"
|
@click="scrollToTop()"
|
||||||
>
|
>
|
||||||
<div class="item">
|
<div class="item">
|
||||||
@@ -50,7 +51,7 @@
|
|||||||
<div
|
<div
|
||||||
v-if="currentUser"
|
v-if="currentUser"
|
||||||
class="mobile-notifications-drawer"
|
class="mobile-notifications-drawer"
|
||||||
:class="{ '-closed': !notificationsOpen }"
|
:class="{ 'closed': !notificationsOpen }"
|
||||||
@touchstart.stop="notificationsTouchStart"
|
@touchstart.stop="notificationsTouchStart"
|
||||||
@touchmove.stop="notificationsTouchMove"
|
@touchmove.stop="notificationsTouchMove"
|
||||||
>
|
>
|
||||||
@@ -67,10 +68,14 @@
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
id="mobile-notifications"
|
|
||||||
class="mobile-notifications"
|
class="mobile-notifications"
|
||||||
@scroll="onScroll"
|
@scroll="onScroll"
|
||||||
/>
|
>
|
||||||
|
<Notifications
|
||||||
|
ref="notifications"
|
||||||
|
:no-heading="true"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<SideDrawer
|
<SideDrawer
|
||||||
ref="sideDrawer"
|
ref="sideDrawer"
|
||||||
@@ -87,14 +92,13 @@
|
|||||||
.MobileNav {
|
.MobileNav {
|
||||||
.mobile-nav {
|
.mobile-nav {
|
||||||
display: grid;
|
display: grid;
|
||||||
line-height: var(--navbar-height);
|
line-height: 50px;
|
||||||
|
height: 50px;
|
||||||
grid-template-rows: 50px;
|
grid-template-rows: 50px;
|
||||||
grid-template-columns: 2fr auto;
|
grid-template-columns: 2fr auto;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
position: fixed;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
a {
|
|
||||||
color: var(--topBarLink, $fallback--link);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.mobile-inner-nav {
|
.mobile-inner-nav {
|
||||||
@@ -149,9 +153,8 @@
|
|||||||
z-index: 1001;
|
z-index: 1001;
|
||||||
-webkit-overflow-scrolling: touch;
|
-webkit-overflow-scrolling: touch;
|
||||||
|
|
||||||
&.-closed {
|
&.closed {
|
||||||
transform: translateX(100%);
|
transform: translateX(100%);
|
||||||
box-shadow: none;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -179,7 +182,7 @@
|
|||||||
.mobile-notifications {
|
.mobile-notifications {
|
||||||
margin-top: 50px;
|
margin-top: 50px;
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
height: calc(100vh - var(--navbar-height));
|
height: calc(100vh - 50px);
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
|
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ const MobilePostStatusButton = {
|
|||||||
}
|
}
|
||||||
window.addEventListener('resize', this.handleOSK)
|
window.addEventListener('resize', this.handleOSK)
|
||||||
},
|
},
|
||||||
unmounted () {
|
destroyed () {
|
||||||
if (this.autohideFloatingPostButton) {
|
if (this.autohideFloatingPostButton) {
|
||||||
this.deactivateFloatingPostButtonAutohide()
|
this.deactivateFloatingPostButtonAutohide()
|
||||||
}
|
}
|
||||||
@@ -45,7 +45,7 @@ const MobilePostStatusButton = {
|
|||||||
return this.autohideFloatingPostButton && (this.hidden || this.inputActive)
|
return this.autohideFloatingPostButton && (this.hidden || this.inputActive)
|
||||||
},
|
},
|
||||||
isPersistent () {
|
isPersistent () {
|
||||||
return !!this.$store.getters.mergedConfig.alwaysShowNewPostButton
|
return !!this.$store.getters.mergedConfig.showNewPostButton
|
||||||
},
|
},
|
||||||
autohideFloatingPostButton () {
|
autohideFloatingPostButton () {
|
||||||
return !!this.$store.getters.mergedConfig.autohideFloatingPostButton
|
return !!this.$store.getters.mergedConfig.autohideFloatingPostButton
|
||||||
|
|||||||
@@ -1,12 +1,13 @@
|
|||||||
<template>
|
<template>
|
||||||
<button
|
<div v-if="isLoggedIn">
|
||||||
v-if="isLoggedIn"
|
<button
|
||||||
class="MobilePostButton button-default new-status-button"
|
class="button-default new-status-button"
|
||||||
:class="{ 'hidden': isHidden, 'always-show': isPersistent }"
|
:class="{ 'hidden': isHidden, 'always-show': isPersistent }"
|
||||||
@click="openPostForm"
|
@click="openPostForm"
|
||||||
>
|
>
|
||||||
<FAIcon icon="pen" />
|
<FAIcon icon="pen" />
|
||||||
</button>
|
</button>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script src="./mobile_post_status_button.js"></script>
|
<script src="./mobile_post_status_button.js"></script>
|
||||||
@@ -14,27 +15,25 @@
|
|||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
@import '../../_variables.scss';
|
@import '../../_variables.scss';
|
||||||
|
|
||||||
.MobilePostButton {
|
.new-status-button {
|
||||||
&.button-default {
|
width: 5em;
|
||||||
width: 5em;
|
height: 5em;
|
||||||
height: 5em;
|
border-radius: 100%;
|
||||||
border-radius: 100%;
|
position: fixed;
|
||||||
position: fixed;
|
bottom: 1.5em;
|
||||||
bottom: 1.5em;
|
right: 1.5em;
|
||||||
right: 1.5em;
|
// TODO: this needs its own color, it has to stand out enough and link color
|
||||||
// TODO: this needs its own color, it has to stand out enough and link color
|
// is not very optimal for this particular use.
|
||||||
// is not very optimal for this particular use.
|
background-color: $fallback--fg;
|
||||||
background-color: $fallback--fg;
|
background-color: var(--btn, $fallback--fg);
|
||||||
background-color: var(--btn, $fallback--fg);
|
display: flex;
|
||||||
display: flex;
|
justify-content: center;
|
||||||
justify-content: center;
|
align-items: center;
|
||||||
align-items: center;
|
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3), 0px 4px 6px rgba(0, 0, 0, 0.3);
|
||||||
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3), 0px 4px 6px rgba(0, 0, 0, 0.3);
|
z-index: 10;
|
||||||
z-index: 10;
|
|
||||||
|
|
||||||
transition: 0.35s transform;
|
transition: 0.35s transform;
|
||||||
transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
|
transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
|
||||||
}
|
|
||||||
|
|
||||||
&.hidden {
|
&.hidden {
|
||||||
transform: translateY(150%);
|
transform: translateY(150%);
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ export default {
|
|||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.modal-view {
|
.modal-view {
|
||||||
z-index: 2000;
|
z-index: 1000;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
|||||||
@@ -132,7 +132,7 @@
|
|||||||
</button>
|
</button>
|
||||||
</template>
|
</template>
|
||||||
</Popover>
|
</Popover>
|
||||||
<teleport to="#modal">
|
<portal to="modal">
|
||||||
<DialogModal
|
<DialogModal
|
||||||
v-if="showDeleteUserDialog"
|
v-if="showDeleteUserDialog"
|
||||||
:on-cancel="deleteUserDialog.bind(this, false)"
|
:on-cancel="deleteUserDialog.bind(this, false)"
|
||||||
@@ -156,7 +156,7 @@
|
|||||||
</button>
|
</button>
|
||||||
</template>
|
</template>
|
||||||
</DialogModal>
|
</DialogModal>
|
||||||
</teleport>
|
</portal>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
@@ -1,25 +1,8 @@
|
|||||||
@import '../../_variables.scss';
|
@import '../../_variables.scss';
|
||||||
|
|
||||||
.notification-reaction-emoji {
|
|
||||||
width: 40px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO Copypaste from Status, should unify it somehow
|
// TODO Copypaste from Status, should unify it somehow
|
||||||
.Notification {
|
.Notification {
|
||||||
border-bottom: 1px solid;
|
--emoji-size: 14px;
|
||||||
border-color: $fallback--border;
|
|
||||||
border-color: var(--border, $fallback--border);
|
|
||||||
word-wrap: break-word;
|
|
||||||
word-break: break-word;
|
|
||||||
--emoji-size: 14px;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
--_still-image-img-visibility: visible;
|
|
||||||
--_still-image-canvas-visibility: hidden;
|
|
||||||
--_still-image-label-visibility: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.-muted {
|
&.-muted {
|
||||||
padding: 0.25em 0.6em;
|
padding: 0.25em 0.6em;
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<Status
|
<Status
|
||||||
v-if="notification.type === 'mention'"
|
v-if="notification.type === 'mention'"
|
||||||
class="Notification"
|
|
||||||
:compact="true"
|
:compact="true"
|
||||||
:statusoid="notification.status"
|
:statusoid="notification.status"
|
||||||
/>
|
/>
|
||||||
@@ -33,7 +32,7 @@
|
|||||||
>
|
>
|
||||||
<a
|
<a
|
||||||
class="avatar-container"
|
class="avatar-container"
|
||||||
:href="$router.resolve(userProfileLink).href"
|
:href="notification.from_profile.statusnet_profile_url"
|
||||||
@click.stop.prevent.capture="toggleUserExpanded"
|
@click.stop.prevent.capture="toggleUserExpanded"
|
||||||
>
|
>
|
||||||
<UserAvatar
|
<UserAvatar
|
||||||
@@ -65,16 +64,12 @@
|
|||||||
v-else
|
v-else
|
||||||
class="username"
|
class="username"
|
||||||
:title="'@'+notification.from_profile.screen_name_ui"
|
:title="'@'+notification.from_profile.screen_name_ui"
|
||||||
>
|
>{{ notification.from_profile.name }}</span>
|
||||||
{{ notification.from_profile.name }}
|
|
||||||
</span>
|
|
||||||
{{ ' ' }}
|
|
||||||
<span v-if="notification.type === 'like'">
|
<span v-if="notification.type === 'like'">
|
||||||
<FAIcon
|
<FAIcon
|
||||||
class="type-icon"
|
class="type-icon"
|
||||||
icon="star"
|
icon="star"
|
||||||
/>
|
/>
|
||||||
{{ ' ' }}
|
|
||||||
<small>{{ $t('notifications.favorited_you') }}</small>
|
<small>{{ $t('notifications.favorited_you') }}</small>
|
||||||
</span>
|
</span>
|
||||||
<span v-if="notification.type === 'repeat'">
|
<span v-if="notification.type === 'repeat'">
|
||||||
@@ -83,7 +78,6 @@
|
|||||||
icon="retweet"
|
icon="retweet"
|
||||||
:title="$t('tool_tip.repeat')"
|
:title="$t('tool_tip.repeat')"
|
||||||
/>
|
/>
|
||||||
{{ ' ' }}
|
|
||||||
<small>{{ $t('notifications.repeated_you') }}</small>
|
<small>{{ $t('notifications.repeated_you') }}</small>
|
||||||
</span>
|
</span>
|
||||||
<span v-if="notification.type === 'follow'">
|
<span v-if="notification.type === 'follow'">
|
||||||
@@ -91,7 +85,6 @@
|
|||||||
class="type-icon"
|
class="type-icon"
|
||||||
icon="user-plus"
|
icon="user-plus"
|
||||||
/>
|
/>
|
||||||
{{ ' ' }}
|
|
||||||
<small>{{ $t('notifications.followed_you') }}</small>
|
<small>{{ $t('notifications.followed_you') }}</small>
|
||||||
</span>
|
</span>
|
||||||
<span v-if="notification.type === 'follow_request'">
|
<span v-if="notification.type === 'follow_request'">
|
||||||
@@ -99,7 +92,6 @@
|
|||||||
class="type-icon"
|
class="type-icon"
|
||||||
icon="user"
|
icon="user"
|
||||||
/>
|
/>
|
||||||
{{ ' ' }}
|
|
||||||
<small>{{ $t('notifications.follow_request') }}</small>
|
<small>{{ $t('notifications.follow_request') }}</small>
|
||||||
</span>
|
</span>
|
||||||
<span v-if="notification.type === 'move'">
|
<span v-if="notification.type === 'move'">
|
||||||
@@ -107,38 +99,15 @@
|
|||||||
class="type-icon"
|
class="type-icon"
|
||||||
icon="suitcase-rolling"
|
icon="suitcase-rolling"
|
||||||
/>
|
/>
|
||||||
{{ ' ' }}
|
|
||||||
<small>{{ $t('notifications.migrated_to') }}</small>
|
<small>{{ $t('notifications.migrated_to') }}</small>
|
||||||
</span>
|
</span>
|
||||||
<span v-if="notification.type === 'pleroma:emoji_reaction'">
|
<span v-if="notification.type === 'pleroma:emoji_reaction'">
|
||||||
<small>
|
<small>
|
||||||
<i18n-t
|
<i18n path="notifications.reacted_with">
|
||||||
scope="global"
|
<span class="emoji-reaction-emoji">{{ notification.emoji }}</span>
|
||||||
keypath="notifications.reacted_with"
|
</i18n>
|
||||||
>
|
|
||||||
<img
|
|
||||||
v-if="notification.emoji_url !== null"
|
|
||||||
class="notification-reaction-emoji"
|
|
||||||
:src="notification.emoji_url"
|
|
||||||
:name="notification.emoji"
|
|
||||||
>
|
|
||||||
<span
|
|
||||||
v-else
|
|
||||||
class="emoji-reaction-emoji"
|
|
||||||
>
|
|
||||||
{{ notification.emoji }}
|
|
||||||
</span>
|
|
||||||
</i18n-t>
|
|
||||||
</small>
|
</small>
|
||||||
</span>
|
</span>
|
||||||
<span v-if="notification.type === 'poll'">
|
|
||||||
<FAIcon
|
|
||||||
class="type-icon"
|
|
||||||
icon="poll-h"
|
|
||||||
/>
|
|
||||||
{{ ' ' }}
|
|
||||||
<small>{{ $t('notifications.poll_ended') }}</small>
|
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
v-if="isStatusNotification"
|
v-if="isStatusNotification"
|
||||||
@@ -191,26 +160,18 @@
|
|||||||
v-if="notification.type === 'follow_request'"
|
v-if="notification.type === 'follow_request'"
|
||||||
style="white-space: nowrap;"
|
style="white-space: nowrap;"
|
||||||
>
|
>
|
||||||
<button
|
<FAIcon
|
||||||
class="button-unstyled"
|
icon="check"
|
||||||
|
class="fa-scale-110 fa-old-padding follow-request-accept"
|
||||||
:title="$t('tool_tip.accept_follow_request')"
|
:title="$t('tool_tip.accept_follow_request')"
|
||||||
@click="approveUser()"
|
@click="approveUser()"
|
||||||
>
|
/>
|
||||||
<FAIcon
|
<FAIcon
|
||||||
icon="check"
|
icon="times"
|
||||||
class="fa-scale-110 fa-old-padding follow-request-accept"
|
class="fa-scale-110 fa-old-padding follow-request-reject"
|
||||||
/>
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
class="button-unstyled"
|
|
||||||
:title="$t('tool_tip.reject_follow_request')"
|
:title="$t('tool_tip.reject_follow_request')"
|
||||||
@click="denyUser()"
|
@click="denyUser()"
|
||||||
>
|
/>
|
||||||
<FAIcon
|
|
||||||
icon="times"
|
|
||||||
class="fa-scale-110 fa-old-padding follow-request-reject"
|
|
||||||
/>
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
@@ -222,9 +183,8 @@
|
|||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<StatusContent
|
<status-content
|
||||||
class="faint"
|
class="faint"
|
||||||
:compact="true"
|
|
||||||
:status="notification.action"
|
:status="notification.action"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -61,19 +61,10 @@
|
|||||||
:class="{ 'menu-checkbox-checked': filters.moves }"
|
:class="{ 'menu-checkbox-checked': filters.moves }"
|
||||||
/>{{ $t('settings.notification_visibility_moves') }}
|
/>{{ $t('settings.notification_visibility_moves') }}
|
||||||
</button>
|
</button>
|
||||||
<button
|
|
||||||
class="button-default dropdown-item"
|
|
||||||
@click="toggleNotificationFilter('polls')"
|
|
||||||
>
|
|
||||||
<span
|
|
||||||
class="menu-checkbox"
|
|
||||||
:class="{ 'menu-checkbox-checked': filters.polls }"
|
|
||||||
/>{{ $t('settings.notification_visibility_polls') }}
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<template v-slot:trigger>
|
<template v-slot:trigger>
|
||||||
<button class="filter-trigger-button button-unstyled">
|
<button class="button-unstyled">
|
||||||
<FAIcon icon="filter" />
|
<FAIcon icon="filter" />
|
||||||
</button>
|
</button>
|
||||||
</template>
|
</template>
|
||||||
@@ -116,14 +107,15 @@ export default {
|
|||||||
align-self: stretch;
|
align-self: stretch;
|
||||||
|
|
||||||
> button {
|
> button {
|
||||||
|
font-size: 1.2em;
|
||||||
|
padding-left: 0.7em;
|
||||||
|
padding-right: 0.2em;
|
||||||
line-height: 100%;
|
line-height: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: var(--__panel-heading-height-inner);
|
}
|
||||||
text-align: center;
|
|
||||||
|
|
||||||
svg {
|
.dropdown-item {
|
||||||
font-size: 1.2em;
|
margin: 0;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -23,13 +23,13 @@ const Notifications = {
|
|||||||
NotificationFilters
|
NotificationFilters
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
|
// Disables display of panel header
|
||||||
|
noHeading: Boolean,
|
||||||
// Disables panel styles, unread mark, potentially other notification-related actions
|
// Disables panel styles, unread mark, potentially other notification-related actions
|
||||||
// meant for "Interactions" timeline
|
// meant for "Interactions" timeline
|
||||||
minimalMode: Boolean,
|
minimalMode: Boolean,
|
||||||
// Custom filter mode, an array of strings, possible values 'mention', 'repeat', 'like', 'follow', used to override global filter for use in "Interactions" timeline
|
// Custom filter mode, an array of strings, possible values 'mention', 'repeat', 'like', 'follow', used to override global filter for use in "Interactions" timeline
|
||||||
filterMode: Array,
|
filterMode: Array
|
||||||
// Disable teleporting (i.e. for /users/user/notifications)
|
|
||||||
disableTeleport: Boolean
|
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
@@ -65,18 +65,6 @@ const Notifications = {
|
|||||||
loading () {
|
loading () {
|
||||||
return this.$store.state.statuses.notifications.loading
|
return this.$store.state.statuses.notifications.loading
|
||||||
},
|
},
|
||||||
noHeading () {
|
|
||||||
const { layoutType } = this.$store.state.interface
|
|
||||||
return this.minimalMode || layoutType === 'mobile'
|
|
||||||
},
|
|
||||||
teleportTarget () {
|
|
||||||
const { layoutType } = this.$store.state.interface
|
|
||||||
const map = {
|
|
||||||
wide: '#notifs-column',
|
|
||||||
mobile: '#mobile-notifications'
|
|
||||||
}
|
|
||||||
return map[layoutType] || '#notifs-sidebar'
|
|
||||||
},
|
|
||||||
notificationsToDisplay () {
|
notificationsToDisplay () {
|
||||||
return this.filteredNotifications.slice(0, this.unseenCount + this.seenToDisplayCount)
|
return this.filteredNotifications.slice(0, this.unseenCount + this.seenToDisplayCount)
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -11,6 +11,10 @@
|
|||||||
color: var(--text, $fallback--text);
|
color: var(--text, $fallback--text);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.notifications-footer {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
.notification {
|
.notification {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
@@ -33,6 +37,11 @@
|
|||||||
|
|
||||||
.notification {
|
.notification {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
border-bottom: 1px solid;
|
||||||
|
border-color: $fallback--border;
|
||||||
|
border-color: var(--border, $fallback--border);
|
||||||
|
word-wrap: break-word;
|
||||||
|
word-break: break-word;
|
||||||
|
|
||||||
&:hover .animated.Avatar {
|
&:hover .animated.Avatar {
|
||||||
canvas {
|
canvas {
|
||||||
@@ -43,10 +52,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&:last-child .Notification {
|
|
||||||
border-bottom: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.non-mention {
|
.non-mention {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
@@ -64,6 +69,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.follow-request-accept {
|
.follow-request-accept {
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: $fallback--text;
|
color: $fallback--text;
|
||||||
color: var(--text, $fallback--text);
|
color: var(--text, $fallback--text);
|
||||||
@@ -71,6 +78,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.follow-request-reject {
|
.follow-request-reject {
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: $fallback--cRed;
|
color: $fallback--cRed;
|
||||||
color: var(--cRed, $fallback--cRed);
|
color: var(--cRed, $fallback--cRed);
|
||||||
@@ -113,13 +122,13 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.emoji-reaction-emoji {
|
.emoji-reaction-emoji {
|
||||||
font-size: 1.3em;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.notification-details {
|
.notification-details {
|
||||||
min-width: 0;
|
min-width: 0px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
line-height: var(--post-line-height);
|
line-height:18px;
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@@ -142,7 +151,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.timeago {
|
.timeago {
|
||||||
margin-right: 0.2em;
|
margin-right: .2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-content {
|
.status-content {
|
||||||
@@ -155,8 +164,7 @@
|
|||||||
margin: 0 0 0.3em;
|
margin: 0 0 0.3em;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
line-height: 1.5;
|
line-height:20px;
|
||||||
|
|
||||||
small {
|
small {
|
||||||
font-weight: lighter;
|
font-weight: lighter;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,74 +1,69 @@
|
|||||||
<template>
|
<template>
|
||||||
<teleport
|
<div
|
||||||
:disabled="minimalMode || disableTeleport"
|
:class="{ minimal: minimalMode }"
|
||||||
:to="teleportTarget"
|
class="Notifications"
|
||||||
>
|
>
|
||||||
<div
|
<div :class="mainClass">
|
||||||
:class="{ minimal: minimalMode }"
|
<div
|
||||||
class="Notifications"
|
v-if="!noHeading"
|
||||||
>
|
class="panel-heading"
|
||||||
<div :class="mainClass">
|
>
|
||||||
<div
|
<div class="title">
|
||||||
v-if="!noHeading"
|
{{ $t('notifications.notifications') }}
|
||||||
class="notifications-heading panel-heading -sticky"
|
<span
|
||||||
>
|
|
||||||
<div class="title">
|
|
||||||
{{ $t('notifications.notifications') }}
|
|
||||||
<span
|
|
||||||
v-if="unseenCount"
|
|
||||||
class="badge badge-notification unseen-count"
|
|
||||||
>{{ unseenCount }}</span>
|
|
||||||
</div>
|
|
||||||
<button
|
|
||||||
v-if="unseenCount"
|
v-if="unseenCount"
|
||||||
class="button-default read-button"
|
class="badge badge-notification unseen-count"
|
||||||
@click.prevent="markAsSeen"
|
>{{ unseenCount }}</span>
|
||||||
>
|
|
||||||
{{ $t('notifications.read') }}
|
|
||||||
</button>
|
|
||||||
<NotificationFilters />
|
|
||||||
</div>
|
</div>
|
||||||
<div class="panel-body">
|
<button
|
||||||
<div
|
v-if="unseenCount"
|
||||||
v-for="notification in notificationsToDisplay"
|
class="button-default read-button"
|
||||||
:key="notification.id"
|
@click.prevent="markAsSeen"
|
||||||
class="notification"
|
>
|
||||||
:class="{unseen: !minimalMode && !notification.seen}"
|
{{ $t('notifications.read') }}
|
||||||
>
|
</button>
|
||||||
<div class="notification-overlay" />
|
<NotificationFilters />
|
||||||
<notification :notification="notification" />
|
</div>
|
||||||
</div>
|
<div class="panel-body">
|
||||||
|
<div
|
||||||
|
v-for="notification in notificationsToDisplay"
|
||||||
|
:key="notification.id"
|
||||||
|
class="notification"
|
||||||
|
:class="{"unseen": !minimalMode && !notification.seen}"
|
||||||
|
>
|
||||||
|
<div class="notification-overlay" />
|
||||||
|
<notification :notification="notification" />
|
||||||
</div>
|
</div>
|
||||||
<div class="panel-footer">
|
</div>
|
||||||
<div
|
<div class="panel-footer notifications-footer">
|
||||||
v-if="bottomedOut"
|
<div
|
||||||
class="new-status-notification text-center faint"
|
v-if="bottomedOut"
|
||||||
>
|
class="new-status-notification text-center faint"
|
||||||
{{ $t('notifications.no_more_notifications') }}
|
>
|
||||||
</div>
|
{{ $t('notifications.no_more_notifications') }}
|
||||||
<button
|
</div>
|
||||||
v-else-if="!loading"
|
<button
|
||||||
class="button-unstyled -link -fullwidth"
|
v-else-if="!loading"
|
||||||
@click.prevent="fetchOlderNotifications()"
|
class="button-unstyled -link -fullwidth"
|
||||||
>
|
@click.prevent="fetchOlderNotifications()"
|
||||||
<div class="new-status-notification text-center">
|
>
|
||||||
{{ minimalMode ? $t('interactions.load_older') : $t('notifications.load_older') }}
|
<div class="new-status-notification text-center">
|
||||||
</div>
|
{{ minimalMode ? $t('interactions.load_older') : $t('notifications.load_older') }}
|
||||||
</button>
|
|
||||||
<div
|
|
||||||
v-else
|
|
||||||
class="new-status-notification text-center"
|
|
||||||
>
|
|
||||||
<FAIcon
|
|
||||||
icon="circle-notch"
|
|
||||||
spin
|
|
||||||
size="lg"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
|
</button>
|
||||||
|
<div
|
||||||
|
v-else
|
||||||
|
class="new-status-notification text-center"
|
||||||
|
>
|
||||||
|
<FAIcon
|
||||||
|
icon="circle-notch"
|
||||||
|
spin
|
||||||
|
size="lg"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</teleport>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script src="./notifications.js"></script>
|
<script src="./notifications.js"></script>
|
||||||
|
|||||||
@@ -11,21 +11,21 @@
|
|||||||
</label>
|
</label>
|
||||||
<Checkbox
|
<Checkbox
|
||||||
v-if="typeof fallback !== 'undefined'"
|
v-if="typeof fallback !== 'undefined'"
|
||||||
:model-value="present"
|
:checked="present"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
class="opt"
|
class="opt"
|
||||||
@update:modelValue="$emit('update:modelValue', !present ? fallback : undefined)"
|
@change="$emit('input', !present ? fallback : undefined)"
|
||||||
/>
|
/>
|
||||||
<input
|
<input
|
||||||
:id="name"
|
:id="name"
|
||||||
class="input-number"
|
class="input-number"
|
||||||
type="number"
|
type="number"
|
||||||
:value="modelValue || fallback"
|
:value="value || fallback"
|
||||||
:disabled="!present || disabled"
|
:disabled="!present || disabled"
|
||||||
max="1"
|
max="1"
|
||||||
min="0"
|
min="0"
|
||||||
step=".05"
|
step=".05"
|
||||||
@input="$emit('update:modelValue', $event.target.value)"
|
@input="$emit('input', $event.target.value)"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@@ -37,12 +37,11 @@ export default {
|
|||||||
Checkbox
|
Checkbox
|
||||||
},
|
},
|
||||||
props: [
|
props: [
|
||||||
'name', 'modelValue', 'fallback', 'disabled'
|
'name', 'value', 'fallback', 'disabled'
|
||||||
],
|
],
|
||||||
emits: ['update:modelValue'],
|
|
||||||
computed: {
|
computed: {
|
||||||
present () {
|
present () {
|
||||||
return typeof this.modelValue !== 'undefined'
|
return typeof this.value !== 'undefined'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -91,18 +91,14 @@
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
margin-top: 0.6em;
|
margin-top: 0.6em;
|
||||||
max-width: 18rem;
|
max-width: 18rem;
|
||||||
|
|
||||||
> * {
|
|
||||||
min-width: 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-group {
|
.form-group {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
padding: 0.3em 0;
|
padding: 0.3em 0.0em 0.3em;
|
||||||
line-height: 1.85em;
|
line-height: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.error {
|
.error {
|
||||||
@@ -114,7 +110,7 @@
|
|||||||
|
|
||||||
.alert {
|
.alert {
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
margin: 0.3em 0 1em;
|
margin: 0.3em 0.0em 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.password-reset-required {
|
.password-reset-required {
|
||||||
|
|||||||
@@ -1,13 +0,0 @@
|
|||||||
import PinchZoom from '@kazvmoe-infra/pinch-zoom-element'
|
|
||||||
|
|
||||||
export default {
|
|
||||||
methods: {
|
|
||||||
setTransform ({ scale, x, y }) {
|
|
||||||
this.$el.setTransform({ scale, x, y })
|
|
||||||
}
|
|
||||||
},
|
|
||||||
created () {
|
|
||||||
// Make lint happy
|
|
||||||
(() => PinchZoom)()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
<template>
|
|
||||||
<pinch-zoom
|
|
||||||
class="pinch-zoom-parent"
|
|
||||||
v-bind="$attrs"
|
|
||||||
v-on="$listeners"
|
|
||||||
>
|
|
||||||
<slot />
|
|
||||||
</pinch-zoom>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script src="./pinch_zoom.js"></script>
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user