Compare commits
27 Commits
dev
...
feature/em
Author | SHA1 | Date | |
---|---|---|---|
d518d5c2bc | |||
8fbcde234e | |||
93f6a1b080 | |||
3a71161da9 | |||
02067ace1f | |||
79518e07f2 | |||
424537c513 | |||
0b4fa8bfa3 | |||
d7680ea396 | |||
1a393c75c5 | |||
7f85c543ed | |||
52b2a6d16c | |||
59db2c598d | |||
21e0f4f5da | |||
39e2e37a26 | |||
5e2cec5b5d | |||
cf37edaeca | |||
4055f2c3fc | |||
f0584b8aff | |||
8bf1dab381 | |||
3c8807da21 | |||
d65aea5fb0 | |||
90c4d93872 | |||
d9fe833d2e | |||
86ee656a3a | |||
0118cf42c6 | |||
6d3f7ceffe |
|
@ -5,6 +5,7 @@ on: [push]
|
|||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.ref != 'refs/heads/feature/email-templates'
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
|
@ -18,10 +19,10 @@ jobs:
|
|||
run: npm install --global --save-exact @biomejs/biome
|
||||
|
||||
- name: Lint with Biome
|
||||
run: npx @biomejs/biome ci
|
||||
run: npx biome ci .
|
||||
|
||||
- name: Lint styles
|
||||
run: npx stylelint **/*.{scss,css}
|
||||
run: npm run lint:styles
|
||||
|
||||
- name: Check types
|
||||
run: npm run typecheck
|
||||
|
@ -29,52 +30,48 @@ jobs:
|
|||
- name: Test production build
|
||||
run: npm run build
|
||||
|
||||
- name: Install Playwright
|
||||
run: npx playwright install --with-deps
|
||||
|
||||
- name: Run Playwright tests
|
||||
run: npm run e2e
|
||||
env:
|
||||
BASE_URL: ${{ github.event.deployment_status.target_url }}
|
||||
DEBUG: pw:api
|
||||
|
||||
email-templates:
|
||||
runs-on: ubuntu-latest
|
||||
name: Update templates on Mailgun
|
||||
if: github.event_name == 'push' && github.ref == 'refs/heads/feature/email-templates'
|
||||
continue-on-error: true
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '18'
|
||||
|
||||
- name: "Email confirmation template"
|
||||
- name: Run templates build
|
||||
run: npm run templates
|
||||
|
||||
- name: "authorizer_email_confirmation template"
|
||||
uses: gyto/mailgun-template-action@v2
|
||||
with:
|
||||
html-file: "./templates/authorizer_email_confirmation.html"
|
||||
html-file: "./templates/dist/authorizer_email_confirmation.html"
|
||||
mailgun-api-key: ${{ secrets.MAILGUN_API_KEY }}
|
||||
mailgun-domain: "discours.io"
|
||||
mailgun-template: "authorizer_email_confirmation"
|
||||
|
||||
- name: "Password reset template"
|
||||
- name: "authorizer_password_reset template"
|
||||
uses: gyto/mailgun-template-action@v2
|
||||
with:
|
||||
html-file: "./templates/authorizer_password_reset.html"
|
||||
html-file: "./templates/dist/authorizer_password_reset.html"
|
||||
mailgun-api-key: ${{ secrets.MAILGUN_API_KEY }}
|
||||
mailgun-domain: "discours.io"
|
||||
mailgun-template: "authorizer_password_reset"
|
||||
|
||||
- name: "First publication notification"
|
||||
- name: "email_first_publication template deploy"
|
||||
uses: gyto/mailgun-template-action@v2
|
||||
with:
|
||||
html-file: "./templates/first_publication_notification.html"
|
||||
html-file: "./templates/dist/authorizer_first_publication.html"
|
||||
mailgun-api-key: ${{ secrets.MAILGUN_API_KEY }}
|
||||
mailgun-domain: "discours.io"
|
||||
mailgun-template: "first_publication_notification"
|
||||
mailgun-template: "email_first_publication"
|
||||
|
||||
- name: "New comment notification template"
|
||||
- name: "new_comment_notification template"
|
||||
uses: gyto/mailgun-template-action@v2
|
||||
with:
|
||||
html-file: "./templates/new_comment_notification.html"
|
||||
html-file: "./templates/dist/authorizer_new_comment.html"
|
||||
mailgun-api-key: ${{ secrets.MAILGUN_API_KEY }}
|
||||
mailgun-domain: "discours.io"
|
||||
mailgun-template: "new_comment_notification"
|
||||
|
|
64
.github/workflows/node-ci.yml
vendored
|
@ -1,58 +1,42 @@
|
|||
name: "CI and E2E Tests"
|
||||
name: "deploy"
|
||||
|
||||
on:
|
||||
push:
|
||||
deployment_status:
|
||||
types: [success]
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
ci:
|
||||
if: github.event_name == 'push'
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm i
|
||||
- name: Install CI checks
|
||||
run: npm ci
|
||||
|
||||
- name: Check types
|
||||
run: npm run typecheck
|
||||
|
||||
- name: Lint with Biome
|
||||
run: npx @biomejs/biome check src/.
|
||||
run: npx biome ci .
|
||||
|
||||
- name: Lint styles
|
||||
run: npx stylelint **/*.{scss,css}
|
||||
run: npm run lint:styles
|
||||
|
||||
- name: Test production build
|
||||
run: npm run build
|
||||
|
||||
e2e_tests:
|
||||
needs: ci
|
||||
e2e:
|
||||
timeout-minutes: 60
|
||||
runs-on: ubuntu-latest
|
||||
if: github.event.deployment_status.state == 'success'
|
||||
steps:
|
||||
- name: Debug event info
|
||||
run: |
|
||||
echo "Event Name: ${{ github.event_name }}"
|
||||
echo "Deployment Status: ${{ github.event.deployment_status.state }}"
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '18'
|
||||
- name: Install dependencies
|
||||
run: npm install
|
||||
- name: Wait for deployment to be live
|
||||
run: |
|
||||
echo "Waiting for Vercel deployment to be live..."
|
||||
until curl -sSf https://testing.discours.io > /dev/null; do
|
||||
printf '.'
|
||||
sleep 10
|
||||
done
|
||||
- name: Install Playwright and dependencies
|
||||
run: npm run e2e:install
|
||||
- name: Run Playwright tests
|
||||
run: npm run e2e:tests:ci
|
||||
env:
|
||||
BASE_URL: https://testing.discours.io
|
||||
continue-on-error: true
|
||||
- name: Report test result if failed
|
||||
if: failure()
|
||||
run: echo "E2E tests failed. Please review the logs."
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
- name: Install Playwright
|
||||
run: npx playwright install --with-deps
|
||||
- name: Run Playwright tests
|
||||
run: npx playwright test
|
||||
env:
|
||||
BASE_URL: ${{ github.event.deployment_status.target_url }}
|
||||
|
|
12
.gitignore
vendored
|
@ -1,9 +1,8 @@
|
|||
.devcontainer
|
||||
.pnpm-store
|
||||
dist/
|
||||
node_modules/
|
||||
npm-debug.log*
|
||||
pnpm-debug.log*
|
||||
.vscode
|
||||
.env
|
||||
.env.production
|
||||
.DS_Store
|
||||
|
@ -23,11 +22,4 @@ bun.lockb
|
|||
/blob-report/
|
||||
/playwright/.cache/
|
||||
/plawright-report/
|
||||
target
|
||||
.github/dependabot.yml
|
||||
.output
|
||||
.vinxi
|
||||
*.pem
|
||||
edge.*
|
||||
.vscode/settings.json
|
||||
storybook-static
|
||||
/templates/dist/*
|
||||
|
|
5
.lintstagedrc
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"*.{js,ts,cjs,mjs,d.mts,jsx,tsx,json,jsonc}": [
|
||||
"npx @biomejs/biome check ./src && tsc"
|
||||
]
|
||||
}
|
|
@ -1,49 +0,0 @@
|
|||
import type { FrameworkOptions, StorybookConfig } from 'storybook-solidjs-vite'
|
||||
|
||||
const config: StorybookConfig = {
|
||||
stories: ['../src/**/*.stories.@(js|jsx|ts|tsx|mdx)'],
|
||||
addons: [
|
||||
'@storybook/addon-links',
|
||||
'@storybook/addon-essentials',
|
||||
'@storybook/addon-interactions',
|
||||
'@storybook/addon-a11y',
|
||||
'@storybook/addon-themes',
|
||||
'storybook-addon-sass-postcss'
|
||||
],
|
||||
framework: {
|
||||
name: 'storybook-solidjs-vite',
|
||||
options: {
|
||||
builder: {
|
||||
viteConfigPath: './vite.config.ts'
|
||||
}
|
||||
} as FrameworkOptions
|
||||
},
|
||||
docs: {
|
||||
autodocs: 'tag'
|
||||
},
|
||||
viteFinal: (config) => {
|
||||
if (config.build) {
|
||||
config.build.sourcemap = true
|
||||
config.build.minify = process.env.NODE_ENV === 'production'
|
||||
}
|
||||
if (config.css) {
|
||||
config.css.preprocessorOptions = {
|
||||
scss: {
|
||||
silenceDeprecations: ['mixed-decls'],
|
||||
additionalData: '@import "~/styles/imports";\n',
|
||||
includePaths: ['./public', './src/styles', './node_modules']
|
||||
}
|
||||
}
|
||||
}
|
||||
return config
|
||||
},
|
||||
previewHead: (head) => `
|
||||
${head}
|
||||
<style>
|
||||
body {
|
||||
transition: none !important;
|
||||
}
|
||||
</style>
|
||||
`
|
||||
}
|
||||
export default config
|
|
@ -1,34 +0,0 @@
|
|||
import { withThemeByClassName } from '@storybook/addon-themes'
|
||||
import '../src/styles/app.scss'
|
||||
|
||||
const preview = {
|
||||
parameters: {
|
||||
themes: {
|
||||
default: 'light',
|
||||
list: [
|
||||
{ name: 'light', class: '', color: '#f8fafc' },
|
||||
{ name: 'dark', class: 'dark', color: '#0f172a' }
|
||||
]
|
||||
},
|
||||
actions: { argTypesRegex: '^on[A-Z].*' },
|
||||
controls: {
|
||||
matchers: {
|
||||
color: /(background|color)$/i,
|
||||
date: /Date$/
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default preview
|
||||
|
||||
export const decorators = [
|
||||
withThemeByClassName({
|
||||
themes: {
|
||||
light: '',
|
||||
dark: 'dark'
|
||||
},
|
||||
defaultTheme: 'light',
|
||||
parentSelector: 'body'
|
||||
})
|
||||
]
|
|
@ -1,23 +0,0 @@
|
|||
import type { Page } from '@playwright/test'
|
||||
import type { TestRunnerConfig } from '@storybook/test-runner'
|
||||
import { checkA11y, injectAxe } from 'axe-playwright'
|
||||
|
||||
/*
|
||||
* See https://storybook.js.org/docs/react/writing-tests/test-runner#test-hook-api-experimental
|
||||
* to learn more about the test-runner hooks API.
|
||||
*/
|
||||
const a11yConfig = {
|
||||
async preRender(page: Page) {
|
||||
await injectAxe(page)
|
||||
},
|
||||
async postRender(page: Page) {
|
||||
await checkA11y(page, '#storybook-root', {
|
||||
detailedReport: true,
|
||||
detailedReportOptions: {
|
||||
html: true
|
||||
}
|
||||
})
|
||||
}
|
||||
} as TestRunnerConfig
|
||||
|
||||
module.exports = a11yConfig
|
|
@ -1,6 +1,2 @@
|
|||
node_modules
|
||||
.vercel/
|
||||
dist/
|
||||
storybook-static
|
||||
.output
|
||||
.vinxi
|
||||
.vercel
|
||||
|
|
|
@ -1,73 +1,34 @@
|
|||
{
|
||||
"defaultSeverity": "warning",
|
||||
"extends": ["stylelint-config-standard-scss", "stylelint-config-recommended"],
|
||||
"extends": ["stylelint-config-standard-scss"],
|
||||
"plugins": ["stylelint-order", "stylelint-scss"],
|
||||
"rules": {
|
||||
"annotation-no-unknown": [
|
||||
true,
|
||||
{
|
||||
"ignoreAnnotations": ["default"]
|
||||
}
|
||||
],
|
||||
"at-rule-no-unknown": null,
|
||||
"declaration-block-no-redundant-longhand-properties": null,
|
||||
"font-family-no-missing-generic-family-keyword": null,
|
||||
"function-no-unknown": [
|
||||
true,
|
||||
{
|
||||
"ignoreFunctions": ["divide", "transparentize"]
|
||||
}
|
||||
],
|
||||
"function-url-quotes": null,
|
||||
"keyframes-name-pattern": null,
|
||||
"declaration-block-no-redundant-longhand-properties": null,
|
||||
"selector-class-pattern": null,
|
||||
"no-descending-specificity": null,
|
||||
"order/order": [
|
||||
{
|
||||
"type": "at-rule",
|
||||
"name": "include"
|
||||
},
|
||||
"custom-properties",
|
||||
"declarations",
|
||||
"rules"
|
||||
],
|
||||
"property-no-vendor-prefix": [
|
||||
true,
|
||||
{
|
||||
"ignoreProperties": ["box-decoration-break"]
|
||||
}
|
||||
],
|
||||
"scss/at-function-pattern": null,
|
||||
"scss/at-mixin-pattern": null,
|
||||
"scss/dollar-variable-colon-space-after": "always-single-line",
|
||||
"scss/dollar-variable-colon-space-before": "never",
|
||||
"scss/function-no-unknown": null,
|
||||
"scss/no-global-function-names": null,
|
||||
"function-url-quotes": null,
|
||||
"font-family-no-missing-generic-family-keyword": null,
|
||||
"order/order": ["custom-properties", "declarations"],
|
||||
"scss/dollar-variable-pattern": [
|
||||
"^[a-z][a-zA-Z]+$",
|
||||
{
|
||||
"ignore": "global"
|
||||
}
|
||||
],
|
||||
"scss/double-slash-comment-empty-line-before": [
|
||||
"always",
|
||||
{
|
||||
"except": ["first-nested"],
|
||||
"ignore": ["between-comments", "stylelint-commands"]
|
||||
}
|
||||
],
|
||||
"scss/double-slash-comment-whitespace-inside": "always",
|
||||
"scss/function-no-unknown": null,
|
||||
"scss/no-duplicate-dollar-variables": null,
|
||||
"scss/no-duplicate-mixins": null,
|
||||
"scss/no-global-function-names": null,
|
||||
"scss/operator-no-newline-after": null,
|
||||
"scss/operator-no-newline-before": null,
|
||||
"scss/operator-no-unspaced": null,
|
||||
"scss/percent-placeholder-pattern": null,
|
||||
"selector-class-pattern": null,
|
||||
"selector-pseudo-class-no-unknown": [
|
||||
true,
|
||||
{
|
||||
"ignorePseudoClasses": ["global", "export"]
|
||||
}
|
||||
],
|
||||
"property-no-vendor-prefix": [
|
||||
true,
|
||||
{
|
||||
"ignoreProperties": ["box-decoration-break"]
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"defaultSeverity": "warning"
|
||||
}
|
||||
|
|
3
.vscode/extension.json
vendored
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"recommendations": ["biomejs.biome", "stylelint.vscode-stylelint", "wayou.vscode-todo-highlight"]
|
||||
}
|
5
.vscode/settings.json
vendored
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.organizeImports.biome": "always"
|
||||
}
|
||||
}
|
57
README.en.md
|
@ -1,57 +0,0 @@
|
|||
## Development setup recommendations
|
||||
|
||||
### How to start
|
||||
|
||||
Use `bun i`, `npm i`, `pnpm i` or `yarn` to install packages.
|
||||
|
||||
### Config of variables
|
||||
|
||||
- Use `.env` file to setup your own development environment
|
||||
- Env vars with prefix `PUBLIC_` are widely used in `/src/utils/config.ts`
|
||||
|
||||
### Useful commands
|
||||
|
||||
run checks, fix styles, imports, formatting and autofixable linting errors:
|
||||
```
|
||||
bun run typecheck
|
||||
bun run fix
|
||||
```
|
||||
|
||||
## End-to-End (E2E) Tests
|
||||
|
||||
This directory contains end-to-end tests. These tests are written using [Playwright](https://playwright.dev/)
|
||||
|
||||
### Structure
|
||||
|
||||
- `/tests/*`: This directory contains the test files.
|
||||
- `/playwright.config.ts`: This is the configuration file for Playwright.
|
||||
|
||||
### Getting Started
|
||||
|
||||
Follow these steps:
|
||||
|
||||
1. **Install dependencies**: Run `npm run e2e:install` to install the necessary dependencies for running the tests.
|
||||
|
||||
2. **Run the tests**: After using `npm run e2e:tests`.
|
||||
|
||||
### Additional Information
|
||||
|
||||
If workers is no needed use:
|
||||
- `npx playwright test --project=webkit --workers 4`
|
||||
|
||||
For more information on how to write tests using Playwright - [Playwright documentation](https://playwright.dev/docs/intro).
|
||||
|
||||
### 🚀 Tests in CI Mode
|
||||
|
||||
Tests are executed within a GitHub workflow. We organize our tests into two main directories:
|
||||
|
||||
- `tests`: Contains tests that do not require authentication.
|
||||
- `tests-with-auth`: Houses tests that interact with authenticated parts of the application.
|
||||
|
||||
🔧 **Configuration:**
|
||||
|
||||
Playwright is configured to utilize the `BASE_URL` environment variable. Ensure this is properly set in your CI configuration to point to the correct environment.
|
||||
|
||||
📝 **Note:**
|
||||
|
||||
After pages have been adjusted to work with authentication, all tests should be moved to the `tests` directory to streamline the testing process.
|
77
README.md
|
@ -1,57 +1,30 @@
|
|||
[English](README.en.md)
|
||||
|
||||
## Рекомендации по настройке разработки
|
||||
|
||||
### Как начать
|
||||
|
||||
Используйте `bun i`, `npm i`, `pnpm i` или `yarn`, чтобы установить пакеты.
|
||||
|
||||
### Настройка переменных
|
||||
|
||||
- Используйте файл `.env` для настройки переменных собственной среды разработки.
|
||||
- Переменные окружения с префиксом `PUBLIC_` широко используются в `/src/utils/config.ts`.
|
||||
|
||||
### Полезные команды
|
||||
|
||||
Запуск проверки соответствия типов и автоматически исправить ошибки стилей, порядок импорта, форматирование:
|
||||
|
||||
## How to start
|
||||
```
|
||||
bun run typecheck
|
||||
bun run fix
|
||||
npm install
|
||||
npm start
|
||||
```
|
||||
|
||||
## End-to-End (E2E) тесты
|
||||
## Useful commands
|
||||
run checks
|
||||
```
|
||||
npm run check
|
||||
```
|
||||
type checking with watch
|
||||
```
|
||||
npm run typecheck:watch
|
||||
```
|
||||
fix styles, imports, formatting and autofixable linting errors:
|
||||
```
|
||||
npm run fix
|
||||
```
|
||||
## Code generation
|
||||
|
||||
End-to-end тесты написаны с использованием [Playwright](https://playwright.dev/).
|
||||
generate new SolidJS component:
|
||||
```
|
||||
npm run hygen component new NewComponentName
|
||||
```
|
||||
|
||||
### Структура
|
||||
|
||||
- `/tests/*`: содержит файлы тестов
|
||||
- `/playwright.config.ts`: конфиг для Playwright
|
||||
|
||||
### Начало работы
|
||||
|
||||
Следуйте этим шагам:
|
||||
|
||||
1. **Установите зависимости**: Запустите `npm run e2e:install`, чтобы установить необходимые зависимости для выполнения тестов.
|
||||
|
||||
2. **Запустите тесты**: После установки зависимостей используйте `npm run e2e:tests`.
|
||||
|
||||
### Дополнительная информация
|
||||
|
||||
Для параллельного исполнения:
|
||||
- `npx playwright test --project=webkit --workers 4`
|
||||
|
||||
Для получения дополнительной информации о написании тестов с использованием Playwright - [Документация Playwright](https://playwright.dev/docs/intro).
|
||||
|
||||
### 🚀 Тесты в режиме CI
|
||||
|
||||
Тесты выполняются в рамках GitHub workflow из папки `tests`
|
||||
|
||||
🔧 **Конфигурация:**
|
||||
|
||||
Playwright настроен на использование переменной окружения `BASE_URL`. Убедитесь, что она правильно установлена в вашей конфигурации CI для указания на правильную среду.
|
||||
|
||||
📝 **Примечание:**
|
||||
|
||||
После того как страницы были настроены для работы с аутентификацией, все тесты должны быть перемещены в директорию `tests` для упрощения процесса тестирования.
|
||||
generate new SolidJS context:
|
||||
```
|
||||
npm run hygen context new NewContextName
|
||||
```
|
||||
|
|
32
api/edge-ssr.js
Normal file
|
@ -0,0 +1,32 @@
|
|||
import { renderPage } from 'vike/server'
|
||||
|
||||
export const config = {
|
||||
runtime: 'edge'
|
||||
}
|
||||
export default async function handler(request) {
|
||||
const { url, cookies } = request
|
||||
|
||||
const pageContext = await renderPage({ urlOriginal: url, cookies })
|
||||
|
||||
const { httpResponse, errorWhileRendering, is404 } = pageContext
|
||||
|
||||
if (errorWhileRendering && !is404) {
|
||||
console.error(errorWhileRendering)
|
||||
return new Response('', { status: 500 })
|
||||
}
|
||||
|
||||
if (!httpResponse) {
|
||||
return new Response()
|
||||
}
|
||||
|
||||
const { body, statusCode, headers: headersArray } = httpResponse
|
||||
|
||||
const headers = headersArray.reduce((acc, [name, value]) => {
|
||||
acc[name] = value
|
||||
return acc
|
||||
}, {})
|
||||
|
||||
headers['Cache-Control'] = 's-maxage=1, stale-while-revalidate'
|
||||
|
||||
return new Response(body, { status: statusCode, headers })
|
||||
}
|
|
@ -1,8 +1,10 @@
|
|||
import FormData from 'form-data'
|
||||
import Mailgun from 'mailgun.js'
|
||||
const formData = require('form-data')
|
||||
const Mailgun = require('mailgun.js')
|
||||
|
||||
const mailgun = new Mailgun(FormData)
|
||||
const mg = mailgun.client({ username: 'discoursio', key: process.env.MAILGUN_API_KEY })
|
||||
const mailgun = new Mailgun(formData)
|
||||
|
||||
const { MAILGUN_API_KEY, MAILGUN_DOMAIN } = process.env
|
||||
const mg = mailgun.client({ username: 'discoursio', key: MAILGUN_API_KEY })
|
||||
|
||||
export default async function handler(req, res) {
|
||||
const { contact, subject, message } = req.body
|
||||
|
@ -17,7 +19,7 @@ export default async function handler(req, res) {
|
|||
}
|
||||
|
||||
try {
|
||||
const response = await mg.messages.create('discours.io', data)
|
||||
const response = await mg.messages.create(MAILGUN_DOMAIN, data)
|
||||
console.log('Email sent successfully!', response)
|
||||
res.status(200).json({ result: 'great success' })
|
||||
} catch (error) {
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
import FormData from 'form-data'
|
||||
import Mailgun from 'mailgun.js'
|
||||
const formData = require('form-data')
|
||||
const Mailgun = require('mailgun.js')
|
||||
|
||||
const mailgun = new Mailgun(FormData)
|
||||
const mg = mailgun.client({ username: 'discoursio', key: process.env.MAILGUN_API_KEY })
|
||||
const mailgun = new Mailgun(formData)
|
||||
|
||||
const { MAILGUN_API_KEY } = process.env
|
||||
const mg = mailgun.client({ username: 'discoursio', key: MAILGUN_API_KEY })
|
||||
|
||||
export default async (req, res) => {
|
||||
const { email } = req.body
|
||||
|
|
|
@ -1,23 +0,0 @@
|
|||
import { SolidStartInlineConfig, defineConfig } from '@solidjs/start/config'
|
||||
import viteConfig, { isDev } from './vite.config'
|
||||
|
||||
const isVercel = Boolean(process.env.VERCEL)
|
||||
const isNetlify = Boolean(process.env.NETLIFY)
|
||||
const isBun = Boolean(process.env.BUN)
|
||||
|
||||
const preset = isNetlify ? 'netlify' : isVercel ? 'vercel_edge' : isBun ? 'bun' : 'node'
|
||||
console.info(`[app.config] solid-start preset {> ${preset} <}`)
|
||||
|
||||
export default defineConfig({
|
||||
nitro: {
|
||||
timing: true
|
||||
},
|
||||
ssr: true,
|
||||
server: {
|
||||
preset,
|
||||
port: 3000,
|
||||
https: true
|
||||
},
|
||||
devOverlay: isDev,
|
||||
vite: viteConfig
|
||||
} as SolidStartInlineConfig)
|
39
biome.json
|
@ -1,18 +1,16 @@
|
|||
{
|
||||
"$schema": "https://biomejs.dev/schemas/1.9.3/schema.json",
|
||||
"$schema": "https://biomejs.dev/schemas/1.5.3/schema.json",
|
||||
"files": {
|
||||
"include": ["*.tsx", "*.ts", "*.js", "*.json"],
|
||||
"ignore": ["./dist", "./node_modules", ".husky", "docs", "gen", "*.gen.ts", "*.d.ts"]
|
||||
"ignore": ["./dist", "./node_modules", ".husky", "docs", "gen", "templates"]
|
||||
},
|
||||
"vcs": {
|
||||
"defaultBranch": "dev",
|
||||
"useIgnoreFile": true,
|
||||
"enabled": true,
|
||||
"clientKind": "git"
|
||||
"useIgnoreFile": true
|
||||
},
|
||||
"organizeImports": {
|
||||
"enabled": true,
|
||||
"ignore": ["./gen"]
|
||||
"ignore": ["./api", "./gen"]
|
||||
},
|
||||
"formatter": {
|
||||
"indentStyle": "space",
|
||||
|
@ -24,10 +22,10 @@
|
|||
"formatter": {
|
||||
"semicolons": "asNeeded",
|
||||
"quoteStyle": "single",
|
||||
"trailingComma": "none",
|
||||
"enabled": true,
|
||||
"jsxQuoteStyle": "double",
|
||||
"arrowParentheses": "always",
|
||||
"trailingCommas": "none"
|
||||
"arrowParentheses": "always"
|
||||
}
|
||||
},
|
||||
"linter": {
|
||||
|
@ -38,13 +36,10 @@
|
|||
"complexity": {
|
||||
"noForEach": "off",
|
||||
"useOptionalChain": "warn",
|
||||
"useLiteralKeys": "off",
|
||||
"noExcessiveCognitiveComplexity": "off"
|
||||
"useLiteralKeys": "off"
|
||||
},
|
||||
"correctness": {
|
||||
"useHookAtTopLevel": "off",
|
||||
"useImportExtensions": "off",
|
||||
"noUndeclaredDependencies": "off"
|
||||
"useHookAtTopLevel": "off"
|
||||
},
|
||||
"a11y": {
|
||||
"useHeadingContent": "off",
|
||||
|
@ -56,28 +51,20 @@
|
|||
"useAltText": "off",
|
||||
"useButtonType": "off",
|
||||
"noRedundantAlt": "off",
|
||||
"noSvgWithoutTitle": "off",
|
||||
"noLabelWithoutControl": "off"
|
||||
"noSvgWithoutTitle": "off"
|
||||
},
|
||||
"nursery": {
|
||||
"useImportRestrictions": "off"
|
||||
},
|
||||
"performance": {
|
||||
"noBarrelFile": "off"
|
||||
"useImportRestrictions": "off",
|
||||
"useImportType": "off",
|
||||
"useFilenamingConvention": "off"
|
||||
},
|
||||
"style": {
|
||||
"noNonNullAssertion": "off",
|
||||
"noNamespaceImport": "warn",
|
||||
"useBlockStatements": "off",
|
||||
"noImplicitBoolean": "off",
|
||||
"useNamingConvention": "off",
|
||||
"useImportType": "off",
|
||||
"noDefaultExport": "off",
|
||||
"useFilenamingConvention": "off",
|
||||
"useExplicitLengthCheck": "off"
|
||||
"noDefaultExport": "off"
|
||||
},
|
||||
"suspicious": {
|
||||
"noConsole": "off",
|
||||
"noConsoleLog": "off",
|
||||
"noAssignInExpressions": "off"
|
||||
}
|
||||
|
|
30
codegen.yml
|
@ -25,3 +25,33 @@ generates:
|
|||
useTypeImports: true
|
||||
outputPath: './src/graphql/types/core.gen.ts'
|
||||
# namingConvention: change-case#CamelCase # for generated types
|
||||
|
||||
# Generate types for notifier
|
||||
src/graphql/schema/notifier.gen.ts:
|
||||
schema: 'https://notifier.discours.io'
|
||||
plugins:
|
||||
- 'typescript'
|
||||
- 'typescript-operations'
|
||||
- 'typescript-urql'
|
||||
config:
|
||||
skipTypename: true
|
||||
useTypeImports: true
|
||||
outputPath: './src/graphql/types/notifier.gen.ts'
|
||||
# namingConvention: change-case#CamelCase # for generated types
|
||||
|
||||
# internal types for auth
|
||||
# src/graphql/schema/auth.gen.ts:
|
||||
# schema: 'https://auth.discours.io/graphql'
|
||||
# plugins:
|
||||
# - 'typescript'
|
||||
# - 'typescript-operations'
|
||||
# - 'typescript-urql'
|
||||
# config:
|
||||
# skipTypename: true
|
||||
# useTypeImports: true
|
||||
# outputPath: './src/graphql/types/auth.gen.ts'
|
||||
# namingConvention: change-case#CamelCase # for generated types
|
||||
|
||||
hooks:
|
||||
afterAllFileWrite:
|
||||
- prettier --ignore-path .gitignore --write --plugin-search-dir=. src/graphql/schema/*.gen.ts
|
||||
|
|
66
docs/article.puml
Normal file
|
@ -0,0 +1,66 @@
|
|||
@startuml
|
||||
actor User
|
||||
participant Browser
|
||||
participant Vercel
|
||||
participant article.page.server.ts
|
||||
participant Solid
|
||||
participant Store
|
||||
|
||||
User -> Browser: discours.io
|
||||
activate Browser
|
||||
Browser -> Vercel: GET <slug>
|
||||
activate Vercel
|
||||
Vercel -> article.page.server.ts: render
|
||||
activate article.page.server.ts
|
||||
article.page.server.ts -> apiClient: getArticle({ slug })
|
||||
activate apiClient
|
||||
apiClient -> DB: query: articleBySlug
|
||||
activate DB
|
||||
DB --> apiClient: response
|
||||
deactivate DB
|
||||
apiClient --> article.page.server.ts: article data
|
||||
deactivate apiClient
|
||||
article.page.server.ts -> Solid: render <ArticlePage article={article} />
|
||||
activate Solid
|
||||
Solid -> Store: useCurrentArticleStore(article)
|
||||
activate Store
|
||||
Store -> Store: create store with initial data (server)
|
||||
Store --> Solid: currentArticle
|
||||
deactivate Store
|
||||
Solid -> Solid: render component
|
||||
Solid --> article.page.server.ts: rendered component
|
||||
deactivate Solid
|
||||
article.page.server.ts --> Vercel: rendered page
|
||||
Vercel -> Vercel: save rendered page to CDN
|
||||
deactivate article.page.server.ts
|
||||
Vercel --> Browser: rendered page
|
||||
deactivate Vercel
|
||||
Browser --> User: rendered page
|
||||
deactivate Browser
|
||||
Browser -> Browser: load client scripts
|
||||
Browser -> Solid: render <ArticlePage article={article} />
|
||||
Solid -> Store: useCurrentArticleStore(article)
|
||||
activate Store
|
||||
Store -> Store: create store with initial data (client)
|
||||
Store --> Solid: currentArticle
|
||||
deactivate Store
|
||||
Solid -> Solid: render component (no changes)
|
||||
Solid -> Solid: onMount
|
||||
Solid -> Store: loadArticleComments
|
||||
activate Store
|
||||
Store -> apiClient: getArticleComments
|
||||
activate apiClient
|
||||
apiClient -> DB: query: getReactions
|
||||
activate DB
|
||||
DB --> apiClient: response
|
||||
deactivate DB
|
||||
apiClient --> Store: comments data
|
||||
deactivate apiClient
|
||||
Store -> Store: update store
|
||||
Store --> Solid: store updated
|
||||
deactivate Store
|
||||
Solid -> Solid: render comments
|
||||
Solid --> Browser: rendered comments
|
||||
Browser --> User: comments
|
||||
@enduml
|
||||
|
40
docs/i18n.puml
Normal file
|
@ -0,0 +1,40 @@
|
|||
@startuml
|
||||
actor User
|
||||
participant Browser
|
||||
participant Server
|
||||
|
||||
User -> Browser: discours.io
|
||||
activate Browser
|
||||
Browser -> Server: GET\nquery { lng }\ncookies { lng }
|
||||
opt lng in query
|
||||
Server -> Server: lng = lng from query
|
||||
else no lng in query
|
||||
opt lng in cookies
|
||||
Server -> Server: lng = lng from cookies
|
||||
else no lng in cookies
|
||||
Server -> Server: lng = 'ru'
|
||||
end opt
|
||||
end opt
|
||||
note right
|
||||
_dafault.page.server.ts render
|
||||
end note
|
||||
|
||||
opt i18next is not initialized
|
||||
Server -> Server: initialize i18next with lng
|
||||
else i18next not initialized
|
||||
Server -> Server: change i18next language to lng
|
||||
end opt
|
||||
note right
|
||||
all resources loaded synchronously
|
||||
end note
|
||||
Server --> Browser: pageContext { lng }
|
||||
Browser -> Browser: init client side i18next with http backend
|
||||
activate Browser
|
||||
Browser -> Server: get translations for current language
|
||||
Server --> Browser: translations JSON
|
||||
deactivate Browser
|
||||
Browser -> Browser: render page
|
||||
Browser --> User: rendered page
|
||||
deactivate Browser
|
||||
@enduml
|
||||
|
24
docs/routing.puml
Normal file
|
@ -0,0 +1,24 @@
|
|||
@startuml
|
||||
actor User
|
||||
participant Browser
|
||||
participant Server
|
||||
|
||||
User -> Browser: discours.io
|
||||
activate Browser
|
||||
Browser -> Server: GET
|
||||
activate Server
|
||||
Server -> Server: resolve route
|
||||
note right
|
||||
based on routes from
|
||||
*.page.route.ts files
|
||||
end note
|
||||
Server -> Server: some.page.server.ts onBeforeRender
|
||||
Server -> Server: _default.page.server.tsx render
|
||||
Server --> Browser: pageContent
|
||||
deactivate Server
|
||||
Browser -> Browser: _default.page.client.tsx render(pageContext)
|
||||
|
||||
Browser --> User: rendered page
|
||||
deactivate Browser
|
||||
@enduml
|
||||
|
18
gen/component/new/component.ejs.t
Normal file
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
to: src/components/<%= h.changeCase.pascal(name) %>/<%= h.changeCase.pascal(name) %>.tsx
|
||||
---
|
||||
|
||||
import { clsx } from 'clsx'
|
||||
import styles from './<%= h.changeCase.pascal(name) %>.module.scss'
|
||||
|
||||
type Props = {
|
||||
class?: string
|
||||
}
|
||||
|
||||
export const <%= h.changeCase.pascal(name) %> = (props: Props) => {
|
||||
return (
|
||||
<div class={clsx(styles.<%= h.changeCase.pascal(name) %>, props.class)}>
|
||||
<%= h.changeCase.pascal(name) %>
|
||||
</div>
|
||||
)
|
||||
}
|
4
gen/component/new/index.ejs.t
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
to: src/components/<%= h.changeCase.pascal(name) %>/index.ts
|
||||
---
|
||||
export { <%= h.changeCase.pascal(name) %> } from './<%= h.changeCase.pascal(name) %>'
|
7
gen/component/new/styles.ejs.t
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
to: src/components/<%= h.changeCase.pascal(name) %>/<%= h.changeCase.pascal(name) %>.module.scss
|
||||
---
|
||||
|
||||
.<%= h.changeCase.pascal(name) %> {
|
||||
display: block;
|
||||
}
|
24
gen/context/new/context.ejs.t
Normal file
|
@ -0,0 +1,24 @@
|
|||
---
|
||||
to: src/context/<%= h.changeCase.camel(name) %>.tsx
|
||||
---
|
||||
import type { Accessor, JSX } from 'solid-js'
|
||||
import { createContext, createSignal, useContext } from 'solid-js'
|
||||
|
||||
type <%= h.changeCase.pascal(name) %>ContextType = {
|
||||
|
||||
}
|
||||
|
||||
const <%= h.changeCase.pascal(name) %>Context = createContext<<%= h.changeCase.pascal(name) %>ContextType>()
|
||||
|
||||
export function use<%= h.changeCase.pascal(name) %>() {
|
||||
return useContext(<%= h.changeCase.pascal(name) %>Context)
|
||||
}
|
||||
|
||||
export const <%= h.changeCase.pascal(name) %>Provider = (props: { children: JSX.Element }) => {
|
||||
const actions = {
|
||||
}
|
||||
|
||||
const value: <%= h.changeCase.pascal(name) %>ContextType = { ...actions }
|
||||
|
||||
return <<%= h.changeCase.pascal(name) %>Context.Provider value={value}>{props.children}</<%= h.changeCase.pascal(name) %>Context.Provider>
|
||||
}
|
5
gen/generator/help/index.ejs.t
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
message: |
|
||||
hygen {bold generator new} --name [NAME] --action [ACTION]
|
||||
hygen {bold generator with-prompt} --name [NAME] --action [ACTION]
|
||||
---
|
16
gen/generator/new/hello.ejs.t
Normal file
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
to: gen/<%= name %>/<%= action || 'new' %>/hello.ejs.t
|
||||
---
|
||||
---
|
||||
to: app/hello.js
|
||||
---
|
||||
const hello = ```
|
||||
Hello!
|
||||
This is your first hygen template.
|
||||
|
||||
Learn what it can do here:
|
||||
|
||||
https://github.com/jondot/hygen
|
||||
```
|
||||
|
||||
console.log(hello)
|
16
gen/generator/with-prompt/hello.ejs.t
Normal file
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
to: gen/<%= name %>/<%= action || 'new' %>/hello.ejs.t
|
||||
---
|
||||
---
|
||||
to: app/hello.js
|
||||
---
|
||||
const hello = ```
|
||||
Hello!
|
||||
This is your first prompt based hygen template.
|
||||
|
||||
Learn what it can do here:
|
||||
|
||||
https://github.com/jondot/hygen
|
||||
```
|
||||
|
||||
console.log(hello)
|
14
gen/generator/with-prompt/prompt.ejs.t
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
to: gen/<%= name %>/<%= action || 'new' %>/prompt.js
|
||||
---
|
||||
|
||||
// see types of prompts:
|
||||
// https://github.com/enquirer/enquirer/tree/master/examples
|
||||
//
|
||||
module.exports = [
|
||||
{
|
||||
type: 'input',
|
||||
name: 'message',
|
||||
message: "What's your message?"
|
||||
}
|
||||
]
|
4
gen/init/repo/new-repo.ejs.t
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
setup: <%= name %>
|
||||
force: true # this is because mostly, people init into existing folders is safe
|
||||
---
|
21681
package-lock.json
generated
260
package.json
|
@ -1,151 +1,143 @@
|
|||
{
|
||||
"name": "discoursio-webapp",
|
||||
"version": "0.9.2",
|
||||
"private": true,
|
||||
"version": "0.9.6",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vinxi dev",
|
||||
"build": "vinxi build",
|
||||
"start": "vinxi start",
|
||||
"build": "vite build",
|
||||
"check": "npm run lint && npm run typecheck",
|
||||
"codegen": "graphql-codegen",
|
||||
"e2e": "E2E=1 npm run e2e:tests",
|
||||
"e2e:tests": "npx playwright test --project=webkit",
|
||||
"e2e:tests:ci": "CI=true npx playwright test --project=webkit",
|
||||
"e2e:install": "npx playwright install webkit && npx playwright install-deps ",
|
||||
"fix": "npx @biomejs/biome check . --fix && stylelint **/*.{scss,css} --fix",
|
||||
"format": "npx @biomejs/biome format src/. --write",
|
||||
"deploy": "graphql-codegen && npm run typecheck && vite build && vercel",
|
||||
"dev": "vite",
|
||||
"e2e": "npx playwright test --project=chromium",
|
||||
"fix": "npm run check:code:fix && stylelint **/*.{scss,css} --fix",
|
||||
"format": "npx @biomejs/biome format . --write",
|
||||
"hygen": "HYGEN_TMPLS=gen hygen",
|
||||
"postinstall": "npm run codegen && npx patch-package",
|
||||
"check:code": "npx @biomejs/biome check src --log-kind=compact --verbose",
|
||||
"check:code:fix": "npx @biomejs/biome check src --log-kind=compact --verbose --apply-unsafe",
|
||||
"lint": "npm run lint:code && stylelint **/*.{scss,css}",
|
||||
"lint:code": "npx @biomejs/biome lint . --log-kind=compact --verbose",
|
||||
"lint:code:fix": "npx @biomejs/biome lint . --apply-unsafe --log-kind=compact --verbose",
|
||||
"lint:styles": "stylelint **/*.{scss,css}",
|
||||
"lint:styles:fix": "stylelint **/*.{scss,css} --fix",
|
||||
"preview": "vite preview",
|
||||
"start": "vite",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"storybook": "storybook dev -p 6006",
|
||||
"storybook:test": "test-storybook",
|
||||
"build-storybook": "storybook build"
|
||||
"typecheck:watch": "tsc --noEmit --watch",
|
||||
"templates": "node ./templates/compile.cjs"
|
||||
},
|
||||
"dependencies": {
|
||||
"form-data": "4.0.0",
|
||||
"mailgun.js": "10.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@authorizerdev/authorizer-js": "^2.0.3",
|
||||
"@biomejs/biome": "^1.9.3",
|
||||
"@graphql-codegen/cli": "^5.0.2",
|
||||
"@graphql-codegen/typescript": "^4.0.9",
|
||||
"@graphql-codegen/typescript-operations": "^4.2.3",
|
||||
"@authorizerdev/authorizer-js": "2.0.0",
|
||||
"@babel/core": "7.23.3",
|
||||
"@biomejs/biome": "^1.5.3",
|
||||
"@graphql-codegen/cli": "^5.0.0",
|
||||
"@graphql-codegen/typescript": "^4.0.1",
|
||||
"@graphql-codegen/typescript-operations": "^4.0.1",
|
||||
"@graphql-codegen/typescript-urql": "^4.0.0",
|
||||
"@hocuspocus/provider": "^2.13.6",
|
||||
"@playwright/test": "^1.47.2",
|
||||
"@popperjs/core": "^2.11.8",
|
||||
"@solid-primitives/media": "^2.2.9",
|
||||
"@solid-primitives/memo": "^1.3.9",
|
||||
"@solid-primitives/pagination": "^0.3.0",
|
||||
"@solid-primitives/script-loader": "^2.2.0",
|
||||
"@solid-primitives/share": "^2.0.6",
|
||||
"@solid-primitives/storage": "^4.2.1",
|
||||
"@solid-primitives/upload": "^0.0.117",
|
||||
"@solidjs/meta": "^0.29.4",
|
||||
"@solidjs/router": "^0.14.7",
|
||||
"@solidjs/start": "^1.0.8",
|
||||
"@storybook/addon-a11y": "^8.3.4",
|
||||
"@storybook/addon-actions": "^8.3.4",
|
||||
"@storybook/addon-controls": "^8.3.4",
|
||||
"@storybook/addon-essentials": "^8.3.4",
|
||||
"@storybook/addon-interactions": "^8.3.4",
|
||||
"@storybook/addon-links": "^8.3.4",
|
||||
"@storybook/addon-themes": "^8.3.4",
|
||||
"@storybook/addon-viewport": "^8.3.4",
|
||||
"@storybook/builder-vite": "^8.3.4",
|
||||
"@storybook/docs-tools": "^8.3.4",
|
||||
"@storybook/test": "^8.3.4",
|
||||
"@storybook/test-runner": "^0.19.1",
|
||||
"@tiptap/core": "^2.8.0",
|
||||
"@tiptap/extension-blockquote": "^2.8.0",
|
||||
"@tiptap/extension-bold": "^2.8.0",
|
||||
"@tiptap/extension-bubble-menu": "^2.8.0",
|
||||
"@tiptap/extension-bullet-list": "^2.8.0",
|
||||
"@tiptap/extension-character-count": "^2.8.0",
|
||||
"@tiptap/extension-collaboration": "^2.8.0",
|
||||
"@tiptap/extension-collaboration-cursor": "^2.8.0",
|
||||
"@tiptap/extension-document": "^2.8.0",
|
||||
"@tiptap/extension-dropcursor": "^2.8.0",
|
||||
"@tiptap/extension-floating-menu": "^2.8.0",
|
||||
"@tiptap/extension-focus": "^2.8.0",
|
||||
"@tiptap/extension-gapcursor": "^2.8.0",
|
||||
"@tiptap/extension-hard-break": "^2.8.0",
|
||||
"@tiptap/extension-heading": "^2.8.0",
|
||||
"@tiptap/extension-highlight": "^2.8.0",
|
||||
"@tiptap/extension-history": "^2.8.0",
|
||||
"@tiptap/extension-horizontal-rule": "^2.8.0",
|
||||
"@tiptap/extension-image": "^2.8.0",
|
||||
"@tiptap/extension-italic": "^2.8.0",
|
||||
"@tiptap/extension-link": "^2.8.0",
|
||||
"@tiptap/extension-list-item": "^2.8.0",
|
||||
"@tiptap/extension-ordered-list": "^2.8.0",
|
||||
"@tiptap/extension-paragraph": "^2.8.0",
|
||||
"@tiptap/extension-placeholder": "^2.8.0",
|
||||
"@tiptap/extension-strike": "^2.8.0",
|
||||
"@tiptap/extension-text": "^2.8.0",
|
||||
"@tiptap/extension-underline": "^2.8.0",
|
||||
"@tiptap/extension-youtube": "^2.8.0",
|
||||
"@tiptap/starter-kit": "^2.8.0",
|
||||
"@types/cookie": "^0.6.0",
|
||||
"@types/cookie-signature": "^1.1.2",
|
||||
"@types/node": "^22.7.4",
|
||||
"@types/throttle-debounce": "^5.0.2",
|
||||
"@urql/core": "^5.0.6",
|
||||
"axe-playwright": "^2.0.3",
|
||||
"bootstrap": "^5.3.3",
|
||||
"clsx": "^2.1.1",
|
||||
"cookie": "^0.6.0",
|
||||
"cookie-signature": "^1.2.1",
|
||||
"cropperjs": "^1.6.2",
|
||||
"extended-eventsource": "^1.6.4",
|
||||
"fast-deep-equal": "^3.1.3",
|
||||
"graphql": "^16.9.0",
|
||||
"i18next": "^23.15.1",
|
||||
"i18next-http-backend": "^2.6.1",
|
||||
"i18next-icu": "^2.3.0",
|
||||
"intl-messageformat": "^10.5.14",
|
||||
"javascript-time-ago": "^2.5.11",
|
||||
"@graphql-tools/url-loader": "8.0.1",
|
||||
"@hocuspocus/provider": "2.11.0",
|
||||
"@microsoft/fetch-event-source": "^2.0.1",
|
||||
"@nanostores/router": "0.13.0",
|
||||
"@nanostores/solid": "0.4.2",
|
||||
"@playwright/test": "1.41.2",
|
||||
"@popperjs/core": "2.11.8",
|
||||
"@sentry/browser": "7.99.0",
|
||||
"@solid-primitives/media": "2.2.3",
|
||||
"@solid-primitives/memo": "1.2.4",
|
||||
"@solid-primitives/pagination": "0.2.10",
|
||||
"@solid-primitives/share": "2.0.4",
|
||||
"@solid-primitives/storage": "1.3.9",
|
||||
"@solid-primitives/upload": "0.0.110",
|
||||
"@solidjs/meta": "0.29.1",
|
||||
"@thisbeyond/solid-select": "0.14.0",
|
||||
"@tiptap/core": "2.2.3",
|
||||
"@tiptap/extension-blockquote": "2.2.3",
|
||||
"@tiptap/extension-bold": "2.2.3",
|
||||
"@tiptap/extension-bubble-menu": "2.2.3",
|
||||
"@tiptap/extension-bullet-list": "2.2.3",
|
||||
"@tiptap/extension-character-count": "2.2.3",
|
||||
"@tiptap/extension-collaboration": "2.2.3",
|
||||
"@tiptap/extension-collaboration-cursor": "2.2.3",
|
||||
"@tiptap/extension-document": "2.2.3",
|
||||
"@tiptap/extension-dropcursor": "2.2.3",
|
||||
"@tiptap/extension-floating-menu": "2.2.3",
|
||||
"@tiptap/extension-focus": "2.2.3",
|
||||
"@tiptap/extension-gapcursor": "2.2.3",
|
||||
"@tiptap/extension-hard-break": "2.2.3",
|
||||
"@tiptap/extension-heading": "2.2.3",
|
||||
"@tiptap/extension-highlight": "2.2.3",
|
||||
"@tiptap/extension-history": "2.2.3",
|
||||
"@tiptap/extension-horizontal-rule": "2.2.3",
|
||||
"@tiptap/extension-image": "2.2.3",
|
||||
"@tiptap/extension-italic": "2.2.3",
|
||||
"@tiptap/extension-link": "2.2.3",
|
||||
"@tiptap/extension-list-item": "2.2.3",
|
||||
"@tiptap/extension-ordered-list": "2.2.3",
|
||||
"@tiptap/extension-paragraph": "2.2.3",
|
||||
"@tiptap/extension-placeholder": "2.2.3",
|
||||
"@tiptap/extension-strike": "2.2.3",
|
||||
"@tiptap/extension-text": "2.2.3",
|
||||
"@tiptap/extension-underline": "2.2.3",
|
||||
"@tiptap/extension-youtube": "2.2.3",
|
||||
"@types/js-cookie": "3.0.6",
|
||||
"@types/node": "^20.11.0",
|
||||
"@urql/core": "4.2.3",
|
||||
"@urql/devtools": "^2.0.3",
|
||||
"babel-preset-solid": "1.8.4",
|
||||
"bootstrap": "5.3.2",
|
||||
"clsx": "2.0.0",
|
||||
"cropperjs": "1.6.1",
|
||||
"cross-env": "7.0.3",
|
||||
"fast-deep-equal": "3.1.3",
|
||||
"ga-gtag": "1.2.0",
|
||||
"graphql": "16.8.1",
|
||||
"graphql-tag": "2.12.6",
|
||||
"hygen": "6.2.11",
|
||||
"i18next": "22.4.15",
|
||||
"i18next-http-backend": "2.2.0",
|
||||
"i18next-icu": "2.3.0",
|
||||
"intl-messageformat": "10.5.3",
|
||||
"javascript-time-ago": "2.5.9",
|
||||
"js-cookie": "3.0.5",
|
||||
"lint-staged": "15.1.0",
|
||||
"loglevel": "1.8.1",
|
||||
"loglevel-plugin-prefix": "0.8.4",
|
||||
"nanostores": "0.9.5",
|
||||
"patch-package": "^8.0.0",
|
||||
"prosemirror-history": "^1.4.1",
|
||||
"prosemirror-trailing-node": "^2.0.9",
|
||||
"prosemirror-view": "^1.34.3",
|
||||
"rollup-plugin-visualizer": "^5.12.0",
|
||||
"sass": "1.77.6",
|
||||
"solid-js": "^1.9.1",
|
||||
"solid-popper": "^0.3.0",
|
||||
"prosemirror-history": "1.3.2",
|
||||
"prosemirror-trailing-node": "2.0.7",
|
||||
"prosemirror-view": "1.33.1",
|
||||
"rollup": "4.11.0",
|
||||
"sass": "1.69.5",
|
||||
"solid-js": "1.8.15",
|
||||
"solid-popper": "0.3.0",
|
||||
"solid-tiptap": "0.7.0",
|
||||
"solid-transition-group": "^0.2.3",
|
||||
"storybook": "^8.3.4",
|
||||
"storybook-addon-sass-postcss": "^0.3.2",
|
||||
"storybook-solidjs": "^1.0.0-beta.2",
|
||||
"storybook-solidjs-vite": "^1.0.0-beta.2",
|
||||
"stylelint": "^16.9.0",
|
||||
"stylelint-config-recommended": "^14.0.1",
|
||||
"stylelint-config-standard-scss": "^13.1.0",
|
||||
"stylelint-order": "^6.0.4",
|
||||
"stylelint-scss": "^6.7.0",
|
||||
"swiper": "^11.1.14",
|
||||
"throttle-debounce": "^5.0.2",
|
||||
"tslib": "^2.7.0",
|
||||
"typescript": "^5.6.2",
|
||||
"typograf": "^7.4.1",
|
||||
"uniqolor": "^1.1.1",
|
||||
"vinxi": "^0.4.3",
|
||||
"vite-plugin-mkcert": "^1.17.6",
|
||||
"vite-plugin-node-polyfills": "^0.22.0",
|
||||
"vite-plugin-sass-dts": "^1.3.29",
|
||||
"y-prosemirror": "1.2.12",
|
||||
"yjs": "13.6.19"
|
||||
"solid-transition-group": "0.2.3",
|
||||
"stylelint": "^16.0.0",
|
||||
"stylelint-config-standard-scss": "^13.0.0",
|
||||
"stylelint-order": "^6.0.3",
|
||||
"stylelint-scss": "^6.1.0",
|
||||
"swiper": "11.0.5",
|
||||
"throttle-debounce": "5.0.0",
|
||||
"typescript": "5.2.2",
|
||||
"typograf": "7.3.0",
|
||||
"uniqolor": "1.1.0",
|
||||
"vike": "0.4.148",
|
||||
"vite": "5.1.2",
|
||||
"vite-plugin-mkcert": "^1.17.3",
|
||||
"vite-plugin-sass-dts": "^1.3.17",
|
||||
"vite-plugin-solid": "2.10.1",
|
||||
"y-prosemirror": "1.2.2",
|
||||
"yjs": "13.6.12"
|
||||
},
|
||||
"overrides": {
|
||||
"sass": "1.77.6",
|
||||
"vite": "5.3.5",
|
||||
"yjs": "13.6.19",
|
||||
"y-prosemirror": "1.2.12"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 20"
|
||||
},
|
||||
"trustedDependencies": ["@biomejs/biome", "@swc/core", "esbuild", "protobufjs"],
|
||||
"dependencies": {
|
||||
"form-data": "^4.0.0",
|
||||
"idb": "^8.0.0",
|
||||
"mailgun.js": "^10.2.3"
|
||||
"y-prosemirror": "1.2.2",
|
||||
"yjs": "13.6.12"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,40 +10,44 @@ import { defineConfig, devices } from '@playwright/test'
|
|||
* See https://playwright.dev/docs/test-configuration.
|
||||
*/
|
||||
export default defineConfig({
|
||||
/* Directory to search for tests */
|
||||
testDir: './tests',
|
||||
/* Run tests in files in parallel */
|
||||
fullyParallel: false,
|
||||
fullyParallel: true,
|
||||
/* Fail the build on CI if you accidentally left test.only in the source code. */
|
||||
forbidOnly: !!process.env.CI,
|
||||
/* Retry on CI only */
|
||||
retries: 0,
|
||||
retries: process.env.CI ? 2 : 0,
|
||||
/* Opt out of parallel tests on CI. */
|
||||
workers: process.env.CI ? 1 : undefined,
|
||||
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
|
||||
reporter: 'list',
|
||||
/* Timeout for each test */
|
||||
timeout: 40000,
|
||||
reporter: 'html',
|
||||
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
|
||||
use: {
|
||||
/* Base URL to use in actions like `await page.goto('/')`. */
|
||||
baseURL: process.env.BASE_URL || 'https://localhost:3000',
|
||||
/* Headless */
|
||||
headless: true,
|
||||
/* Ignode SSL certificates */
|
||||
ignoreHTTPSErrors: true,
|
||||
// baseURL: 'http://127.0.0.1:3000',
|
||||
|
||||
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
|
||||
trace: 'on-first-retry'
|
||||
},
|
||||
|
||||
/* Configure projects for major browsers */
|
||||
projects: [
|
||||
{
|
||||
name: 'chromium',
|
||||
use: { ...devices['Desktop Chrome'] }
|
||||
},
|
||||
|
||||
{
|
||||
name: 'firefox',
|
||||
use: { ...devices['Desktop Firefox'] }
|
||||
},
|
||||
|
||||
{
|
||||
name: 'webkit',
|
||||
use: { ...devices['Desktop Safari'] }
|
||||
}
|
||||
|
||||
/* Test against many viewports.
|
||||
/* Test against mobile viewports. */
|
||||
// {
|
||||
// name: 'Mobile Chrome',
|
||||
// use: { ...devices['Pixel 5'] },
|
||||
|
@ -62,17 +66,12 @@ export default defineConfig({
|
|||
// name: 'Google Chrome',
|
||||
// use: { ...devices['Desktop Chrome'], channel: 'chrome' },
|
||||
// },
|
||||
],
|
||||
]
|
||||
|
||||
/* Run local dev server before starting the tests */
|
||||
/* If process env CI is set to false */
|
||||
webServer: process.env.CI
|
||||
? undefined
|
||||
: {
|
||||
command: 'npm run dev',
|
||||
url: 'http://localhost:3000',
|
||||
ignoreHTTPSErrors: true,
|
||||
reuseExistingServer: !process.env.CI,
|
||||
timeout: 5 * 60 * 1000
|
||||
}
|
||||
/* Run your local dev server before starting the tests */
|
||||
// webServer: {
|
||||
// command: 'npm run start',
|
||||
// url: 'http://127.0.0.1:3000',
|
||||
// reuseExistingServer: !process.env.CI,
|
||||
// },
|
||||
})
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M19.125 12.75H4.5C4.08854 12.75 3.75 12.4115 3.75 12C3.75 11.5885 4.08854 11.25 4.5 11.25H19.125C19.5365 11.25 19.875 11.5885 19.875 12C19.875 12.4115 19.5365 12.75 19.125 12.75Z" fill="currentColor"/>
|
||||
<path
|
||||
d="M14.0678 18.3593C13.8803 18.3593 13.6928 18.2916 13.547 18.151C13.2501 17.8593 13.2397 17.3853 13.5314 17.0885L18.4584 11.9999L13.5314 6.91137C13.2397 6.6145 13.2501 6.14054 13.547 5.84887C13.8439 5.56241 14.3178 5.57283 14.6043 5.8697L20.0366 11.4791C20.3178 11.7707 20.3178 12.2291 20.0366 12.5207L14.6043 18.1301C14.4584 18.2864 14.2657 18.3593 14.0678 18.3593Z" fill="currentColor"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 713 B |
Before Width: | Height: | Size: 290 B After Width: | Height: | Size: 290 B |
Before Width: | Height: | Size: 350 B After Width: | Height: | Size: 350 B |
Before Width: | Height: | Size: 714 B After Width: | Height: | Size: 714 B |
11
public/icons/ediitor-bold.svg
Normal file
|
@ -0,0 +1,11 @@
|
|||
<svg
|
||||
width="13" height="16"
|
||||
viewBox="0 0 13 16"
|
||||
fill="none"
|
||||
version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M 10.1573,7.43667 C 11.2197,6.70286 11.9645,5.49809 11.9645,4.38095 11.9645,1.90571 10.0478,0 7.58352,0 H 0.738281 V 15.3333 H 8.44876 c 2.28904,0 4.06334,-1.8619 4.06334,-4.1509 0,-1.66478 -0.9419,-3.08859 -2.3548,-3.74573 z M 4.02344,2.73828 h 3.28571 c 0.90905,0 1.64286,0.73381 1.64286,1.64286 0,0.90905 -0.73381,1.64286 -1.64286,1.64286 H 4.02344 Z M 4.01629,9.3405869 h 3.87946 c 0.9090501,0 1.6428601,0.7338101 1.6428601,1.6428601 0,0.90905 -0.73381,1.64286 -1.6428601,1.64286 H 4.01629 Z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
</svg>
|
After Width: | Height: | Size: 677 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M11.9967 4.51318C11.5931 4.51318 11.1868 4.59652 10.8118 4.75798L7.9056 6.01058L9.83268 6.81266L11.4056 6.13558C11.5931 6.05225 11.7962 6.01058 11.9993 6.01058C12.2025 6.01058 12.4056 6.05225 12.5931 6.13558L20.5801 9.57829C20.6504 9.60693 20.6947 9.67464 20.6947 9.75016C20.6947 9.82568 20.6504 9.89339 20.5801 9.92204L12.5931 13.3647C12.2181 13.5262 11.7806 13.5262 11.4056 13.3647L3.41862 9.92204C3.34831 9.89339 3.30404 9.82568 3.30404 9.75016C3.30404 9.67464 3.34831 9.60693 3.41862 9.57829L6.47591 8.26058L11.7103 10.4429C11.804 10.4819 11.903 10.5002 11.9993 10.5002C12.291 10.5002 12.5723 10.3283 12.6921 10.0392C12.8509 9.65641 12.6712 9.21631 12.2884 9.05746L8.39258 7.43506L8.39518 7.43246L6.4681 6.63037L2.42643 8.37516C1.87435 8.60954 1.51758 9.1512 1.51758 9.75016C1.51758 10.3491 1.87435 10.8908 2.42643 11.1252L4.87435 12.1825V18.5679C4.64779 18.7371 4.49935 19.008 4.49935 19.3127V20.8127C4.49935 21.3309 4.91862 21.7502 5.43685 21.7502H5.81185C6.33008 21.7502 6.74935 21.3309 6.74935 20.8127V19.3127C6.74935 19.008 6.60091 18.7371 6.37435 18.5679V17.1512C7.42904 17.909 9.2181 18.7502 11.9993 18.7502C15.5384 18.7502 17.4889 17.3856 18.3353 16.5705C18.8379 16.0887 19.1243 15.4064 19.1243 14.6955V12.1825L21.5723 11.1252C22.1243 10.8908 22.4811 10.3491 22.4811 9.75016C22.4811 9.1512 22.1243 8.60954 21.5723 8.37516L13.1868 4.75798C12.8092 4.59652 12.403 4.51318 11.9967 4.51318ZM6.37435 12.8283L10.8118 14.7424C11.1895 14.9064 11.5931 14.9845 11.9993 14.9845C12.4056 14.9845 12.8092 14.9064 13.1868 14.7424L17.6243 12.8283V14.6955C17.6243 15.0002 17.5046 15.2892 17.2962 15.4897C16.6113 16.146 15.015 17.2502 11.9993 17.2502C8.98372 17.2502 7.38737 16.146 6.70247 15.4897C6.49414 15.2892 6.37435 15.0002 6.37435 14.6955V12.8283Z" fill="currentColor"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.8 KiB |
|
@ -1,3 +1,3 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.625 4.5C7.59115 4.5 6.75 5.34115 6.75 6.375V8.25H5.625C4.59115 8.25 3.75 9.09115 3.75 10.125V17.25C3.75 18.4896 4.76042 19.5 6 19.5H18C19.2396 19.5 20.25 18.4896 20.25 17.25V6.375C20.25 5.34115 19.4089 4.5 18.375 4.5H8.625ZM8.625 6H18.375C18.5807 6 18.75 6.16927 18.75 6.375V17.25C18.75 17.6641 18.4141 18 18 18H8.1224C8.20313 17.7656 8.25 17.513 8.25 17.25V6.375C8.25 6.16927 8.41927 6 8.625 6ZM10.125 7.5C9.71094 7.5 9.375 7.83594 9.375 8.25C9.375 8.66406 9.71094 9 10.125 9H16.875C17.2891 9 17.625 8.66406 17.625 8.25C17.625 7.83594 17.2891 7.5 16.875 7.5H10.125ZM5.625 9.75H6.75V17.25C6.75 17.6641 6.41406 18 6 18C5.58594 18 5.25 17.6641 5.25 17.25V10.125C5.25 9.91927 5.41927 9.75 5.625 9.75ZM10.125 10.125C9.71094 10.125 9.375 10.4609 9.375 10.875C9.375 11.2891 9.71094 11.625 10.125 11.625H16.875C17.2891 11.625 17.625 11.2891 17.625 10.875C17.625 10.4609 17.2891 10.125 16.875 10.125H10.125ZM10.125 12.75C9.71094 12.75 9.375 13.0859 9.375 13.5V16.125C9.375 16.5391 9.71094 16.875 10.125 16.875H12.375C12.7891 16.875 13.125 16.5391 13.125 16.125V13.5C13.125 13.0859 12.7891 12.75 12.375 12.75H10.125ZM15 12.75C14.5859 12.75 14.25 13.0859 14.25 13.5C14.25 13.9141 14.5859 14.25 15 14.25H16.875C17.2891 14.25 17.625 13.9141 17.625 13.5C17.625 13.0859 17.2891 12.75 16.875 12.75H15ZM15 15.375C14.5859 15.375 14.25 15.7109 14.25 16.125C14.25 16.5391 14.5859 16.875 15 16.875H16.875C17.2891 16.875 17.625 16.5391 17.625 16.125C17.625 15.7109 17.2891 15.375 16.875 15.375H15Z" fill="black"/>
|
||||
<path d="M8.25 4.125C7.14583 4.125 6.13281 4.6901 5.60937 5.60156C5.40365 5.95573 5.16406 6.53385 5.03125 6.91927C4.91146 7.2474 3.07813 11.349 1.95313 13.8568L1.95833 13.8594C1.66667 14.4349 1.5 15.0755 1.5 15.75C1.5 18.2318 3.6875 20.25 6.375 20.25C9.0625 20.25 11.25 18.2318 11.25 15.75V14.3724C11.4505 14.3099 11.7109 14.25 12 14.25C12.2891 14.25 12.5495 14.3099 12.75 14.3724V15.75C12.75 18.2318 14.9375 20.25 17.625 20.25C20.3125 20.25 22.5 18.2318 22.5 15.75C22.5 15.0755 22.3333 14.4349 22.0417 13.8594L22.0469 13.8568C20.9219 11.349 19.0885 7.2474 18.9688 6.92448C18.8359 6.53646 18.5964 5.95833 18.3906 5.60417C17.8672 4.6901 16.8542 4.125 15.75 4.125C14.1354 4.125 12.8177 5.32813 12.7552 6.82813C12.526 6.78125 12.2734 6.75 12 6.75C11.7266 6.75 11.474 6.78125 11.2448 6.82813C11.1823 5.32813 9.86458 4.125 8.25 4.125ZM8.25 5.625C9.07813 5.625 9.75 6.21354 9.75 6.9375V12.5104C8.8724 11.7318 7.6849 11.25 6.375 11.25C5.75781 11.25 5.16927 11.362 4.625 11.5547C5.48177 9.64063 6.36458 7.65365 6.45052 7.40885C6.57292 7.04688 6.77604 6.58333 6.90885 6.35156C7.16667 5.90365 7.67969 5.625 8.25 5.625ZM15.75 5.625C16.3203 5.625 16.8333 5.90365 17.0911 6.35156C17.224 6.58333 17.4271 7.04948 17.5495 7.40885C17.6354 7.65365 18.5182 9.64063 19.3724 11.5547C18.8307 11.362 18.2422 11.25 17.625 11.25C16.3151 11.25 15.1276 11.7318 14.25 12.5104V6.9375C14.25 6.21354 14.9219 5.625 15.75 5.625ZM12 8.25C12.2891 8.25 12.5495 8.3099 12.75 8.3724V9.82552C12.5208 9.78125 12.2708 9.75 12 9.75C11.7292 9.75 11.4792 9.78125 11.25 9.82552V8.3724C11.4505 8.3099 11.7109 8.25 12 8.25ZM12 11.25C12.2891 11.25 12.5495 11.3099 12.75 11.3724V12.8255C12.5208 12.7812 12.2708 12.75 12 12.75C11.7292 12.75 11.4792 12.7812 11.25 12.8255V11.3724C11.4505 11.3099 11.7109 11.25 12 11.25ZM6.375 12.75C8.23698 12.75 9.75 14.0964 9.75 15.75C9.75 17.4036 8.23698 18.75 6.375 18.75C4.51302 18.75 3 17.4036 3 15.75C3 14.0964 4.51302 12.75 6.375 12.75ZM17.625 12.75C19.487 12.75 21 14.0964 21 15.75C21 17.4036 19.487 18.75 17.625 18.75C15.763 18.75 14.25 17.4036 14.25 15.75C14.25 14.0964 15.763 12.75 17.625 12.75Z" fill="#141414"/>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 2.2 KiB |
|
@ -1,4 +0,0 @@
|
|||
<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M16.1785 3.05371C15.1421 3.05371 14.3035 3.89486 14.3035 4.92871C14.3035 5.96256 15.1421 6.80371 16.1785 6.80371C17.215 6.80371 18.0535 5.96256 18.0535 4.92871C18.0535 3.89486 17.215 3.05371 16.1785 3.05371ZM14.6785 7.55371C14.4051 7.55371 14.1473 7.61621 13.9129 7.72038L10.9181 9.12923C10.7723 9.19694 10.6577 9.31413 10.5926 9.45736L9.12124 12.7308C9.07957 12.8089 9.05353 12.8975 9.05353 12.9912C9.05353 13.3011 9.30613 13.5537 9.61603 13.5537C9.8478 13.5537 10.0483 13.4131 10.1343 13.2126V13.21L11.702 10.5303L12.4858 10.249L11.7462 12.6761L11.7541 12.6787C11.7098 12.8376 11.6785 13.0042 11.6785 13.1787C11.6785 13.8923 12.0822 14.5068 12.6707 14.8245L12.6655 14.8298L15.5848 16.9626L16.5874 20.5225H16.59C16.6837 20.8298 16.965 21.0537 17.3035 21.0537C17.7176 21.0537 18.0535 20.7178 18.0535 20.3037C18.0535 20.2282 18.0379 20.1553 18.0171 20.085H18.0197L17.2671 16.3454C17.2436 16.223 17.1968 16.1058 17.1317 15.999L15.4806 13.2881L16.4806 9.99902L16.4572 9.99121C16.5145 9.81152 16.5535 9.62663 16.5535 9.42871C16.5535 8.39486 15.715 7.55371 14.6785 7.55371ZM17.1681 10.5355L16.603 12.0771L17.0353 12.4001C17.0718 12.4261 17.1108 12.4469 17.1525 12.4626L19.8869 13.5042C19.8973 13.5094 19.9103 13.512 19.9207 13.5173L19.9363 13.5225C19.9936 13.5407 20.0535 13.5537 20.116 13.5537C20.4259 13.5537 20.6785 13.3011 20.6785 12.9912C20.6785 12.7699 20.5483 12.5771 20.3608 12.486L17.9233 11.21L17.1681 10.5355ZM8.91551 13.9313C8.69676 13.9105 8.47801 14.0225 8.36863 14.2282L7.43895 15.9886L6.11343 15.2829C5.74884 15.0876 5.29572 15.2256 5.1004 15.5928L3.33738 18.9053C3.14468 19.2673 3.2853 19.723 3.64988 19.9183L4.48582 20.3636C4.47801 20.1058 4.5379 19.8454 4.66551 19.611C4.92593 19.1188 5.43374 18.8115 5.99103 18.8115C6.23322 18.8115 6.47801 18.874 6.69155 18.9886C6.80353 19.0485 6.9077 19.1188 6.99884 19.21L7.98843 17.348C7.99103 17.3454 7.99103 17.3454 7.99363 17.3428L8.2254 16.9027L8.43113 16.5173V16.5146L9.36343 14.7542C9.50926 14.4782 9.40249 14.1396 9.12905 13.9938C9.06134 13.9574 8.98843 13.9365 8.91551 13.9313ZM11.8608 15.3532L11.4988 17.0225L9.93113 19.8844L9.89988 19.9417C9.83999 20.0485 9.80353 20.1709 9.80353 20.3037C9.80353 20.7178 10.1395 21.0537 10.5535 21.0537C10.8244 21.0537 11.0613 20.9079 11.1916 20.6917L13.7332 16.7334L11.8608 15.3532ZM6.05613 19.5641C5.76447 19.5407 5.4728 19.6865 5.32697 19.96C5.13165 20.3271 5.27228 20.7803 5.63686 20.9756C6.00145 21.1683 6.45718 21.0303 6.65249 20.6657C6.8452 20.2985 6.70718 19.8454 6.33999 19.6501C6.24884 19.6006 6.15249 19.5745 6.05613 19.5641Z" fill="currentColor"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.6 KiB |
|
@ -1,4 +0,0 @@
|
|||
<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M12.4285 3.05347C11.392 3.05347 10.5535 3.89461 10.5535 4.92847C10.5535 5.96232 11.392 6.80347 12.4285 6.80347C13.4649 6.80347 14.3035 5.96232 14.3035 4.92847C14.3035 3.89461 13.4649 3.05347 12.4285 3.05347ZM12.4285 7.55347C10.3113 7.55347 9.05347 9.05347 9.05347 10.1785V14.6785C9.05347 15.0925 9.3894 15.4285 9.80347 15.4285H10.1785V21.7852C10.1785 22.2097 10.5222 22.5535 10.9467 22.5535C11.3582 22.5535 11.6941 22.2332 11.7149 21.8243L12.017 15.4285H12.8399L13.142 21.8243C13.1628 22.2332 13.4988 22.5535 13.9102 22.5535C14.3347 22.5535 14.6785 22.2097 14.6785 21.7852V15.4285H15.0535C15.4675 15.4285 15.8035 15.0925 15.8035 14.6785V10.1785C15.8035 9.05347 14.5457 7.55347 12.4285 7.55347Z" fill="currentColor"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 831 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="18" height="10" viewBox="0 0 18 10" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M17.1042 9.90633C16.9063 9.90633 16.7136 9.82821 16.5626 9.67716L8.98965 1.91675L1.43236 9.66154C1.1459 9.95841 0.671944 9.96362 0.375069 9.67716C0.0781948 9.3855 0.0729868 8.91154 0.359444 8.61467L8.45319 0.322998C8.73965 0.0313314 9.24486 0.0313314 9.53132 0.322998L17.6407 8.63029C17.9272 8.92716 17.9219 9.40112 17.6251 9.69279C17.4792 9.83342 17.2917 9.90633 17.1042 9.90633Z" fill="#9FA1A7"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 511 B |
527
public/locales/en/translation.json
Normal file
|
@ -0,0 +1,527 @@
|
|||
{
|
||||
"A guide to horizontal editorial: how an open journal works": "A guide to horizontal editorial: how an open journal works",
|
||||
"About the project": "About the project",
|
||||
"About": "About",
|
||||
"Add a few topics so that the reader knows what your content is about and can find it on pages of topics that interest them. Topics can be swapped, the first topic becomes the title": "Add a few topics so that the reader knows what your content is about and can find it on pages of topics that interest them. Topics can be swapped, the first topic becomes the title",
|
||||
"Add a link or click plus to embed media": "Add a link or click plus to embed media",
|
||||
"Add an embed widget": "Add an embed widget",
|
||||
"Add another image": "Add another image",
|
||||
"Add audio": "Add audio",
|
||||
"Add blockquote": "Add blockquote",
|
||||
"Add comment": "Comment",
|
||||
"Add cover": "Add cover",
|
||||
"Add image": "Add image",
|
||||
"Add images": "Add images",
|
||||
"Add intro": "Add intro",
|
||||
"Add link": "Add link",
|
||||
"Add rule": "Add rule",
|
||||
"Add signature": "Add signature",
|
||||
"Add subtitle": "Add subtitle",
|
||||
"Add url": "Add url",
|
||||
"Add": "Add",
|
||||
"Address on Discours": "Address on Discours",
|
||||
"Album name": "Название aльбома",
|
||||
"Alignment center": "Alignment center",
|
||||
"Alignment left": "Alignment left",
|
||||
"Alignment right": "Alignment right",
|
||||
"All articles": "All articles",
|
||||
"All authors": "All authors",
|
||||
"All posts": "All posts",
|
||||
"All topics": "All topics",
|
||||
"All": "All",
|
||||
"Almost done! Check your email.": "Almost done! Just checking your email.",
|
||||
"Are you sure you want to delete this comment?": "Are you sure you want to delete this comment?",
|
||||
"Are you sure you want to delete this draft?": "Are you sure you want to delete this draft?",
|
||||
"Are you sure you want to to proceed the action?": "Are you sure you want to to proceed the action?",
|
||||
"Art": "Art",
|
||||
"Artist": "Artist",
|
||||
"Artworks": "Artworks",
|
||||
"Audio": "Audio",
|
||||
"Author": "Author",
|
||||
"Authors": "Authors",
|
||||
"Autotypograph": "Autotypograph",
|
||||
"Back to editor": "Back to editor",
|
||||
"Back to main page": "Back to main page",
|
||||
"Back": "Back",
|
||||
"Be the first to rate": "Be the first to rate",
|
||||
"Become an author": "Become an author",
|
||||
"Bold": "Bold",
|
||||
"Bookmarked": "Saved",
|
||||
"Bookmarks": "Bookmarks",
|
||||
"Bullet list": "Bullet list",
|
||||
"By alphabet": "By alphabet",
|
||||
"By authors": "By authors",
|
||||
"By name": "By name",
|
||||
"By popularity": "By popularity",
|
||||
"By rating": "By popularity",
|
||||
"By relevance": "By relevance",
|
||||
"By shouts": "By publications",
|
||||
"By signing up you agree with our": "By signing up you agree with our",
|
||||
"By time": "By time",
|
||||
"By title": "By title",
|
||||
"By updates": "By updates",
|
||||
"By views": "By views",
|
||||
"Can make any changes, accept or reject suggestions, and share access with others": "Can make any changes, accept or reject suggestions, and share access with others",
|
||||
"Can offer edits and comments, but cannot edit the post or share access with others": "Can offer edits and comments, but cannot edit the post or share access with others",
|
||||
"Can write and edit text directly, and accept or reject suggestions from others": "Can write and edit text directly, and accept or reject suggestions from others",
|
||||
"Cancel changes": "Cancel changes",
|
||||
"Cancel": "Cancel",
|
||||
"Change password": "Change password",
|
||||
"Characters": "Знаков",
|
||||
"Chat Title": "Chat Title",
|
||||
"Choose a post type": "Choose a post type",
|
||||
"Choose a title image for the article. You can immediately see how the publication card will look like.": "Choose a title image for the article. You can immediately see how the publication card will look like.",
|
||||
"Choose who you want to write to": "Choose who you want to write to",
|
||||
"Close": "Close",
|
||||
"Co-author": "Co-author",
|
||||
"Collaborate": "Help Edit",
|
||||
"Collaborators": "Collaborators",
|
||||
"Collections": "Collections",
|
||||
"Come up with a subtitle for your story": "Come up with a subtitle for your story",
|
||||
"Come up with a title for your story": "Come up with a title for your story",
|
||||
"Coming soon": "Coming soon",
|
||||
"Comment successfully deleted": "Comment successfully deleted",
|
||||
"Commentator": "Commentator",
|
||||
"Comments": "Comments",
|
||||
"Communities": "Communities",
|
||||
"Community Discussion Rules": "Community Discussion Rules",
|
||||
"Community Principles": "Community Principles",
|
||||
"Community values and rules of engagement for the open editorial team": "Community values and rules of engagement for the open editorial team",
|
||||
"Confirm": "Confirm",
|
||||
"Contribute to free samizdat. Support Discours - an independent non-profit publication that works only for you. Become a pillar of the open newsroom": "Contribute to free samizdat. Support Discours - an independent non-profit publication that works only for you. Become a pillar of the open newsroom",
|
||||
"Cooperate": "Cooperate",
|
||||
"Copy link": "Copy link",
|
||||
"Copy": "Copy",
|
||||
"Corrections history": "Corrections history",
|
||||
"Create Chat": "Create Chat",
|
||||
"Create Group": "Create a group",
|
||||
"Create account": "Create an account",
|
||||
"Create an account to add to your bookmarks": "Create an account to add to your bookmarks",
|
||||
"Create an account to participate in discussions": "Create an account to participate in discussions",
|
||||
"Create an account to publish articles": "Create an account to publish articles",
|
||||
"Create an account to subscribe to new publications": "Create an account to subscribe to new publications",
|
||||
"Create an account to subscribe": "Create an account to subscribe",
|
||||
"Create an account to vote": "Create an account to vote",
|
||||
"Create gallery": "Create gallery",
|
||||
"Create post": "Create post",
|
||||
"Create video": "Create video",
|
||||
"Crop image": "Crop image",
|
||||
"Culture": "Culture",
|
||||
"Date of Birth": "Date of Birth",
|
||||
"Decline": "Decline",
|
||||
"Delete cover": "Delete cover",
|
||||
"Delete userpic": "Delete userpic",
|
||||
"Delete": "Delete",
|
||||
"Description": "Description",
|
||||
"Discours Manifest": "Discours Manifest",
|
||||
"Discours Partners": "Discours Partners",
|
||||
"Discours is an intellectual environment, a web space and tools that allows authors to collaborate with readers and come together to co-create publications and media projects": "Discours is an intellectual environment, a web space and tools that allows authors to collaborate with readers and come together to co-create publications and media projects.<br/><em>We are convinced that one voice is good, but many is better. We create the most amazing stories together</em>",
|
||||
"Discours is created with our common effort": "Discours exists because of our common effort",
|
||||
"Discours – an open magazine about culture, science and society": "Discours – an open magazine about culture, science and society",
|
||||
"Discours": "Discours",
|
||||
"Discussing": "Discussing",
|
||||
"Discussion rules": "Discussion rules",
|
||||
"Discussions": "Discussions",
|
||||
"Do you really want to reset all changes?": "Do you really want to reset all changes?",
|
||||
"Dogma": "Dogma",
|
||||
"Draft successfully deleted": "Draft successfully deleted",
|
||||
"Drafts": "Drafts",
|
||||
"Drag the image to this area": "Drag the image to this area",
|
||||
"Each image must be no larger than 5 MB.": "Each image must be no larger than 5 MB.",
|
||||
"Edit profile": "Edit profile",
|
||||
"Edit": "Edit",
|
||||
"Editing": "Editing",
|
||||
"Editor": "Editor",
|
||||
"Email": "Mail",
|
||||
"Enter URL address": "Enter URL address",
|
||||
"Enter a new password": "Enter a new password",
|
||||
"Enter footnote text": "Enter footnote text",
|
||||
"Enter image description": "Enter image description",
|
||||
"Enter image title": "Enter image title",
|
||||
"Enter text": "Enter text",
|
||||
"Enter the code or click the link from email to confirm": "Enter the code from the email or follow the link in the email to confirm registration",
|
||||
"Enter your new password": "Enter your new password",
|
||||
"Enter": "Enter",
|
||||
"Error": "Error",
|
||||
"Please give us your email address": "Please provide us your email address to get the password reset link",
|
||||
"Experience": "Experience",
|
||||
"FAQ": "Tips and suggestions",
|
||||
"Favorite topics": "Favorite topics",
|
||||
"Favorite": "Favorites",
|
||||
"Feed settings": "Feed settings",
|
||||
"Feed": "Feed",
|
||||
"Feedback": "Feedback",
|
||||
"Fill email": "Fill email",
|
||||
"Fixed": "Fixed",
|
||||
"Follow the topic": "Follow the topic",
|
||||
"Follow": "Follow",
|
||||
"Followers": "Followers",
|
||||
"Following": "Following",
|
||||
"Forward": "Forward",
|
||||
"Full name": "First and last name",
|
||||
"Gallery name": "Gallery name",
|
||||
"Gallery": "Gallery",
|
||||
"Get to know the most intelligent people of our time, edit and discuss the articles, share your expertise, rate and decide what to publish in the magazine": "Get to know the most intelligent people of our time, edit and discuss the articles, share your expertise, rate and decide what to publish in the magazine",
|
||||
"Go to main page": "Go to main page",
|
||||
"Group Chat": "Group Chat",
|
||||
"Groups": "Groups",
|
||||
"Header 1": "Header 1",
|
||||
"Header 2": "Header 2",
|
||||
"Header 3": "Header 3",
|
||||
"Headers": "Headers",
|
||||
"Help to edit": "Help to edit",
|
||||
"Help": "Помощь",
|
||||
"Here you can customize your profile the way you want.": "Here you can customize your profile the way you want.",
|
||||
"Here you can manage all your Discours subscriptions": "Here you can manage all your Discours subscriptions",
|
||||
"Here you can upload your photo": "Here you can upload your photo",
|
||||
"Hide table of contents": "Hide table of contents",
|
||||
"Highlight": "Highlight",
|
||||
"Hooray! Welcome!": "Hooray! Welcome!",
|
||||
"Horizontal collaborative journalistic platform": "Horizontal collaborative journalism platform",
|
||||
"Hot topics": "Hot topics",
|
||||
"Hotkeys": "Горячие клавиши",
|
||||
"How Discours works": "How Discours works",
|
||||
"How can I help/skills": "How can I help/skills",
|
||||
"How it works": "How it works",
|
||||
"How to help": "How to help?",
|
||||
"How to write a good article": "Как написать хорошую статью",
|
||||
"How to write an article": "How to write an article",
|
||||
"Hundreds of people from different countries and cities share their knowledge and art on the Discours. Join us!": "Hundreds of people from different countries and cities share their knowledge and art on the Discours. Join us!",
|
||||
"I have an account": "I have an account!",
|
||||
"I have no account yet": "I don't have an account yet",
|
||||
"I know the password": "I know the password",
|
||||
"Image format not supported": "Image format not supported",
|
||||
"In bookmarks, you can save favorite discussions and materials that you want to return to": "In bookmarks, you can save favorite discussions and materials that you want to return to",
|
||||
"Inbox": "Inbox",
|
||||
"Incut": "Incut",
|
||||
"Independant magazine with an open horizontal cooperation about culture, science and society": "Independant magazine with an open horizontal cooperation about culture, science and society",
|
||||
"Independent media project about culture, science, art and society with horizontal editing": "Independent media project about culture, science, art and society with horizontal editing",
|
||||
"Insert footnote": "Insert footnote",
|
||||
"Insert video link": "Insert video link",
|
||||
"Interview": "Interview",
|
||||
"Introduce": "Introduction",
|
||||
"Invalid email": "Check if your email is correct",
|
||||
"Invalid image URL": "Invalid image URL",
|
||||
"Invalid url format": "Invalid url format",
|
||||
"Invite co-authors": "Invite co-authors",
|
||||
"Invite collaborators": "Invite collaborators",
|
||||
"Invite to collab": "Invite to Collab",
|
||||
"Invite": "Invite",
|
||||
"It does not look like url": "It doesn't look like a link",
|
||||
"Italic": "Italic",
|
||||
"Join our maillist": "To receive the best postings, just enter your email",
|
||||
"Join the community": "Join the community",
|
||||
"Join the global community of authors!": "Join the global community of authors from all over the world!",
|
||||
"Join": "Join",
|
||||
"Just start typing...": "Just start typing...",
|
||||
"Knowledge base": "Knowledge base",
|
||||
"Language": "Language",
|
||||
"Last rev.": "Посл. изм.",
|
||||
"Let's log in": "Let's log in",
|
||||
"Link copied to clipboard": "Link copied to clipboard",
|
||||
"Link copied": "Link copied",
|
||||
"Link sent, check your email": "Link sent, check your email",
|
||||
"List of authors of the open editorial community": "List of authors of the open editorial community",
|
||||
"Lists": "Lists",
|
||||
"Literature": "Literature",
|
||||
"Load more": "Show more",
|
||||
"Loading": "Loading",
|
||||
"Logout": "Logout",
|
||||
"Looks like you forgot to upload the video": "Looks like you forgot to upload the video",
|
||||
"Manifest of samizdat: principles and mission of an open magazine with a horizontal editorial board": "Manifest of samizdat: principles and mission of an open magazine with a horizontal editorial board",
|
||||
"Manifesto": "Manifesto",
|
||||
"Many files, choose only one": "Many files, choose only one",
|
||||
"Mark as read": "Mark as read",
|
||||
"Material card": "Material card",
|
||||
"Message": "Message",
|
||||
"More": "More",
|
||||
"Most commented": "Commented",
|
||||
"Most read": "Readable",
|
||||
"Move down": "Move down",
|
||||
"Move up": "Move up",
|
||||
"Music": "Music",
|
||||
"My feed": "My feed",
|
||||
"My subscriptions": "Subscriptions",
|
||||
"Name": "Name",
|
||||
"New literary work": "New literary work",
|
||||
"New only": "New only",
|
||||
"New password": "New password",
|
||||
"New stories every day and even more!": "New stories and more are waiting for you every day!",
|
||||
"Newsletter": "Newsletter",
|
||||
"Night mode": "Night mode",
|
||||
"No notifications yet": "No notifications yet",
|
||||
"Nothing here yet": "There's nothing here yet",
|
||||
"Nothing is here": "There is nothing here",
|
||||
"Notifications": "Notifications",
|
||||
"Now you can enter a new password, it must contain at least 8 characters and not be the same as the previous password": "Now you can enter a new password, it must contain at least 8 characters and not be the same as the previous password",
|
||||
"Or paste a link to an image": "Or paste a link to an image",
|
||||
"Ordered list": "Ordered list",
|
||||
"Our regular contributor": "Our regular contributor",
|
||||
"Paragraphs": "Абзацев",
|
||||
"Participate in the Discours: share information, join the editorial team": "Участвуйте в Дискурсе: делитесь информацией, присоединяйтесь к редакции",
|
||||
"Participating": "Participating",
|
||||
"Participation": "Participation",
|
||||
"Partners": "Partners",
|
||||
"Password again": "Password again",
|
||||
"Password should be at least 8 characters": "Password should be at least 8 characters",
|
||||
"Password should contain at least one number": "Password should contain at least one number",
|
||||
"Password should contain at least one special character: !@#$%^&*": "Password should contain at least one special character: !@#$%^&*",
|
||||
"Password updated!": "Password updated!",
|
||||
"Password": "Password",
|
||||
"Passwords are not equal": "Passwords are not equal",
|
||||
"Paste Embed code": "Paste Embed code",
|
||||
"Personal": "Personal",
|
||||
"Pin": "Pin",
|
||||
"Platform Guide": "Platform Guide",
|
||||
"Please check your email address": "Please check your email address",
|
||||
"Please confirm your email to finish": "Confirm your email and the action will complete",
|
||||
"Please enter a name to sign your comments and publication": "Please enter a name to sign your comments and publication",
|
||||
"Please enter email": "Please enter your email",
|
||||
"Please enter password again": "Please enter password again",
|
||||
"Please enter password": "Please enter a password",
|
||||
"Please, confirm email": "Please confirm email",
|
||||
"Please, set the main topic first": "Please, set the main topic first",
|
||||
"Podcasts": "Podcasts",
|
||||
"Poetry": "Poetry",
|
||||
"Popular authors": "Popular authors",
|
||||
"Popular": "Popular",
|
||||
"Principles": "Community principles",
|
||||
"Professional principles that the open editorial team follows in its work": "Professional principles that the open editorial team follows in its work",
|
||||
"Profile settings": "Profile settings",
|
||||
"Profile": "Profile",
|
||||
"Publications": "Publications",
|
||||
"PublicationsWithCount": "{count, plural, =0 {no publications} one {{count} publication} other {{count} publications}}",
|
||||
"FollowersWithCount": "{count, plural, =0 {no followers} one {{count} follower} other {{count} followers}}",
|
||||
"Publish Album": "Publish Album",
|
||||
"Publish Settings": "Publish Settings",
|
||||
"Published": "Published",
|
||||
"Punchline": "Punchline",
|
||||
"Quit": "Quit",
|
||||
"Quote": "Quote",
|
||||
"Quotes": "Quotes",
|
||||
"Reason uknown": "Reason unknown",
|
||||
"Recent": "Fresh",
|
||||
"Registered since {date}": "Registered since {date}",
|
||||
"Remove link": "Remove link",
|
||||
"Reply": "Reply",
|
||||
"Report": "Complain",
|
||||
"Reports": "Reports",
|
||||
"Required": "Required",
|
||||
"Resend code": "Send confirmation",
|
||||
"Rules of the journal Discours": "Rules of the journal Discours",
|
||||
"Save draft": "Save draft",
|
||||
"Save settings": "Save settings",
|
||||
"Saving...": "Saving...",
|
||||
"Scroll up": "Scroll up",
|
||||
"Search author": "Search author",
|
||||
"Search topic": "Search topic",
|
||||
"Search": "Search",
|
||||
"Sections": "Sections",
|
||||
"Security": "Security",
|
||||
"Select": "Select",
|
||||
"Self-publishing exists thanks to the help of wonderful people from all over the world. Thank you!": "Samizdat exists thanks to the help of wonderful people from all over the world. Thank you!",
|
||||
"Send link again": "Send link again",
|
||||
"Send": "Send",
|
||||
"Set the new password": "Set the new password",
|
||||
"Settings": "Settings",
|
||||
"Share publication": "Share publication",
|
||||
"Share": "Share",
|
||||
"Show lyrics": "Show lyrics",
|
||||
"Show more": "Show more",
|
||||
"Show table of contents": "Show table of contents",
|
||||
"Show": "Show",
|
||||
"Site search": "Site search",
|
||||
"Slug": "Slug",
|
||||
"Social networks": "Social networks",
|
||||
"Society": "Society",
|
||||
"Some new comments to your publication": "{commentsCount, plural, one {New comment} other {{commentsCount} comments}} to your publication",
|
||||
"Some new replies to your comment": "{commentsCount, plural, one {New reply} other {{commentsCount} replays}} to your publication",
|
||||
"Something went wrong, check email and password": "Something went wrong. Check your email and password",
|
||||
"Something went wrong, please try again": "Something went wrong, please try again",
|
||||
"Song lyrics": "Song lyrics...",
|
||||
"Song title": "Song title",
|
||||
"Soon": "Скоро",
|
||||
"Sorry, this address is already taken, please choose another one.": "Sorry, this address is already taken, please choose another one",
|
||||
"Special Projects": "Special Projects",
|
||||
"Special projects": "Special projects",
|
||||
"Specify the source and the name of the author": "Specify the source and the name of the author",
|
||||
"Start conversation": "Start a conversation",
|
||||
"Start dialog": "Start dialog",
|
||||
"Subsccriptions": "Subscriptions",
|
||||
"Subscribe to the best publications newsletter": "Subscribe to the best publications newsletter",
|
||||
"Subscribe us": "Subscribe us",
|
||||
"Subscribe what you like to tune your personal feed": "Subscribe to topics that interest you to customize your personal feed and get instant updates on new posts and discussions",
|
||||
"Subscribe who you like to tune your personal feed": "Subscribe to authors you're interested in to customize your personal feed and get instant updates on new posts and discussions",
|
||||
"Subscribe": "Subscribe",
|
||||
"SubscriberWithCount": "{count, plural, =0 {no followers} one {{count} follower} other {{count} followers}}",
|
||||
"Subscription": "Subscription",
|
||||
"SubscriptionWithCount": "{count, plural, =0 {no subscriptions} one {{count} subscription} other {{count} subscriptions}}",
|
||||
"Subscriptions": "Subscriptions",
|
||||
"Substrate": "Substrate",
|
||||
"Success": "Success",
|
||||
"Successfully authorized": "Authorization successful",
|
||||
"Suggest an idea": "Suggest an idea",
|
||||
"Support Discours": "Support Discours",
|
||||
"Support the project": "Support the project",
|
||||
"Support us": "Support us",
|
||||
"Terms of use": "Site rules",
|
||||
"Text checking": "Text checking",
|
||||
"Thank you!": "Thank you!",
|
||||
"Thank you": "Thank you",
|
||||
"The address is already taken": "The address is already taken",
|
||||
"The most interesting publications on the topic": "The most interesting publications on the topic {topicName}",
|
||||
"Thematic table of contents of the magazine. Here you can find all the topics that community authors have written about.": "Thematic table of contents of the magazine. Here you can find all the topics that community authors have written about.",
|
||||
"Thematic table of contents of the magazine. Here you can find all the topics that the community authors wrote about": "Thematic table of contents of the magazine. Here you can find all the topics that the community authors wrote about",
|
||||
"Themes and plots": "Themes and plots",
|
||||
"Please, set the article title": "Please, set the article title",
|
||||
"Theory": "Theory",
|
||||
"There are unsaved changes in your profile settings. Are you sure you want to leave the page without saving?": "There are unsaved changes in your profile settings. Are you sure you want to leave the page without saving?",
|
||||
"There are unsaved changes in your publishing settings. Are you sure you want to leave the page without saving?": "There are unsaved changes in your publishing settings. Are you sure you want to leave the page without saving?",
|
||||
"This comment has not yet been rated": "This comment has not yet been rated",
|
||||
"This email is": "This email is",
|
||||
"This email is not verified": "This email is not verified",
|
||||
"This email is verified": "This email is verified",
|
||||
"This email is registered": "This email is registered",
|
||||
"This functionality is currently not available, we would like to work on this issue. Use the download link.": "This functionality is currently not available, we would like to work on this issue. Use the download link.",
|
||||
"This month": "This month",
|
||||
"This post has not been rated yet": "This post has not been rated yet",
|
||||
"This way we ll realize that you re a real person and ll take your vote into account. And you ll see how others voted": "This way we ll realize that you re a real person and ll take your vote into account. And you ll see how others voted",
|
||||
"This way you ll be able to subscribe to authors, interesting topics and customize your feed": "This way you ll be able to subscribe to authors, interesting topics and customize your feed",
|
||||
"This week": "This week",
|
||||
"This year": "This year",
|
||||
"To find publications, art, comments, authors and topics of interest to you, just start typing your query": "To find publications, art, comments, authors and topics of interest to you, just start typing your query",
|
||||
"To leave a comment please": "To leave a comment please",
|
||||
"To write a comment, you must": "To write a comment, you must",
|
||||
"Top authors": "Authors rating",
|
||||
"Top commented": "Most commented",
|
||||
"Top discussed": "Top discussed",
|
||||
"Top month articles": "Top of the month",
|
||||
"Top rated": "Popular",
|
||||
"Top recent": "Most recent",
|
||||
"Top topics": "Interesting topics",
|
||||
"Top viewed": "Most viewed",
|
||||
"Topic is supported by": "Topic is supported by",
|
||||
"Topics which supported by author": "Topics which supported by author",
|
||||
"Topics": "Topics",
|
||||
"Try to find another way": "Try to find another way",
|
||||
"Unfollow the topic": "Unfollow the topic",
|
||||
"Unfollow": "Unfollow",
|
||||
"Unnamed draft": "Unnamed draft",
|
||||
"Upload error": "Upload error",
|
||||
"Upload userpic": "Upload userpic",
|
||||
"Upload video": "Upload video",
|
||||
"Upload": "Upload",
|
||||
"Uploading image": "Uploading image",
|
||||
"Username": "Username",
|
||||
"Userpic": "Userpic",
|
||||
"Users": "Users",
|
||||
"Video format not supported": "Video format not supported",
|
||||
"Video": "Video",
|
||||
"Views": "Views",
|
||||
"We are working on collaborative editing of articles and in the near future you will have an amazing opportunity - to create together with your colleagues": "We are working on collaborative editing of articles and in the near future you will have an amazing opportunity - to create together with your colleagues",
|
||||
"We can't find you, check email or": "We can't find you, check email or",
|
||||
"We couldn't find anything for your request": "We couldn’t find anything for your request",
|
||||
"We know you, please try to login": "This email address is already registered, please try to login",
|
||||
"We've sent you a message with a link to enter our website.": "We've sent you an email with a link to your email. Follow the link in the email to enter our website.",
|
||||
"Welcome to Discours to add to your bookmarks": "Welcome to Discours to add to your bookmarks",
|
||||
"Welcome to Discours to participate in discussions": "Welcome to Discours to participate in discussions",
|
||||
"Welcome to Discours to publish articles": "Welcome to Discours to publish articles",
|
||||
"Welcome to Discours to subscribe to new publications": "Welcome to Discours to subscribe to new publications",
|
||||
"Welcome to Discours to subscribe": "Welcome to Discours to subscribe",
|
||||
"Welcome to Discours to vote": "Welcome to Discours to vote",
|
||||
"Welcome to Discours": "Welcome to Discours",
|
||||
"Where": "From",
|
||||
"Why you can earn a hole in your karma and how to receive rays of gratitude for your contribution to discussions in samizdat communities": "Why you can earn a hole in your karma and how to receive rays of gratitude for your contribution to discussions in samizdat communities",
|
||||
"Words": "Слов",
|
||||
"Work with us": "Cooperate with Discours",
|
||||
"Write a comment...": "Write a comment...",
|
||||
"Write a short introduction": "Write a short introduction",
|
||||
"Write about the topic": "Write about the topic",
|
||||
"Write an article": "Write an article",
|
||||
"Write comment": "Write comment",
|
||||
"Write good articles, comment\nand it won't be so empty here": "Write good articles, comment\nand it won't be so empty here",
|
||||
"Write message": "Write a message",
|
||||
"Write to us": "Write to us",
|
||||
"You can": "You can",
|
||||
"Write your colleagues name or email": "Write your colleague's name or email",
|
||||
"You can download multiple tracks at once in .mp3, .wav or .flac formats": "You can download multiple tracks at once in .mp3, .wav or .flac formats",
|
||||
"You can now login using your new password": "Теперь вы можете входить с помощью нового пароля",
|
||||
"You were successfully authorized": "You were successfully authorized",
|
||||
"You ll be able to participate in discussions, rate others' comments and learn about new responses": "You ll be able to participate in discussions, rate others' comments and learn about new responses",
|
||||
"You've confirmed email": "You've confirmed email",
|
||||
"You've reached a non-existed page": "You've reached a non-existed page",
|
||||
"Your email": "Your email",
|
||||
"Your name will appear on your profile page and as your signature in publications, comments and responses.": "Your name will appear on your profile page and as your signature in publications, comments and responses",
|
||||
"actions": "actions",
|
||||
"add link": "add link",
|
||||
"all topics": "all topics",
|
||||
"and some more authors": "{restUsersCount, plural, =0 {} one { and one more user} other { and more {restUsersCount} users}}",
|
||||
"article": "article",
|
||||
"author": "author",
|
||||
"authors": "authors",
|
||||
"authorsWithCount": "{count} {count, plural, one {author} other {authors}}",
|
||||
"back to menu": "back to menu",
|
||||
"bold": "bold",
|
||||
"bookmarks": "bookmarks",
|
||||
"cancel": "cancel",
|
||||
"collections": "collections",
|
||||
"community": "community",
|
||||
"contents": "contents",
|
||||
"delimiter": "delimiter",
|
||||
"discussion": "Discours",
|
||||
"dogma keywords": "Discours.io, dogma, editorial principles, code of ethics, journalism, community",
|
||||
"drafts": "drafts",
|
||||
"earlier": "earlier",
|
||||
"email not confirmed": "email not confirmed",
|
||||
"enter": "enter",
|
||||
"feed": "feed",
|
||||
"follower": "follower",
|
||||
"followersWithCount": "{count} {count, plural, one {follower} other {followers}}",
|
||||
"from": "from",
|
||||
"header 1": "header 1",
|
||||
"header 2": "header 2",
|
||||
"header 3": "header 3",
|
||||
"images": "images",
|
||||
"invalid password": "invalid password",
|
||||
"italic": "italic",
|
||||
"journal": "journal",
|
||||
"jpg, .png, max. 10 mb.": "jpg, .png, макс. 10 мб.",
|
||||
"keywords": "Discours.io, Discours magazine, Discours, culture, science, art, society, independent journalism, literature, music, cinema, video, photography",
|
||||
"literature": "literature",
|
||||
"marker list": "marker list",
|
||||
"min. 1400×1400 pix": "мин. 1400×1400 пикс.",
|
||||
"music": "music",
|
||||
"my feed": "my ribbon",
|
||||
"not verified": "not verified",
|
||||
"number list": "number list",
|
||||
"or sign in with social networks": "or sign in with social networks",
|
||||
"personal data usage and email notifications": "to process personal data and receive email notifications",
|
||||
"post": "post",
|
||||
"principles keywords": "Discours.io, communities, values, editorial rules, polyphony, creation",
|
||||
"register": "register",
|
||||
"registered": "registered",
|
||||
"repeat": "repeat",
|
||||
"resend confirmation link": "resend confirmation link",
|
||||
"shout": "post",
|
||||
"shoutsWithCount": "{count} {count, plural, one {post} other {posts}}",
|
||||
"sign up or sign in": "sign up or sign in",
|
||||
"slug is used by another user": "Slug is already taken by another user",
|
||||
"subscriber": "subscriber",
|
||||
"subscriber_rp": "subscriber",
|
||||
"subscribers": "subscribers",
|
||||
"subscribing...": "subscribing...",
|
||||
"subscription": "subscription",
|
||||
"subscription_rp": "subscription",
|
||||
"subscriptions": "subscriptions",
|
||||
"terms of use keywords": "Discours.io, site rules, terms of use",
|
||||
"terms of use": "terms of use",
|
||||
"today": "today",
|
||||
"topicKeywords": "{topic}, Discours.io, articles, journalism, research",
|
||||
"topics": "topics",
|
||||
"user already exist": "user already exists",
|
||||
"verified": "verified",
|
||||
"video": "video",
|
||||
"view": "view",
|
||||
"viewsWithCount": "{count} {count, plural, one {view} other {views}}",
|
||||
"yesterday": "yesterday"
|
||||
}
|
|
@ -1,10 +1,8 @@
|
|||
{
|
||||
"A guide to horizontal editorial: how an open journal works": "Гид по горизонтальной редакции: как работает открытый журнал",
|
||||
"A short introduction to keep the reader interested": "Добавьте вступление, чтобы заинтересовать читателя",
|
||||
"About": "О себе",
|
||||
"About the project": "О проекте",
|
||||
"actions": "действия",
|
||||
"Add": "Добавить",
|
||||
"About": "О себе",
|
||||
"Add a few topics so that the reader knows what your content is about and can find it on pages of topics that interest them. Topics can be swapped, the first topic becomes the title": "Добавьте несколько тем, чтобы читатель знал, о чем ваш материал, и мог найти его на страницах интересных ему тем. Темы можно менять местами, первая тема становится заглавной",
|
||||
"Add a link or click plus to embed media": "Добавьте ссылку или нажмите плюс для вставки медиа",
|
||||
"Add an embed widget": "Добавить embed-виджет",
|
||||
|
@ -22,36 +20,33 @@
|
|||
"Add subtitle": "Добавить подзаголовок",
|
||||
"Add to bookmarks": "Добавить в закладки",
|
||||
"Add url": "Добавить ссылку",
|
||||
"Add": "Добавить",
|
||||
"Address on Discours": "Адрес на Дискурсе",
|
||||
"Album name": "Название альбома",
|
||||
"Alignment center": "По центру",
|
||||
"Alignment left": "По левому краю",
|
||||
"Alignment right": "По правому краю",
|
||||
"All": "Все",
|
||||
"All articles": "Все материалы",
|
||||
"All authors": "Все авторы",
|
||||
"All posts": "Все публикации",
|
||||
"All posts rating": "Рейтинг всех постов",
|
||||
"All posts": "Все публикации",
|
||||
"All topics": "Все темы",
|
||||
"All": "Все",
|
||||
"Almost done! Check your email.": "Почти готово! Осталось подтвердить вашу почту.",
|
||||
"and some more authors": "{restUsersCount, plural, =0 {} one { и ещё 1 пользователя} few { и ещё {restUsersCount} пользователей} other { и ещё {restUsersCount} пользователей}}",
|
||||
"Are you sure you want to delete this comment?": "Уверены, что хотите удалить этот комментарий?",
|
||||
"Are you sure you want to delete this draft?": "Уверены, что хотите удалить этот черновик?",
|
||||
"Are you sure you want to to proceed the action?": "Вы уверены, что хотите продолжить?",
|
||||
"Art": "Искусство",
|
||||
"Article": "Статья",
|
||||
"Artist": "Исполнитель",
|
||||
"Artist...": "Исполнитель...",
|
||||
"Artworks": "Артворки",
|
||||
"Audio": "Аудио",
|
||||
"Author": "Автор",
|
||||
"author profile was not found": "не удалось найти профиль автора",
|
||||
"Authors": "Авторы",
|
||||
"Autotypograph": "Автотипограф",
|
||||
"Back": "Назад",
|
||||
"Back to editor": "Вернуться в редактор",
|
||||
"Back to main page": "Вернуться на главную",
|
||||
"back to menu": "назад в меню",
|
||||
"Back": "Назад",
|
||||
"Be the first to rate": "Оцените первым",
|
||||
"Become an author": "Стать автором",
|
||||
"Bold": "Жирный",
|
||||
|
@ -73,8 +68,8 @@
|
|||
"Can make any changes, accept or reject suggestions, and share access with others": "Может вносить любые изменения, принимать и отклонять предложения, а также делиться доступом с другими",
|
||||
"Can offer edits and comments, but cannot edit the post or share access with others": "Может предлагать правки и комментарии, но не может изменять пост и делиться доступом с другими",
|
||||
"Can write and edit text directly, and accept or reject suggestions from others": "Может писать и редактировать текст напрямую, а также принимать или отклонять предложения других",
|
||||
"Cancel": "Отмена",
|
||||
"Cancel changes": "Отменить изменения",
|
||||
"Cancel": "Отмена",
|
||||
"Change password": "Сменить пароль",
|
||||
"Characters": "Знаков",
|
||||
"Chat Title": "Тема дискурса",
|
||||
|
@ -89,117 +84,103 @@
|
|||
"Come up with a subtitle for your story": "Придумайте подзаголовок вашей истории",
|
||||
"Come up with a title for your story": "Придумайте заголовок вашей истории",
|
||||
"Coming soon": "Уже скоро",
|
||||
"Comment": "Комментировать",
|
||||
"Comment successfully deleted": "Комментарий успешно удален",
|
||||
"Comment": "Комментировать",
|
||||
"Commentator": "Комментатор",
|
||||
"Commented": "Комментируемое",
|
||||
"Commenting": "Комментирование",
|
||||
"Comments": "Комментарии",
|
||||
"Communities": "Сообщества",
|
||||
"community": "сообщество",
|
||||
"Community Discussion Rules": "Правила дискуссий в сообществе",
|
||||
"Community Principles": "Принципы сообщества",
|
||||
"Community values and rules of engagement for the open editorial team": "Ценности сообщества и правила взаимодействия открытой редакции",
|
||||
"Confirm": "Подтвердить",
|
||||
"Confirm your email and the action will complete": "Подтвердите почту и действие совершится",
|
||||
"Confirm your new password": "Подтвердите новый пароль",
|
||||
"Connect": "Привязать",
|
||||
"Contents": "Оглавление",
|
||||
"Contribute to free samizdat. Support Discours - an independent non-profit publication that works only for you. Become a pillar of the open newsroom": "Внесите вклад в свободный самиздат. Поддержите Дискурс — независимое некоммерческое издание, которое работает только для вас. Станьте опорой открытой редакции",
|
||||
"Cooperate": "Соучаствовать",
|
||||
"Cooperate with Discours": "Сотрудничать с Дискурсом",
|
||||
"Copy": "Скопировать",
|
||||
"Copy link": "Скопировать ссылку",
|
||||
"Copy": "Скопировать",
|
||||
"Corrections history": "История правок",
|
||||
"Create Chat": "Создать чат",
|
||||
"Create Group": "Создать группу",
|
||||
"Create account": "Создать аккаунт",
|
||||
"Create an account to add to your bookmarks": "Создайте аккаунт, чтобы добавить в закладки",
|
||||
"Create an account to participate in discussions": "Создайте аккаунт для участия в дискуссиях",
|
||||
"Create an account to publish articles": "Создайте аккаунт, чтобы публиковать статьи",
|
||||
"Create an account to subscribe": "Создайте аккаунт, чтобы подписаться",
|
||||
"Create an account to subscribe to new publications": "Создайте аккаунт для подписки на новые публикации",
|
||||
"Create an account to subscribe": "Создайте аккаунт, чтобы подписаться",
|
||||
"Create an account to vote": "Создайте аккаунт, чтобы голосовать",
|
||||
"Create chat": "Создать чат",
|
||||
"Create gallery": "Создать галерею",
|
||||
"Create group": "Создать группу",
|
||||
"Create post": "Создать публикацию",
|
||||
"Create video": "Создать видео",
|
||||
"Crop image": "Кадрировать изображение",
|
||||
"Culture": "Культура",
|
||||
"Current password": "Текущий пароль",
|
||||
"Date of Birth": "Дата рождения",
|
||||
"Decline": "Отмена",
|
||||
"Delete": "Удалить",
|
||||
"Delete cover": "Удалить обложку",
|
||||
"Delete userpic": "Удалить аватар",
|
||||
"delimiter": "разделитель",
|
||||
"Delete": "Удалить",
|
||||
"Description": "Описание",
|
||||
"Discours": "Дискурс",
|
||||
"Discours – an open magazine about culture, science and society": "Дискурс – открытый журнал о культуре, науке и обществе",
|
||||
"Discours exists because of our common effort": "Дискурс существует благодаря нашему общему вкладу",
|
||||
"Discours is an intellectual environment, a web space and tools that allows authors to collaborate with readers and come together to co-create publications and media projects": "Дискурс — это интеллектуальная среда, веб-пространство и инструменты, которые позволяют авторам сотрудничать с читателями и объединяться для совместного создания публикаций и медиапроектов.<br/>Мы убеждены, один голос хорошо, а много — лучше. Самые потрясающиe истории мы создаём вместе.",
|
||||
"Discours Manifest": "Манифест Дискурса",
|
||||
"Discours Partners": "Партнеры Дискурса",
|
||||
"Discours theme": "Тема дискурса",
|
||||
"Discours is an intellectual environment, a web space and tools that allows authors to collaborate with readers and come together to co-create publications and media projects": "Дискурс — это интеллектуальная среда, веб-пространство и инструменты, которые позволяют авторам сотрудничать с читателями и объединяться для совместного создания публикаций и медиапроектов.<br/>Мы убеждены, один голос хорошо, а много — лучше. Самые потрясающиe истории мы создаём вместе.",
|
||||
"Discours is created with our common effort": "Дискурс существует благодаря нашему общему вкладу",
|
||||
"Discours – an open magazine about culture, science and society": "Дискурс – открытый журнал о культуре, науке и обществе",
|
||||
"Discours": "Дискурс",
|
||||
"Discours_theme": "Тема дискурса",
|
||||
"Discussing": "Обсуждаемое",
|
||||
"discussion": "дискурс",
|
||||
"Discussion rules": "Правила дискуссий",
|
||||
"Discussions": "Дискуссии",
|
||||
"Do you really want to reset all changes?": "Вы действительно хотите сбросить все изменения?",
|
||||
"Dogma": "Догма",
|
||||
"dogma keywords": "Discours.io, догма, редакционные принципы, этический кодекс, журналистика, сообщество",
|
||||
"Draft successfully deleted": "Черновик успешно удален",
|
||||
"Drafts": "Черновики",
|
||||
"Drag the image to this area": "Перетащите изображение в эту область",
|
||||
"Each image must be no larger than 5 MB.": "Каждое изображение должно быть размером не больше 5 мб.",
|
||||
"earlier": "ранее",
|
||||
"Edit": "Редактировать",
|
||||
"Edit profile": "Редактировать профиль",
|
||||
"Edit": "Редактировать",
|
||||
"Edited": "Отредактирован",
|
||||
"Editing": "Редактирование",
|
||||
"Editor": "Редактор",
|
||||
"Email": "Почта",
|
||||
"email not confirmed": "email не подтвержден",
|
||||
"Enter": "Войти",
|
||||
"Enter URL address": "Введите адрес ссылки",
|
||||
"Enter a new password": "Введите новый пароль",
|
||||
"Enter footnote text": "Введите текст сноски",
|
||||
"Enter image description": "Введите описание изображения",
|
||||
"Enter image title": "Введите название изображения",
|
||||
"Enter text": "Введите текст",
|
||||
"Enter the code or click the link from email to confirm": "Введите код из письма или пройдите по ссылке в письме для подтверждения регистрации",
|
||||
"Enter URL address": "Введите адрес ссылки",
|
||||
"Enter your new password": "Введите новый пароль",
|
||||
"Enter": "Войти",
|
||||
"Error": "Ошибка",
|
||||
"Please give us your email address": "Пожалуйста, укажите свою почту, чтобы получить ссылку для сброса пароля",
|
||||
"Experience": "Личный опыт",
|
||||
"Failed to delete comment": "Не удалось удалить комментарий",
|
||||
"FAQ": "Советы и предложения",
|
||||
"Favorite": "Избранное",
|
||||
"Favorite topics": "Избранные темы",
|
||||
"Favorite": "Избранное",
|
||||
"Feed settings": "Настройки ленты",
|
||||
"Feed": "Лента",
|
||||
"Feed settings": "Настроить ленту",
|
||||
"Feedback": "Обратная связь",
|
||||
"Fill email": "Введите почту",
|
||||
"Fixed": "Все поправлено",
|
||||
"Follow": "Подписаться",
|
||||
"Follow the topic": "Подписаться на тему",
|
||||
"follower": "подписчик",
|
||||
"Follow": "Подписаться",
|
||||
"Followers": "Подписчики",
|
||||
"Following": "Вы подписаны",
|
||||
"Forgot password?": "Забыли пароль?",
|
||||
"Forward": "Переслать",
|
||||
"from": "от",
|
||||
"Full name": "Имя и фамилия",
|
||||
"Gallery": "Галерея",
|
||||
"Gallery name": "Название галереи",
|
||||
"Gallery": "Галерея",
|
||||
"Genre...": "Жанр...",
|
||||
"Get notifications": "Получать уведомления",
|
||||
"Get to know the most intelligent people of our time, edit and discuss the articles, share your expertise, rate and decide what to publish in the magazine": "Познакомитесь с выдающимися людьми нашего времени, участвуйте в редактировании и обсуждении статей, выступайте экспертом, оценивайте материалы других авторов со всего мира и определяйте, какие статьи будут опубликованы в журнале",
|
||||
"Go to main page": "Перейти на главную",
|
||||
"Group Chat": "Общий чат",
|
||||
"Groups": "Группы",
|
||||
"Header": "Заголовок",
|
||||
"Header 1": "Заголовок 1",
|
||||
"Header 2": "Заголовок 2",
|
||||
"Header 3": "Заголовок 3",
|
||||
"Header": "Заголовок",
|
||||
"Headers": "Заголовки",
|
||||
"Help": "Помощь",
|
||||
"Help to edit": "Помочь редактировать",
|
||||
"Help": "Помощь",
|
||||
"Here you can customize your profile the way you want.": "Здесь можно настроить свой профиль так, как вы хотите.",
|
||||
"Here you can manage all your Discours subscriptions": "Здесь можно управлять всеми своими подписками на Дискурсе",
|
||||
"Here you can upload your photo": "Здесь вы можете загрузить свою фотографию",
|
||||
|
@ -209,8 +190,8 @@
|
|||
"Horizontal collaborative journalistic platform": "Открытая платформа<br/>для независимой журналистики",
|
||||
"Hot topics": "Горячие темы",
|
||||
"Hotkeys": "Горячие клавиши",
|
||||
"How can I help/skills": "Чем могу помочь/навыки",
|
||||
"How Discours works": "Как устроен Дискурс",
|
||||
"How can I help/skills": "Чем могу помочь/навыки",
|
||||
"How it works": "Как это работает",
|
||||
"How to help": "Как помочь?",
|
||||
"How to write a good article": "Как написать хорошую статью",
|
||||
|
@ -220,11 +201,8 @@
|
|||
"I have no account yet": "У меня еще нет аккаунта",
|
||||
"I know the password": "Я знаю пароль!",
|
||||
"Image format not supported": "Тип изображения не поддерживается",
|
||||
"Image": "Изображение",
|
||||
"In bookmarks, you can save favorite discussions and materials that you want to return to": "В закладках можно сохранять избранные дискуссии и материалы, к которым хочется вернуться",
|
||||
"In bookmarks, you can save favorite discussions and materials that you want to return to": "В закладках можно сохранять избранные дискуссии и материалы, к которым хочется вернуться",
|
||||
"Inbox": "Входящие",
|
||||
"Incorrect new password confirm": "Неверное подтверждение нового пароля",
|
||||
"Incorrect old password": "Старый пароль не верен",
|
||||
"Incut": "Подверстка",
|
||||
"Independant magazine with an open horizontal cooperation about culture, science and society": "Независимый журнал с открытой горизонтальной редакцией о культуре, науке и обществе",
|
||||
"Independent media project about culture, science, art and society with horizontal editing": "Независимый медиапроект о культуре, науке, искусстве и обществе с горизонтальной редакцией",
|
||||
|
@ -234,52 +212,42 @@
|
|||
"Introduce": "Представление",
|
||||
"Invalid email": "Проверьте правильность ввода почты",
|
||||
"Invalid image URL": "Некорректная ссылка на изображение",
|
||||
"invalid password": "некорректный пароль",
|
||||
"Invalid url format": "Неверный формат ссылки",
|
||||
"Invite": "Пригласить",
|
||||
"Invite co-authors": "Пригласить соавторов",
|
||||
"Invite collaborators": "Пригласить соавторов",
|
||||
"Invite experts": "Пригласить экспертов",
|
||||
"Invite to collab": "Пригласить к участию",
|
||||
"Invite": "Пригласить",
|
||||
"It does not look like url": "Это не похоже на ссылку",
|
||||
"It's OK. Just enter your email to receive a link to change your password": "Ничего страшного. Просто укажите свою почту, чтобы получить ссылку для смены пароля",
|
||||
"Italic": "Курсив",
|
||||
"Join": "Присоединиться",
|
||||
"Join our maillist": "Чтобы получать рассылку лучших публикаций, просто укажите свою почту",
|
||||
"Join the community": "Присоединиться к сообществу",
|
||||
"Join the global community of authors!": "Присоединятесь к глобальному сообществу авторов со всего мира!",
|
||||
"Journal": "Журнал",
|
||||
"jpg, .png, max. 10 mb.": "jpg, .png, макс. 10 мб.",
|
||||
"Join": "Присоединиться",
|
||||
"Just start typing...": "Просто начните печатать...",
|
||||
"Karma": "Карма",
|
||||
"keywords": "Discours.io, журнал Дискурс, Дискурс, культура, наука, искусство, общество, независимая журналистика, литература, музыка, кино, видео, фотографии",
|
||||
"Knowledge base": "База знаний",
|
||||
"Language": "Язык",
|
||||
"Last rev.": "Посл. изм.",
|
||||
"Let's log in": "Давайте авторизуемся",
|
||||
"Liked": "Популярное",
|
||||
"Link copied": "Ссылка скопирована",
|
||||
"Link copied to clipboard": "Ссылка скопирована в буфер обмена",
|
||||
"Link copied": "Ссылка скопирована",
|
||||
"Link sent, check your email": "Ссылка отправлена, проверьте почту",
|
||||
"List of authors of the open editorial community": "Список авторов сообщества открытой редакции",
|
||||
"Lists": "Списки",
|
||||
"Literature": "Литература",
|
||||
"Load more": "Показать ещё",
|
||||
"loaded": "загружено",
|
||||
"Loading": "Загрузка",
|
||||
"Login and security": "Вход и безопасность",
|
||||
"Logout": "Выход",
|
||||
"Looks like you forgot to upload the video": "Похоже, что вы забыли загрузить видео",
|
||||
"Manifest of samizdat: principles and mission of an open magazine with a horizontal editorial board": "Манифест самиздата: принципы и миссия открытого журнала с горизонтальной редакцией",
|
||||
"Manifesto": "Манифест",
|
||||
"Many files, choose only one": "Много файлов, выберете один",
|
||||
"Mark as read": "Отметить прочитанным",
|
||||
"marker list": "маркир. список",
|
||||
"Material card": "Карточка материала",
|
||||
"Message": "Написать",
|
||||
"Message text": "Текст сообщения",
|
||||
"min. 1400×1400 pix": "мин. 1400×1400 пикс.",
|
||||
"More": "Ещё",
|
||||
"Most commented": "Комментируемое",
|
||||
"Most read": "Читаемое",
|
||||
"Move down": "Переместить вниз",
|
||||
"Move up": "Переместить вверх",
|
||||
|
@ -287,65 +255,61 @@
|
|||
"My feed": "Моя лента",
|
||||
"My subscriptions": "Подписки",
|
||||
"Name": "Имя",
|
||||
"New group": "Новая группа",
|
||||
"New literary work": "Новое произведение",
|
||||
"New message": "Новое сообщение",
|
||||
"New only": "Только новые",
|
||||
"New password": "Новый пароль",
|
||||
"New stories and more are waiting for you every day!": "Каждый день вас ждут новые истории и ещё много всего интересного!",
|
||||
"New stories every day and even more!": "Каждый день вас ждут новые истории и ещё много всего интересного!",
|
||||
"Newsletter": "Рассылка",
|
||||
"Night mode": "Ночная тема",
|
||||
"No drafts": "Нет черновиков",
|
||||
"No notifications yet": "Уведомлений пока нет",
|
||||
"No such account, please try to register": "Такой адрес не найден, попробуйте зарегистрироваться",
|
||||
"not verified": "ещё не подтверждён",
|
||||
"Nothing here yet": "Здесь пока ничего нет",
|
||||
"Nothing is here": "Здесь ничего нет",
|
||||
"Notifications": "Уведомления",
|
||||
"number list": "нумер. список",
|
||||
"or": "или",
|
||||
"Now you can enter a new password, it must contain at least 8 characters and not be the same as the previous password": "Теперь можете ввести новый пароль, он должен содержать минимум 8 символов и не совпадать с предыдущим паролем",
|
||||
"Or paste a link to an image": "Или вставьте ссылку на изображение",
|
||||
"or sign in with social networks": "или войдите через соцсеть",
|
||||
"Ordered list": "Нумерованный список",
|
||||
"Our principles": "Принципы сообщества",
|
||||
"Our regular contributor": "Наш постоянный автор",
|
||||
"Paragraphs": "Абзацев",
|
||||
"Participate in the Discours: share information, join the editorial team": "Participate in the Discours: share information, join the editorial team",
|
||||
"Participating": "Участвовать",
|
||||
"Participation": "Соучастие",
|
||||
"Partners": "Партнёры",
|
||||
"Password": "Пароль",
|
||||
"Password again": "Пароль ещё раз",
|
||||
"Password should be at least 8 characters": "Пароль должен быть не менее 8 символов",
|
||||
"Password should contain at least one number": "Пароль должен содержать хотя бы одну цифру",
|
||||
"Password should contain at least one special character: !@#$%^&*": "Пароль должен содержать хотя бы один спецсимвол: !@#$%^&*",
|
||||
"Password updated!": "Пароль обновлен!",
|
||||
"Password": "Пароль",
|
||||
"Passwords are not equal": "Пароли не совпадают",
|
||||
"Paste Embed code": "Вставьте embed код",
|
||||
"Personal": "Личные",
|
||||
"Pin": "Закрепить",
|
||||
"Platform Guide": "Гид по дискурсу",
|
||||
"Please check your email address": "Пожалуйста, проверьте введенный адрес почты",
|
||||
"Please check your inbox! We have sent a password reset link.": "Пожалуйста, проверьте свою почту, мы отправили вам письмо со ссылкой для сброса пароля",
|
||||
"Please confirm email": "Пожалуйста, подтвердите электронную почту",
|
||||
"Please check your inbox! We have sent a password reset link.": "Пожалуйста, проверьте ваш адрес почты, мы отправили ссылку для сброса пароля",
|
||||
"Please confirm your email to finish": "Подтвердите почту и действие совершится",
|
||||
"Please enter a name to sign your comments and publication": "Пожалуйста, введите имя, которое будет отображаться на сайте",
|
||||
"Please enter email": "Пожалуйста, введите почту",
|
||||
"Please enter password": "Пожалуйста, введите пароль",
|
||||
"Please enter password again": "Пожалуйста, введите пароль ещё рез",
|
||||
"Please, set the article title": "Пожалуйста, задайте заголовок статьи",
|
||||
"Please enter password": "Пожалуйста, введите пароль",
|
||||
"Please, confirm email": "Пожалуйста, подтвердите электронную почту",
|
||||
"Please, set the main topic first": "Пожалуйста, сначала выберите главную тему",
|
||||
"Please, set the article title": "Пожалуйста, задайте заголовок статьи",
|
||||
"Podcasts": "Подкасты",
|
||||
"Poetry": "Поэзия",
|
||||
"Popular": "Популярное",
|
||||
"Popular authors": "Популярные авторы",
|
||||
"post": "пост",
|
||||
"Popular": "Популярное",
|
||||
"Preview": "Предпросмотр",
|
||||
"principles keywords": "Discours.io, сообщества, ценности, правила редакции, многоголосие, созидание",
|
||||
"Principles": "Принципы сообщества",
|
||||
"Professional principles that the open editorial team follows in its work": "Профессиональные принципы, которым открытая редакция следует в работе",
|
||||
"Profile": "Профиль",
|
||||
"Profile settings": "Настройки профиля",
|
||||
"Profile successfully saved": "Профиль успешно сохранён",
|
||||
"Profile": "Профиль",
|
||||
"Publication settings": "Настройки публикации",
|
||||
"Publications": "Публикации",
|
||||
"PublicationsWithCount": "{count, plural, =0 {нет публикаций} one {{count} публикация} few {{count} публикации} other {{count} публикаций}}",
|
||||
"FollowersWithCount": "{count, plural, =0 {нет подписчиков} one {{count} подписчик} few {{count} подписчика} other {{count} подписчиков}}",
|
||||
"Publish": "Опубликовать",
|
||||
"Publish Album": "Опубликовать альбом",
|
||||
"Publish Settings": "Настройки публикации",
|
||||
|
@ -354,88 +318,67 @@
|
|||
"Quit": "Выйти",
|
||||
"Quote": "Цитата",
|
||||
"Quotes": "Цитаты",
|
||||
"Reason unknown": "Причина неизвестна",
|
||||
"Reason uknown": "Причина неизвестна",
|
||||
"Recent": "Свежее",
|
||||
"register": "зарегистрируйтесь",
|
||||
"registered": "уже зарегистрирован",
|
||||
"Registered since {date}": "На сайте c {date}",
|
||||
"Release date...": "Дата выхода...",
|
||||
"Remove link": "Убрать ссылку",
|
||||
"Repeat": "Повторить",
|
||||
"Repeat new password": "Повторите новый пароль",
|
||||
"Reply": "Ответить",
|
||||
"Report": "Пожаловаться",
|
||||
"Reports": "Репортажи",
|
||||
"Required": "Поле обязательно для заполнения",
|
||||
"Resend code": "Выслать подтверждение",
|
||||
"resend confirmation link": "отправить ссылку ещё раз",
|
||||
"Restore password": "Восстановить пароль",
|
||||
"Set the new password": "Задать новый пароль",
|
||||
"Rules of the journal Discours": "Правила журнала Дискурс",
|
||||
"Save": "Сохранить",
|
||||
"Save draft": "Сохранить черновик",
|
||||
"Save settings": "Сохранить настройки",
|
||||
"Save": "Сохранить",
|
||||
"Saving...": "Сохраняем...",
|
||||
"Scroll up": "Наверх",
|
||||
"Search": "Поиск",
|
||||
"Search author": "Поиск автора",
|
||||
"Search topic": "Поиск темы",
|
||||
"Search": "Поиск",
|
||||
"Sections": "Разделы",
|
||||
"Security": "Безопасность",
|
||||
"Select": "Выбрать",
|
||||
"Self-publishing exists thanks to the help of wonderful people from all over the world. Thank you!": "Самиздат существуют благодаря помощи замечательных людей со всего мира. Спасибо Вам!",
|
||||
"Send": "Отправить",
|
||||
"Send link again": "Прислать ссылку ещё раз",
|
||||
"Send": "Отправить",
|
||||
"Settings": "Настройки",
|
||||
"Settings for account, email, password and login methods.": "Настройки аккаунта, почты, пароля и способов входа.",
|
||||
"Share": "Поделиться",
|
||||
"Share publication": "Поделиться публикацией",
|
||||
"Share": "Поделиться",
|
||||
"Short opening": "Расскажите вашу историю...",
|
||||
"shout": "пост",
|
||||
"shout not found": "публикация не найдена",
|
||||
"Show": "Показать",
|
||||
"Show lyrics": "Текст песни",
|
||||
"Show more": "Читать дальше",
|
||||
"Show table of contents": "Показать главление",
|
||||
"sign in": "войти",
|
||||
"sign up": "зарегистрироваться",
|
||||
"Sign up": "Создать аккаунт",
|
||||
"sign up or sign in": "зарегистрироваться или войти",
|
||||
"Show": "Показать",
|
||||
"Site search": "Поиск по сайту",
|
||||
"Slug": "Постоянная ссылка",
|
||||
"slug is used by another user": "Имя уже занято другим пользователем",
|
||||
"Social networks": "Социальные сети",
|
||||
"Society": "Общество",
|
||||
"some authors": "{count} {count, plural, one {автор} few {автора} other {авторов}}",
|
||||
"some comments": "{count, plural, =0 {{count} комментариев} one {{count} комментарий} few {{count} комментария} other {{count} комментариев}}",
|
||||
"some followers": "{count} {count, plural, one {подписчик} few {подписчика} other {подписчиков}}",
|
||||
"some followings": "{count, plural, =0 {нет подписок} one {{count} подписка} few {{count} подписки} other {{count} подписок}}",
|
||||
"Some new comments to your publication": "{commentsCount, plural, one {Новый комментарий} few {{commentsCount} новых комментария} other {{commentsCount} новых комментариев}} к вашей публикации",
|
||||
"Some new replies to your comment": "{commentsCount, plural, one {Новый ответ} few {{commentsCount} новых ответа} other {{commentsCount} новых ответов}} на ваш комментарий к публикации",
|
||||
"some posts": "{count, plural, =0 {нет публикаций} one {{count} публикация} few {{count} публикации} other {{count} публикаций}}",
|
||||
"some shouts": "{count} {count, plural, one {публикация} few {публикации} other {публикаций}}",
|
||||
"some views": "{count} {count, plural, one {просмотр} few {просмотрa} other {просмотров}}",
|
||||
"Something went wrong, check email and password": "Что-то пошло не так. Проверьте адрес электронной почты и пароль",
|
||||
"Something went wrong, please try again": "Что-то пошло не так, попробуйте еще раз",
|
||||
"Song lyrics": "Текст песни...",
|
||||
"Song title": "Название песни",
|
||||
"Soon": "Скоро",
|
||||
"Sorry, this address is already taken, please choose another one.": "Увы, этот адрес уже занят, выберите другой",
|
||||
"Special Projects": "Спецпроекты",
|
||||
"Special projects": "Спецпроекты",
|
||||
"Specify the source and the name of the author": "Укажите источник и имя автора",
|
||||
"squib": "Подверстка",
|
||||
"Start conversation": "Начать беседу",
|
||||
"Start dialog": "Начать диалог",
|
||||
"Subheader": "Подзаголовок",
|
||||
"Subscribe": "Подписаться",
|
||||
"Subscribe to comments": "Подписаться на комментарии",
|
||||
"Subscribe to the best publications newsletter": "Подпишитесь на рассылку лучших публикаций",
|
||||
"Subscribe us": "Подпишитесь на нас",
|
||||
"Subscribe us": "Подпишитесь на нас",
|
||||
"Subscribe what you like to tune your personal feed": "Подпишитесь на интересующие вас темы, чтобы настроить вашу персональную ленту и моментально узнавать о новых публикациях и обсуждениях",
|
||||
"Subscribe who you like to tune your personal feed": "Подпишитесь на интересующих вас авторов, чтобы настроить вашу персональную ленту и моментально узнавать о новых публикациях и обсуждениях",
|
||||
"subscriber": "подписчик",
|
||||
"subscribers": "подписчиков",
|
||||
"Subscribing...": "Подписываем...",
|
||||
"Subscribe": "Подписаться",
|
||||
"SubscriberWithCount": "{count, plural, =0 {нет подписчиков} one {{count} подписчик} few {{count} подписчика} other {{count} подписчиков}}",
|
||||
"Subscription": "Подписка",
|
||||
"SubscriptionWithCount": "{count, plural, =0 {нет подписок} one {{count} подписка} few {{count} подписки} other {{count} подписок}}",
|
||||
"Subscriptions": "Подписки",
|
||||
"Substrate": "Подложка",
|
||||
"Success": "Успешно",
|
||||
|
@ -444,11 +387,10 @@
|
|||
"Support Discours": "Поддержите Дискурс",
|
||||
"Support the project": "Поддержать проект",
|
||||
"Support us": "Помочь журналу",
|
||||
"terms of use": "правилами пользования сайтом",
|
||||
"Terms of use": "Правила сайта",
|
||||
"Text checking": "Проверка текста",
|
||||
"Thank you": "Благодарности",
|
||||
"Thank you!": "Спасибо Вам!",
|
||||
"Thank you": "Благодарности",
|
||||
"The address is already taken": "Адрес уже занят",
|
||||
"The most interesting publications on the topic": "Самые интересные публикации по теме {topicName}",
|
||||
"Thematic table of contents of the magazine. Here you can find all the topics that community authors have written about.": "Тематическое оглавление журнала. Здесь можно найти все темы, о которых писали авторы сообщества.",
|
||||
|
@ -458,91 +400,155 @@
|
|||
"There are unsaved changes in your profile settings. Are you sure you want to leave the page without saving?": "В настройках вашего профиля есть несохраненные изменения. Уверены, что хотите покинуть страницу без сохранения?",
|
||||
"There are unsaved changes in your publishing settings. Are you sure you want to leave the page without saving?": "В настройках публикации есть несохраненные изменения. Уверены, что хотите покинуть страницу без сохранения?",
|
||||
"This comment has not yet been rated": "Этот комментарий еще пока никто не оценил",
|
||||
"This content is not published yet": "Содержимое ещё не опубликовано",
|
||||
"This email is": "Этот email",
|
||||
"This email is not verified": "Этот email не подтвержден",
|
||||
"This email is registered": "Этот email уже зарегистрирован",
|
||||
"This email is verified": "Этот email подтвержден",
|
||||
"This email is registered": "Этот email уже зарегистрирован",
|
||||
"This functionality is currently not available, we would like to work on this issue. Use the download link.": "В данный момент этот функционал не доступен, бы работаем над этой проблемой. Воспользуйтесь загрузкой по ссылке.",
|
||||
"This month": "За месяц",
|
||||
"This post has not been rated yet": "Эту публикацию еще пока никто не оценил",
|
||||
"This way we ll realize that you re a real person and ll take your vote into account. And you ll see how others voted": "Так мы поймем, что вы реальный человек, и учтем ваш голос. А вы увидите, как проголосовали другие",
|
||||
"This way you ll be able to subscribe to authors, interesting topics and customize your feed": "Так вы сможете подписаться на авторов, интересные темы и настроить свою ленту",
|
||||
"This way we ll realize that you re a real person and ll take your vote into account. And you ll see how others voted": "Так мы поймем, что вы реальный человек, и учтем ваш голос. А вы увидите, как проголосовали другие",
|
||||
"This way you ll be able to subscribe to authors, interesting topics and customize your feed": "Так вы сможете подписаться на авторов, интересные темы и настроить свою ленту",
|
||||
"This week": "За неделю",
|
||||
"This year": "За год",
|
||||
"To find publications, art, comments, authors and topics of interest to you, just start typing your query": "Для поиска публикаций, искусства, комментариев, интересных вам авторов и тем, просто начните вводить ваш запрос",
|
||||
"To find publications, art, comments, authors and topics of interest to you, just start typing your query": "Для поиска публикаций, искусства, комментариев, интересных вам авторов и тем, просто начните вводить ваш запрос",
|
||||
"To leave a comment please": "Чтобы оставить комментарий, необходимо",
|
||||
"to process personal data and receive email notifications": "на обработку персональных данных и на получение почтовых уведомлений",
|
||||
"To write a comment, you must": "Чтобы написать комментарий, необходимо",
|
||||
"today": "сегодня",
|
||||
"Top authors": "Рейтинг авторов",
|
||||
"Top commented": "Самое комментируемое",
|
||||
"Top discussed": "Обсуждаемое",
|
||||
"Top month": "Лучшее за месяц",
|
||||
"Top month articles": "Лучшие материалы месяца",
|
||||
"Top rated": "Популярное",
|
||||
"Top recent": "Самое новое",
|
||||
"Top topics": "Интересные темы",
|
||||
"Top viewed": "Самое читаемое",
|
||||
"Topic is supported by": "Тему поддерживают",
|
||||
"topicKeywords": "{topic}, Discours.io, статьи, журналистика, исследования",
|
||||
"Topics": "Темы",
|
||||
"Topics which supported by author": "Автор поддерживает темы",
|
||||
"try": "попробуйте",
|
||||
"Topics": "Темы",
|
||||
"Try to find another way": "Попробуйте найти по-другому",
|
||||
"Unfollow": "Отписаться",
|
||||
"Unfollow the topic": "Отписаться от темы",
|
||||
"Unfollow": "Отписаться",
|
||||
"Unnamed draft": "Черновик без названия",
|
||||
"UnSubscribing...": "Отписываем...",
|
||||
"Upload": "Загрузить",
|
||||
"Upload error": "Ошибка загрузки",
|
||||
"Upload userpic": "Загрузить аватар",
|
||||
"Upload video": "Загрузить видео",
|
||||
"Upload": "Загрузить",
|
||||
"Uploading image": "Загружаем изображение",
|
||||
"user already exist": "пользователь уже существует",
|
||||
"User was not found": "Пользователь не найден",
|
||||
"Username": "Имя пользователя",
|
||||
"Userpic": "Аватар",
|
||||
"Users": "Пользователи",
|
||||
"verified": "уже подтверждён",
|
||||
"Video": "Видео",
|
||||
"Video format not supported": "Тип видео не поддерживается",
|
||||
"view": "просмотр",
|
||||
"Video": "Видео",
|
||||
"Views": "Просмотры",
|
||||
"We are working on collaborative editing of articles and in the near future you will have an amazing opportunity - to create together with your colleagues": "Мы работаем над коллаборативным редактированием статей и в ближайшем времени у вас появиться удивительная возможность - творить вместе с коллегами",
|
||||
"We can't find you, check email or": "Не можем вас найти, проверьте адрес электронной почты или",
|
||||
"We couldn't find anything for your request": "Мы не смогли ничего найти по вашему запросу",
|
||||
"We couldn't find anything for your request": "Мы не смогли ничего найти по вашему запросу",
|
||||
"We know you, please try to login": "Такой адрес почты уже зарегистрирован, попробуйте залогиниться",
|
||||
"We've sent you a message with a link to enter our website.": "Мы выслали вам письмо с ссылкой на почту. Перейдите по ссылке в письме, чтобы войти на сайт.",
|
||||
"Welcome to Discours": "Добро пожаловать в Дискурс",
|
||||
"Welcome to Discours to add to your bookmarks": "Войдите в Дискурс, чтобы добавить в закладки",
|
||||
"Welcome to Discours to participate in discussions": "Войдите в Дискурс для участия в дискуссиях",
|
||||
"Welcome to Discours to publish articles": "Войдите в Дискурс, чтобы публиковать статьи",
|
||||
"Welcome to Discours to subscribe": "Войдите в Дискурс для подписки на новые публикации",
|
||||
"Welcome to Discours to subscribe to new publications": "Войдите в Дискурс, чтобы подписаться",
|
||||
"Welcome to Discours to subscribe": "Войдите в Дискурс для подписки на новые публикации",
|
||||
"Welcome to Discours to vote": "Войдите в Дискурс, чтобы голосовать",
|
||||
"Welcome to Discours": "Добро пожаловать в Дискурс",
|
||||
"Welcome!": "Добро пожаловать!",
|
||||
"Where": "Откуда",
|
||||
"Why you can earn a hole in your karma and how to receive rays of gratitude for your contribution to discussions in samizdat communities": "За что можно заслужить дырку в карме и как получить лучи благодарности за вклад в дискуссии в сообществах самиздата",
|
||||
"Words": "Слов",
|
||||
"Work with us": "Сотрудничать с Дискурсом",
|
||||
"Write a comment...": "Написать комментарий...",
|
||||
"Write a short introduction": "Напишите краткое вступление",
|
||||
"Write about the topic": "Написать в тему",
|
||||
"Write an article": "Написать статью",
|
||||
"Write comment": "Написать комментарий",
|
||||
"Write good articles, comment\nand it won't be so empty here": "Пишите хорошие статьи, комментируйте,\nи здесь станет не так пусто",
|
||||
"Write message": "Написать сообщение",
|
||||
"Write to us": "Напишите нам",
|
||||
"Write your colleagues name or email": "Напишите имя или e-mail коллеги",
|
||||
"yesterday": "вчера",
|
||||
"You can": "Вы можете",
|
||||
"You can download multiple tracks at once in .mp3, .wav or .flac formats": "Можно загрузить сразу несколько треков в форматах .mp3, .wav или .flac",
|
||||
"You can now login using your new password": "Теперь вы можете входить с помощью нового пароля",
|
||||
"You can't edit this post": "Вы не можете редактировать этот материал",
|
||||
"You ll be able to participate in discussions, rate others' comments and learn about new responses": "Вы сможете участвовать в обсуждениях, оценивать комментарии других и узнавать о новых ответах",
|
||||
"You was successfully authorized": "Вы были успешно авторизованы",
|
||||
"You ll be able to participate in discussions, rate others' comments and learn about new responses": "Вы сможете участвовать в обсуждениях, оценивать комментарии других и узнавать о новых ответах",
|
||||
"You've confirmed email": "Вы подтвердили почту",
|
||||
"You've reached a non-existed page": "Вы попали на несуществующую страницу",
|
||||
"You've successfully logged out": "Вы успешно вышли из аккаунта",
|
||||
"Your contact for answer": "Ваш контакт для ответа",
|
||||
"Your email": "Ваш email",
|
||||
"Your name will appear on your profile page and as your signature in publications, comments and responses.": "Ваше имя появится на странице вашего профиля и как ваша подпись в публикациях, комментариях и откликах"
|
||||
"Your name will appear on your profile page and as your signature in publications, comments and responses.": "Ваше имя появится на странице вашего профиля и как ваша подпись в публикациях, комментариях и откликах",
|
||||
"actions": "действия",
|
||||
"add link": "добавить ссылку",
|
||||
"all topics": "все темы",
|
||||
"and some more authors": "{restUsersCount, plural, =0 {} one { и ещё 1 пользователя} few { и ещё {restUsersCount} пользователей} other { и ещё {restUsersCount} пользователей}}",
|
||||
"article": "статья",
|
||||
"author": "автор",
|
||||
"authors": "авторы",
|
||||
"authorsWithCount": "{count} {count, plural, one {автор} few {автора} other {авторов}}",
|
||||
"back to menu": "назад в меню",
|
||||
"bold": "жирный",
|
||||
"bookmarks": "закладки",
|
||||
"cancel": "отменить",
|
||||
"collections": "коллекции",
|
||||
"community": "сообщество",
|
||||
"contents": "оглавление",
|
||||
"create_chat": "Создать чат",
|
||||
"create_group": "Создать группу",
|
||||
"delimiter": "разделитель",
|
||||
"discussion": "дискурс",
|
||||
"dogma keywords": "Discours.io, догма, редакционные принципы, этический кодекс, журналистика, сообщество",
|
||||
"drafts": "черновики",
|
||||
"earlier": "ранее",
|
||||
"email not confirmed": "email не подтвержден",
|
||||
"enter": "войти",
|
||||
"feed": "лента",
|
||||
"follower": "подписчик",
|
||||
"followersWithCount": "{count} {count, plural, one {подписчик} few {подписчика} other {подписчиков}}",
|
||||
"from": "от",
|
||||
"header 1": "заголовок 1",
|
||||
"header 2": "заголовок 2",
|
||||
"header 3": "заголовок 3",
|
||||
"images": "изображения",
|
||||
"invalid password": "некорректный пароль",
|
||||
"italic": "курсив",
|
||||
"journal": "журнал",
|
||||
"jpg, .png, max. 10 mb.": "jpg, .png, макс. 10 мб.",
|
||||
"keywords": "Discours.io, журнал Дискурс, Дискурс, культура, наука, искусство, общество, независимая журналистика, литература, музыка, кино, видео, фотографии",
|
||||
"literature": "литература",
|
||||
"marker list": "маркир. список",
|
||||
"min. 1400×1400 pix": "мин. 1400×1400 пикс.",
|
||||
"music": "музыка",
|
||||
"my feed": "моя лента",
|
||||
"not verified": "ещё не подтверждён",
|
||||
"number list": "нумер. список",
|
||||
"or sign in with social networks": "или войдите через соцсеть",
|
||||
"or": "или",
|
||||
"personal data usage and email notifications": "на обработку персональных данных и на получение почтовых уведомлений",
|
||||
"post": "пост",
|
||||
"principles keywords": "Discours.io, сообщества, ценности, правила редакции, многоголосие, созидание",
|
||||
"register": "зарегистрируйтесь",
|
||||
"registered": "уже зарегистрирован",
|
||||
"repeat": "повторить",
|
||||
"resend confirmation link": "отправить ссылку ещё раз",
|
||||
"shout": "пост",
|
||||
"shoutsWithCount": "{count} {count, plural, one {пост} few {поста} other {постов}}",
|
||||
"sign in": "войти",
|
||||
"sign up or sign in": "зарегистрироваться или войти",
|
||||
"sign up": "зарегистрироваться",
|
||||
"slug is used by another user": "Имя уже занято другим пользователем",
|
||||
"squib": "Подверстка",
|
||||
"subscriber": "подписчик",
|
||||
"subscriber_rp": "подписчика",
|
||||
"subscribers": "подписчиков",
|
||||
"subscribing...": "Подписка...",
|
||||
"terms of use keywords": "Discours.io, правила сайта, terms of use",
|
||||
"terms of use": "правилами пользования сайтом",
|
||||
"today": "сегодня",
|
||||
"topicKeywords": "{topic}, Discours.io, статьи, журналистика, исследования",
|
||||
"topics": "темы",
|
||||
"user already exist": "пользователь уже существует",
|
||||
"verified": "уже подтверждён",
|
||||
"video": "видео",
|
||||
"view": "просмотр",
|
||||
"viewsWithCount": "{count} {count, plural, one {просмотр} few {просмотрa} other {просмотров}}",
|
||||
"yesterday": "вчера"
|
||||
}
|
Before Width: | Height: | Size: 379 KiB |
Before Width: | Height: | Size: 157 KiB |
Before Width: | Height: | Size: 220 KiB |
Before Width: | Height: | Size: 192 KiB |
|
@ -1,2 +1,2 @@
|
|||
User-agent: *
|
||||
Disallow: /
|
||||
Allow: /
|
||||
|
|
51
src/app.tsx
|
@ -1,51 +0,0 @@
|
|||
import { Meta, MetaProvider } from '@solidjs/meta'
|
||||
import { Router } from '@solidjs/router'
|
||||
import { FileRoutes } from '@solidjs/start/router'
|
||||
import { type JSX, Suspense } from 'solid-js'
|
||||
|
||||
import { AuthToken } from '@authorizerdev/authorizer-js'
|
||||
import { Loading } from './components/_shared/Loading'
|
||||
import { AuthorsProvider } from './context/authors'
|
||||
import { EditorProvider } from './context/editor'
|
||||
import { FeedProvider } from './context/feed'
|
||||
import { LocalizeProvider } from './context/localize'
|
||||
import { SessionProvider } from './context/session'
|
||||
import { TopicsProvider } from './context/topics'
|
||||
import { UIProvider } from './context/ui'
|
||||
|
||||
import '~/styles/app.scss'
|
||||
|
||||
export const Providers = (props: { children?: JSX.Element }) => {
|
||||
const sessionStateChanged = (payload: AuthToken) => {
|
||||
console.debug(payload)
|
||||
// TODO: maybe load subs here
|
||||
}
|
||||
return (
|
||||
<LocalizeProvider>
|
||||
<SessionProvider onStateChangeCallback={sessionStateChanged}>
|
||||
<TopicsProvider>
|
||||
<FeedProvider>
|
||||
<MetaProvider>
|
||||
<Meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<UIProvider>
|
||||
<EditorProvider>
|
||||
<AuthorsProvider>
|
||||
<Suspense fallback={<Loading />}>{props.children}</Suspense>
|
||||
</AuthorsProvider>
|
||||
</EditorProvider>
|
||||
</UIProvider>
|
||||
</MetaProvider>
|
||||
</FeedProvider>
|
||||
</TopicsProvider>
|
||||
</SessionProvider>
|
||||
</LocalizeProvider>
|
||||
)
|
||||
}
|
||||
|
||||
export const App = () => (
|
||||
<Router root={Providers}>
|
||||
<FileRoutes />
|
||||
</Router>
|
||||
)
|
||||
|
||||
export default App
|
Before Width: | Height: | Size: 245 B After Width: | Height: | Size: 245 B |
143
src/components/App.tsx
Normal file
|
@ -0,0 +1,143 @@
|
|||
import type { PageProps, RootSearchParams } from '../pages/types'
|
||||
|
||||
import { Meta, MetaProvider } from '@solidjs/meta'
|
||||
import { Component, createEffect, createMemo } from 'solid-js'
|
||||
import { Dynamic } from 'solid-js/web'
|
||||
|
||||
import { ConfirmProvider } from '../context/confirm'
|
||||
import { ConnectProvider } from '../context/connect'
|
||||
import { EditorProvider } from '../context/editor'
|
||||
import { FollowingProvider } from '../context/following'
|
||||
import { InboxProvider } from '../context/inbox'
|
||||
import { LocalizeProvider } from '../context/localize'
|
||||
import { MediaQueryProvider } from '../context/mediaQuery'
|
||||
import { NotificationsProvider } from '../context/notifications'
|
||||
import { SessionProvider } from '../context/session'
|
||||
import { SnackbarProvider } from '../context/snackbar'
|
||||
import { DiscussionRulesPage } from '../pages/about/discussionRules.page'
|
||||
import { DogmaPage } from '../pages/about/dogma.page'
|
||||
import { GuidePage } from '../pages/about/guide.page'
|
||||
import { HelpPage } from '../pages/about/help.page'
|
||||
import { ManifestPage } from '../pages/about/manifest.page'
|
||||
import { PartnersPage } from '../pages/about/partners.page'
|
||||
import { PrinciplesPage } from '../pages/about/principles.page'
|
||||
import { ProjectsPage } from '../pages/about/projects.page'
|
||||
import { TermsOfUsePage } from '../pages/about/termsOfUse.page'
|
||||
import { ThanksPage } from '../pages/about/thanks.page'
|
||||
import { AllAuthorsPage } from '../pages/allAuthors.page'
|
||||
import { AllTopicsPage } from '../pages/allTopics.page'
|
||||
import { ArticlePage } from '../pages/article.page'
|
||||
import { AuthorPage } from '../pages/author.page'
|
||||
import { ConnectPage } from '../pages/connect.page'
|
||||
import { CreatePage } from '../pages/create.page'
|
||||
import { DraftsPage } from '../pages/drafts.page'
|
||||
import { EditPage } from '../pages/edit.page'
|
||||
import { ExpoPage } from '../pages/expo/expo.page'
|
||||
import { FeedPage } from '../pages/feed.page'
|
||||
import { FourOuFourPage } from '../pages/fourOuFour.page'
|
||||
import { InboxPage } from '../pages/inbox.page'
|
||||
import { HomePage } from '../pages/index.page'
|
||||
import { ProfileSecurityPage } from '../pages/profile/profileSecurity.page'
|
||||
import { ProfileSettingsPage } from '../pages/profile/profileSettings.page'
|
||||
import { ProfileSubscriptionsPage } from '../pages/profile/profileSubscriptions.page'
|
||||
import { SearchPage } from '../pages/search.page'
|
||||
import { TopicPage } from '../pages/topic.page'
|
||||
import { ROUTES, useRouter } from '../stores/router'
|
||||
import { MODALS, hideModal, showModal } from '../stores/ui'
|
||||
|
||||
// TODO: lazy load
|
||||
// const SomePage = lazy(() => import('./Pages/SomePage'))
|
||||
|
||||
const pagesMap: Record<keyof typeof ROUTES, Component<PageProps>> = {
|
||||
author: AuthorPage,
|
||||
authorComments: AuthorPage,
|
||||
authorAbout: AuthorPage,
|
||||
inbox: InboxPage,
|
||||
expo: ExpoPage,
|
||||
connect: ConnectPage,
|
||||
create: CreatePage,
|
||||
edit: EditPage,
|
||||
editSettings: EditPage,
|
||||
drafts: DraftsPage,
|
||||
home: HomePage,
|
||||
topics: AllTopicsPage,
|
||||
topic: TopicPage,
|
||||
authors: AllAuthorsPage,
|
||||
feed: FeedPage,
|
||||
feedMy: FeedPage,
|
||||
feedNotifications: FeedPage,
|
||||
feedBookmarks: FeedPage,
|
||||
feedCollaborations: FeedPage,
|
||||
feedDiscussions: FeedPage,
|
||||
article: ArticlePage,
|
||||
search: SearchPage,
|
||||
discussionRules: DiscussionRulesPage,
|
||||
dogma: DogmaPage,
|
||||
guide: GuidePage,
|
||||
help: HelpPage,
|
||||
manifest: ManifestPage,
|
||||
projects: ProjectsPage,
|
||||
partners: PartnersPage,
|
||||
principles: PrinciplesPage,
|
||||
termsOfUse: TermsOfUsePage,
|
||||
thanks: ThanksPage,
|
||||
profileSettings: ProfileSettingsPage,
|
||||
profileSecurity: ProfileSecurityPage,
|
||||
profileSubscriptions: ProfileSubscriptionsPage,
|
||||
fourOuFour: FourOuFourPage
|
||||
}
|
||||
|
||||
type Props = PageProps & { is404: boolean }
|
||||
|
||||
export const App = (props: Props) => {
|
||||
const { page, searchParams } = useRouter<RootSearchParams>()
|
||||
const is404 = createMemo(() => props.is404)
|
||||
|
||||
createEffect(() => {
|
||||
if (!searchParams().m) {
|
||||
hideModal()
|
||||
}
|
||||
|
||||
const modal = MODALS[searchParams().m]
|
||||
if (modal) {
|
||||
showModal(modal)
|
||||
}
|
||||
})
|
||||
|
||||
const pageComponent = createMemo(() => {
|
||||
const result = pagesMap[page()?.route || 'home']
|
||||
|
||||
if (is404() || !result || page()?.path === '/404') {
|
||||
return FourOuFourPage
|
||||
}
|
||||
|
||||
return result
|
||||
})
|
||||
|
||||
return (
|
||||
<MetaProvider>
|
||||
<Meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<LocalizeProvider>
|
||||
<MediaQueryProvider>
|
||||
<SnackbarProvider>
|
||||
<ConfirmProvider>
|
||||
<SessionProvider onStateChangeCallback={console.log}>
|
||||
<FollowingProvider>
|
||||
<ConnectProvider>
|
||||
<NotificationsProvider>
|
||||
<EditorProvider>
|
||||
<InboxProvider>
|
||||
<Dynamic component={pageComponent()} {...props} />
|
||||
</InboxProvider>
|
||||
</EditorProvider>
|
||||
</NotificationsProvider>
|
||||
</ConnectProvider>
|
||||
</FollowingProvider>
|
||||
</SessionProvider>
|
||||
</ConfirmProvider>
|
||||
</SnackbarProvider>
|
||||
</MediaQueryProvider>
|
||||
</LocalizeProvider>
|
||||
</MetaProvider>
|
||||
)
|
||||
}
|
|
@ -22,21 +22,10 @@ img {
|
|||
.articleContent {
|
||||
img:not([data-disable-lightbox='true']) {
|
||||
cursor: zoom-in;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.shoutBody {
|
||||
@include media-breakpoint-up(sm) {
|
||||
:global(.width-30) {
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
:global(.width-50) {
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
font-size: 1.6rem;
|
||||
line-height: 1.6;
|
||||
|
||||
|
@ -75,16 +64,6 @@ img {
|
|||
|
||||
blockquote[data-type='quote'],
|
||||
ta-quotation {
|
||||
@include media-breakpoint-up(sm) {
|
||||
&[data-float='left'] {
|
||||
margin-right: 1.5em;
|
||||
}
|
||||
|
||||
&[data-float='right'] {
|
||||
margin-left: 1.5em;
|
||||
}
|
||||
}
|
||||
|
||||
border: solid #000;
|
||||
border-width: 0 0 0 2px;
|
||||
clear: both;
|
||||
|
@ -98,11 +77,21 @@ img {
|
|||
&[data-float='right'] {
|
||||
@include font-size(2.2rem);
|
||||
|
||||
line-height: 1.4;
|
||||
|
||||
@include media-breakpoint-up(sm) {
|
||||
clear: none;
|
||||
}
|
||||
}
|
||||
|
||||
line-height: 1.4;
|
||||
@include media-breakpoint-up(sm) {
|
||||
&[data-float='left'] {
|
||||
margin-right: 1.5em;
|
||||
}
|
||||
|
||||
&[data-float='right'] {
|
||||
margin-left: 1.5em;
|
||||
}
|
||||
}
|
||||
|
||||
&::before {
|
||||
|
@ -116,17 +105,17 @@ img {
|
|||
ta-border-sub {
|
||||
@include font-size(1.4rem);
|
||||
|
||||
@include media-breakpoint-up(md) {
|
||||
margin: 3.2rem -8.3333%;
|
||||
padding: 3.2rem 8.3333%;
|
||||
}
|
||||
|
||||
background: #f1f2f3;
|
||||
clear: both;
|
||||
display: block;
|
||||
margin: 3.2rem 0;
|
||||
padding: 3.2rem;
|
||||
|
||||
@include media-breakpoint-up(md) {
|
||||
margin: 3.2rem -8.3333%;
|
||||
padding: 3.2rem 8.3333%;
|
||||
}
|
||||
|
||||
p:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
@ -204,6 +193,16 @@ img {
|
|||
margin: 0 8.3333% 1.5em 0;
|
||||
}
|
||||
|
||||
@include media-breakpoint-up(sm) {
|
||||
:global(.width-30) {
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
:global(.width-50) {
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
:global(.img-align-left.width-50) {
|
||||
@include media-breakpoint-up(xl) {
|
||||
margin-left: -16.6666%;
|
||||
|
@ -313,24 +312,20 @@ img {
|
|||
}
|
||||
|
||||
.shoutStats {
|
||||
@include media-breakpoint-down(lg) {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
border-top: 4px solid #000;
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
padding: 3rem 0 0;
|
||||
position: relative;
|
||||
|
||||
@include media-breakpoint-down(lg) {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
}
|
||||
|
||||
.shoutStatsItem {
|
||||
@include font-size(1.5rem);
|
||||
|
||||
@include media-breakpoint-up(xl) {
|
||||
margin-right: 3.2rem;
|
||||
}
|
||||
|
||||
align-items: center;
|
||||
font-weight: 500;
|
||||
display: flex;
|
||||
|
@ -338,6 +333,10 @@ img {
|
|||
vertical-align: baseline;
|
||||
cursor: pointer;
|
||||
|
||||
@include media-breakpoint-up(xl) {
|
||||
margin-right: 3.2rem;
|
||||
}
|
||||
|
||||
.icon {
|
||||
display: inline-block;
|
||||
margin-right: 0.2em;
|
||||
|
@ -379,11 +378,11 @@ img {
|
|||
}
|
||||
|
||||
.shoutStatsItemBookmarks {
|
||||
margin-left: auto;
|
||||
|
||||
@include media-breakpoint-up(lg) {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.shoutStatsItemInner {
|
||||
|
@ -408,15 +407,6 @@ img {
|
|||
}
|
||||
|
||||
.shoutStatsItemAdditionalData {
|
||||
@include media-breakpoint-down(lg) {
|
||||
flex: 1 100%;
|
||||
order: 9;
|
||||
|
||||
.shoutStatsItemAdditionalDataItem {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
color: rgb(0 0 0 / 40%);
|
||||
cursor: default;
|
||||
font-weight: normal;
|
||||
|
@ -427,9 +417,24 @@ img {
|
|||
opacity: 0.4;
|
||||
height: 2rem;
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(lg) {
|
||||
flex: 1 100%;
|
||||
order: 9;
|
||||
|
||||
.shoutStatsItemAdditionalDataItem {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.shoutStatsItemViews {
|
||||
color: rgb(0 0 0 / 40%);
|
||||
cursor: default;
|
||||
font-weight: normal;
|
||||
margin-left: auto;
|
||||
white-space: nowrap;
|
||||
|
||||
@include media-breakpoint-down(lg) {
|
||||
bottom: 0;
|
||||
flex: 1 40%;
|
||||
|
@ -443,12 +448,6 @@ img {
|
|||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
color: rgb(0 0 0 / 40%);
|
||||
cursor: default;
|
||||
font-weight: normal;
|
||||
margin-left: auto;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.shoutStatsItemLabel {
|
||||
|
@ -457,11 +456,11 @@ img {
|
|||
}
|
||||
|
||||
.commentsTextLabel {
|
||||
display: none;
|
||||
|
||||
@include media-breakpoint-up(sm) {
|
||||
display: block;
|
||||
}
|
||||
|
||||
display: none;
|
||||
}
|
||||
|
||||
.shoutStatsItemCount {
|
||||
|
@ -471,12 +470,6 @@ img {
|
|||
}
|
||||
|
||||
.shoutStatsItemAdditionalDataItem {
|
||||
@include media-breakpoint-down(sm) {
|
||||
&:first-child {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
font-weight: normal;
|
||||
display: inline-block;
|
||||
|
||||
|
@ -484,6 +477,12 @@ img {
|
|||
margin-right: 0;
|
||||
margin-bottom: 0;
|
||||
cursor: default;
|
||||
|
||||
@include media-breakpoint-down(sm) {
|
||||
&:first-child {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.topicsList {
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
width: 200px;
|
||||
height: 200px;
|
||||
transition: all 0.2s ease-in-out;
|
||||
background: var(--placeholder-color-semi) url('/icons/create-audio.svg') no-repeat 50% 50%;
|
||||
background: var(--placeholder-color-semi) url('/icons/create-music.svg') no-repeat 50% 50%;
|
||||
|
||||
.image {
|
||||
object-fit: cover;
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import { clsx } from 'clsx'
|
||||
import { Show, createSignal } from 'solid-js'
|
||||
|
||||
import { Icon } from '~/components/_shared/Icon'
|
||||
import { Image } from '~/components/_shared/Image'
|
||||
import { Topic } from '~/graphql/schema/core.gen'
|
||||
import { MediaItem } from '~/types/mediaitem'
|
||||
import { Topic } from '../../../graphql/schema/core.gen'
|
||||
import { MediaItem } from '../../../pages/types'
|
||||
import { CardTopic } from '../../Feed/CardTopic'
|
||||
import { Icon } from '../../_shared/Icon'
|
||||
import { Image } from '../../_shared/Image'
|
||||
|
||||
import styles from './AudioHeader.module.scss'
|
||||
|
||||
|
@ -30,19 +30,19 @@ export const AudioHeader = (props: Props) => {
|
|||
</div>
|
||||
<div class={styles.albumInfo}>
|
||||
<Show when={props.topic}>
|
||||
<CardTopic title={props.topic.title || ''} slug={props.topic.slug} />
|
||||
<CardTopic title={props.topic.title} slug={props.topic.slug} />
|
||||
</Show>
|
||||
<h1>{props.title}</h1>
|
||||
<Show when={props.artistData}>
|
||||
<div class={styles.artistData}>
|
||||
<Show when={props.artistData?.artist}>
|
||||
<div class={styles.item}>{props.artistData?.artist || ''}</div>
|
||||
<div class={styles.item}>{props.artistData.artist}</div>
|
||||
</Show>
|
||||
<Show when={props.artistData?.date}>
|
||||
<div class={styles.item}>{props.artistData?.date || ''}</div>
|
||||
<div class={styles.item}>{props.artistData.date}</div>
|
||||
</Show>
|
||||
<Show when={props.artistData?.genre}>
|
||||
<div class={styles.item}>{props.artistData?.genre || ''}</div>
|
||||
<div class={styles.item}>{props.artistData.genre}</div>
|
||||
</Show>
|
||||
</div>
|
||||
</Show>
|
||||
|
|
|
@ -3,32 +3,27 @@
|
|||
}
|
||||
|
||||
.playerHeader {
|
||||
@include media-breakpoint-down(sm) {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
@include media-breakpoint-down(sm) {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
.playerTitle {
|
||||
@include media-breakpoint-down(sm) {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
max-width: 50%;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
|
||||
@include media-breakpoint-down(sm) {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.playerControls {
|
||||
@include media-breakpoint-down(sm) {
|
||||
margin-top: 20px;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
display: flex;
|
||||
min-width: 160px;
|
||||
align-items: center;
|
||||
|
@ -47,6 +42,11 @@
|
|||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(sm) {
|
||||
margin-top: 20px;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.playButton {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { Show, createEffect, createMemo, createSignal, on, onMount } from 'solid-js'
|
||||
|
||||
import { MediaItem } from '~/types/mediaitem'
|
||||
import { MediaItem } from '../../../pages/types'
|
||||
|
||||
import { PlayerHeader } from './PlayerHeader'
|
||||
import { PlayerPlaylist } from './PlayerPlaylist'
|
||||
|
@ -12,22 +12,18 @@ type Props = {
|
|||
articleSlug?: string
|
||||
body?: string
|
||||
editorMode?: boolean
|
||||
onMediaItemFieldChange?: (
|
||||
index: number,
|
||||
field: keyof MediaItem | string | number | symbol,
|
||||
value: string
|
||||
) => void
|
||||
onChangeMediaIndex?: (direction: 'up' | 'down', index: number) => void
|
||||
onMediaItemFieldChange?: (index: number, field: keyof MediaItem, value: string) => void
|
||||
onChangeMediaIndex?: (direction: 'up' | 'down', index) => void
|
||||
}
|
||||
|
||||
const getFormattedTime = (point: number) => new Date(point * 1000).toISOString().slice(14, -5)
|
||||
|
||||
export const AudioPlayer = (props: Props) => {
|
||||
let audioRef: HTMLAudioElement | undefined
|
||||
let gainNodeRef: GainNode | undefined
|
||||
let progressRef: HTMLDivElement | undefined
|
||||
let audioContextRef: AudioContext | undefined
|
||||
let mouseDownRef: boolean | undefined
|
||||
const audioRef: { current: HTMLAudioElement } = { current: null }
|
||||
const gainNodeRef: { current: GainNode } = { current: null }
|
||||
const progressRef: { current: HTMLDivElement } = { current: null }
|
||||
const audioContextRef: { current: AudioContext } = { current: null }
|
||||
const mouseDownRef: { current: boolean } = { current: false }
|
||||
|
||||
const [currentTrackDuration, setCurrentTrackDuration] = createSignal(0)
|
||||
const [currentTime, setCurrentTime] = createSignal(0)
|
||||
|
@ -35,25 +31,34 @@ export const AudioPlayer = (props: Props) => {
|
|||
const [isPlaying, setIsPlaying] = createSignal(false)
|
||||
|
||||
const currentTack = createMemo(() => props.media[currentTrackIndex()])
|
||||
createEffect(on(currentTrackIndex, () => setCurrentTrackDuration(0), { defer: true }))
|
||||
|
||||
createEffect(
|
||||
on(
|
||||
() => currentTrackIndex(),
|
||||
() => {
|
||||
setCurrentTrackDuration(0)
|
||||
},
|
||||
{ defer: true }
|
||||
)
|
||||
)
|
||||
|
||||
const handlePlayMedia = async (trackIndex: number) => {
|
||||
setIsPlaying(!isPlaying() || trackIndex !== currentTrackIndex())
|
||||
setCurrentTrackIndex(trackIndex)
|
||||
|
||||
if (audioContextRef?.state === 'suspended') {
|
||||
await audioContextRef?.resume()
|
||||
if (audioContextRef.current.state === 'suspended') {
|
||||
await audioContextRef.current.resume()
|
||||
}
|
||||
|
||||
if (isPlaying()) {
|
||||
await audioRef?.play()
|
||||
await audioRef.current.play()
|
||||
} else {
|
||||
audioRef?.pause()
|
||||
audioRef.current.pause()
|
||||
}
|
||||
}
|
||||
|
||||
const handleVolumeChange = (volume: number) => {
|
||||
if (gainNodeRef) gainNodeRef.gain.value = volume
|
||||
gainNodeRef.current.gain.value = volume
|
||||
}
|
||||
|
||||
const handleAudioEnd = () => {
|
||||
|
@ -62,22 +67,21 @@ export const AudioPlayer = (props: Props) => {
|
|||
return
|
||||
}
|
||||
|
||||
if (audioRef) audioRef.currentTime = 0
|
||||
audioRef.current.currentTime = 0
|
||||
setIsPlaying(false)
|
||||
setCurrentTrackIndex(0)
|
||||
}
|
||||
|
||||
const handleAudioTimeUpdate = () => {
|
||||
setCurrentTime(audioRef?.currentTime || 0)
|
||||
setCurrentTime(audioRef.current.currentTime)
|
||||
}
|
||||
|
||||
onMount(() => {
|
||||
audioContextRef = new AudioContext()
|
||||
gainNodeRef = audioContextRef.createGain()
|
||||
if (audioRef) {
|
||||
const track = audioContextRef?.createMediaElementSource(audioRef)
|
||||
track.connect(gainNodeRef).connect(audioContextRef?.destination)
|
||||
}
|
||||
audioContextRef.current = new AudioContext()
|
||||
gainNodeRef.current = audioContextRef.current.createGain()
|
||||
|
||||
const track = audioContextRef.current.createMediaElementSource(audioRef.current)
|
||||
track.connect(gainNodeRef.current).connect(audioContextRef.current.destination)
|
||||
})
|
||||
|
||||
const playPrevTrack = () => {
|
||||
|
@ -98,18 +102,13 @@ export const AudioPlayer = (props: Props) => {
|
|||
setCurrentTrackIndex(newCurrentTrackIndex)
|
||||
}
|
||||
|
||||
const handleMediaItemFieldChange = (
|
||||
index: number,
|
||||
field: keyof MediaItem | string | number | symbol,
|
||||
value: string
|
||||
) => {
|
||||
props.onMediaItemFieldChange?.(index, field, value)
|
||||
const handleMediaItemFieldChange = (index: number, field: keyof MediaItem, value) => {
|
||||
props.onMediaItemFieldChange(index, field, value)
|
||||
}
|
||||
|
||||
const scrub = (event: MouseEvent | undefined) => {
|
||||
if (progressRef && audioRef) {
|
||||
audioRef.currentTime = (event?.offsetX || 0 / progressRef.offsetWidth) * currentTrackDuration()
|
||||
}
|
||||
const scrub = (event) => {
|
||||
audioRef.current.currentTime =
|
||||
(event.offsetX / progressRef.current.offsetWidth) * currentTrackDuration()
|
||||
}
|
||||
|
||||
return (
|
||||
|
@ -126,11 +125,11 @@ export const AudioPlayer = (props: Props) => {
|
|||
<div class={styles.timeline}>
|
||||
<div
|
||||
class={styles.progress}
|
||||
ref={(el) => (progressRef = el)}
|
||||
onClick={scrub}
|
||||
onMouseMove={(e) => mouseDownRef && scrub(e)}
|
||||
onMouseDown={() => (mouseDownRef = true)}
|
||||
onMouseUp={() => (mouseDownRef = false)}
|
||||
ref={(el) => (progressRef.current = el)}
|
||||
onClick={(e) => scrub(e)}
|
||||
onMouseMove={(e) => mouseDownRef.current && scrub(e)}
|
||||
onMouseDown={() => (mouseDownRef.current = true)}
|
||||
onMouseUp={() => (mouseDownRef.current = false)}
|
||||
>
|
||||
<div
|
||||
class={styles.progressFilled}
|
||||
|
@ -146,13 +145,13 @@ export const AudioPlayer = (props: Props) => {
|
|||
</Show>
|
||||
</div>
|
||||
<audio
|
||||
ref={(el) => (audioRef = el)}
|
||||
ref={(el) => (audioRef.current = el)}
|
||||
onTimeUpdate={handleAudioTimeUpdate}
|
||||
src={currentTack().url.replace('images.discours.io', 'cdn.discours.io')}
|
||||
onCanPlay={() => {
|
||||
// start to play the next track on src change
|
||||
if (isPlaying() && audioRef) {
|
||||
audioRef.play()
|
||||
if (isPlaying()) {
|
||||
audioRef.current.play()
|
||||
}
|
||||
}}
|
||||
onLoadedMetadata={({ currentTarget }) => setCurrentTrackDuration(currentTarget.duration)}
|
||||
|
@ -163,7 +162,7 @@ export const AudioPlayer = (props: Props) => {
|
|||
<PlayerPlaylist
|
||||
editorMode={props.editorMode}
|
||||
onPlayMedia={handlePlayMedia}
|
||||
onChangeMediaIndex={(direction, index) => props.onChangeMediaIndex?.(direction, index)}
|
||||
onChangeMediaIndex={(direction, index) => props.onChangeMediaIndex(direction, index)}
|
||||
isPlaying={isPlaying()}
|
||||
media={props.media}
|
||||
currentTrackIndex={currentTrackIndex()}
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
import { clsx } from 'clsx'
|
||||
import { Show, createSignal } from 'solid-js'
|
||||
import { Icon } from '~/components/_shared/Icon'
|
||||
import { useOutsideClickHandler } from '~/lib/useOutsideClickHandler'
|
||||
|
||||
import { MediaItem } from '~/types/mediaitem'
|
||||
import { MediaItem } from '../../../pages/types'
|
||||
import { useOutsideClickHandler } from '../../../utils/useOutsideClickHandler'
|
||||
import { Icon } from '../../_shared/Icon'
|
||||
|
||||
import styles from './AudioPlayer.module.scss'
|
||||
|
||||
type Props = {
|
||||
|
@ -16,7 +17,10 @@ type Props = {
|
|||
}
|
||||
|
||||
export const PlayerHeader = (props: Props) => {
|
||||
let volumeContainerRef: HTMLDivElement | undefined
|
||||
const volumeContainerRef: { current: HTMLDivElement } = {
|
||||
current: null
|
||||
}
|
||||
|
||||
const [isVolumeBarOpened, setIsVolumeBarOpened] = createSignal(false)
|
||||
|
||||
const toggleVolumeBar = () => {
|
||||
|
@ -61,7 +65,7 @@ export const PlayerHeader = (props: Props) => {
|
|||
>
|
||||
<Icon name="player-arrow" />
|
||||
</button>
|
||||
<div ref={(el) => (volumeContainerRef = el)} class={styles.volumeContainer}>
|
||||
<div ref={(el) => (volumeContainerRef.current = el)} class={styles.volumeContainer}>
|
||||
<Show when={isVolumeBarOpened()}>
|
||||
<input
|
||||
type="range"
|
||||
|
@ -74,7 +78,7 @@ export const PlayerHeader = (props: Props) => {
|
|||
onChange={({ target }) => props.onVolumeChange(Number(target.value))}
|
||||
/>
|
||||
</Show>
|
||||
<button onClick={toggleVolumeBar} class={styles.volumeButton} aria-label="Volume">
|
||||
<button onClick={toggleVolumeBar} class={styles.volumeButton} role="button" aria-label="Volume">
|
||||
<Icon name="volume" />
|
||||
</button>
|
||||
</div>
|
||||
|
|
|
@ -1,16 +1,17 @@
|
|||
import { gtag } from 'ga-gtag'
|
||||
import { For, Show, createSignal, lazy } from 'solid-js'
|
||||
|
||||
import { Icon } from '~/components/_shared/Icon'
|
||||
import { Popover } from '~/components/_shared/Popover'
|
||||
import { useLocalize } from '~/context/localize'
|
||||
import { MediaItem } from '~/types/mediaitem'
|
||||
import { descFromBody } from '~/utils/meta'
|
||||
import { useLocalize } from '../../../context/localize'
|
||||
import { MediaItem } from '../../../pages/types'
|
||||
import { getDescription } from '../../../utils/meta'
|
||||
import { Icon } from '../../_shared/Icon'
|
||||
import { Popover } from '../../_shared/Popover'
|
||||
import { SharePopup, getShareUrl } from '../SharePopup'
|
||||
|
||||
import styles from './AudioPlayer.module.scss'
|
||||
|
||||
const MicroEditor = lazy(() => import('../../Editor/MicroEditor'))
|
||||
const GrowingTextarea = lazy(() => import('~/components/_shared/GrowingTextarea/GrowingTextarea'))
|
||||
const SimplifiedEditor = lazy(() => import('../../Editor/SimplifiedEditor'))
|
||||
const GrowingTextarea = lazy(() => import('../../_shared/GrowingTextarea/GrowingTextarea'))
|
||||
|
||||
type Props = {
|
||||
media: MediaItem[]
|
||||
|
@ -21,30 +22,29 @@ type Props = {
|
|||
body?: string
|
||||
editorMode?: boolean
|
||||
onMediaItemFieldChange?: (index: number, field: keyof MediaItem, value: string) => void
|
||||
onChangeMediaIndex?: (direction: 'up' | 'down', index: number) => void
|
||||
onChangeMediaIndex?: (direction: 'up' | 'down', index) => void
|
||||
}
|
||||
|
||||
const _getMediaTitle = (itm: MediaItem, idx: number) => `${idx}. ${itm.artist} - ${itm.title}`
|
||||
const getMediaTitle = (itm: MediaItem, idx: number) => `${idx}. ${itm.artist} - ${itm.title}`
|
||||
|
||||
export const PlayerPlaylist = (props: Props) => {
|
||||
const { t } = useLocalize()
|
||||
const [activeEditIndex, setActiveEditIndex] = createSignal(-1)
|
||||
|
||||
const toggleDropDown = (index: number) => {
|
||||
const toggleDropDown = (index) => {
|
||||
setActiveEditIndex(activeEditIndex() === index ? -1 : index)
|
||||
}
|
||||
const handleMediaItemFieldChange = (field: keyof MediaItem, value: string) => {
|
||||
props.onMediaItemFieldChange?.(activeEditIndex(), field, value)
|
||||
props.onMediaItemFieldChange(activeEditIndex(), field, value)
|
||||
}
|
||||
|
||||
const play = (index: number) => {
|
||||
props.onPlayMedia(index)
|
||||
//const mi = props.media[index]
|
||||
//gtag('event', 'select_item', {
|
||||
//item_list_id: props.articleSlug,
|
||||
//item_list_name: getMediaTitle(mi, index),
|
||||
//items: props.media.map((it, ix) => getMediaTitle(it, ix)),
|
||||
//})
|
||||
const mi = props.media[index]
|
||||
gtag('event', 'select_item', {
|
||||
item_list_id: props.articleSlug,
|
||||
item_list_name: getMediaTitle(mi, index),
|
||||
items: props.media.map((it, ix) => getMediaTitle(it, ix))
|
||||
})
|
||||
}
|
||||
return (
|
||||
<ul class={styles.playlist}>
|
||||
|
@ -89,26 +89,26 @@ export const PlayerPlaylist = (props: Props) => {
|
|||
<div class={styles.actions}>
|
||||
<Show when={props.editorMode}>
|
||||
<Popover content={t('Move up')}>
|
||||
{(triggerRef: (el: HTMLElement) => void) => (
|
||||
{(triggerRef: (el) => void) => (
|
||||
<button
|
||||
type="button"
|
||||
ref={triggerRef}
|
||||
class={styles.action}
|
||||
disabled={index() === 0}
|
||||
onClick={() => props.onChangeMediaIndex?.('up', index())}
|
||||
onClick={() => props.onChangeMediaIndex('up', index())}
|
||||
>
|
||||
<Icon name="up-button" />
|
||||
</button>
|
||||
)}
|
||||
</Popover>
|
||||
<Popover content={t('Move down')}>
|
||||
{(triggerRef: (el: HTMLElement) => void) => (
|
||||
{(triggerRef: (el) => void) => (
|
||||
<button
|
||||
type="button"
|
||||
ref={triggerRef}
|
||||
class={styles.action}
|
||||
disabled={index() === props.media.length - 1}
|
||||
onClick={() => props.onChangeMediaIndex?.('down', index())}
|
||||
onClick={() => props.onChangeMediaIndex('down', index())}
|
||||
>
|
||||
<Icon name="up-button" class={styles.moveIconDown} />
|
||||
</button>
|
||||
|
@ -117,7 +117,7 @@ export const PlayerPlaylist = (props: Props) => {
|
|||
</Show>
|
||||
<Show when={(mi.lyrics || mi.body) && !props.editorMode}>
|
||||
<Popover content={t('Show lyrics')}>
|
||||
{(triggerRef: (el: HTMLElement) => void) => (
|
||||
{(triggerRef: (el) => void) => (
|
||||
<button ref={triggerRef} type="button" onClick={() => toggleDropDown(index())}>
|
||||
<Icon name="list" />
|
||||
</button>
|
||||
|
@ -125,7 +125,7 @@ export const PlayerPlaylist = (props: Props) => {
|
|||
</Popover>
|
||||
</Show>
|
||||
<Popover content={props.editorMode ? t('Edit') : t('Share')}>
|
||||
{(triggerRef: (el: HTMLElement) => void) => (
|
||||
{(triggerRef: (el) => void) => (
|
||||
<div ref={triggerRef}>
|
||||
<Show
|
||||
when={!props.editorMode}
|
||||
|
@ -137,8 +137,8 @@ export const PlayerPlaylist = (props: Props) => {
|
|||
>
|
||||
<SharePopup
|
||||
title={mi.title}
|
||||
description={descFromBody(props.body || '')}
|
||||
imageUrl={mi.pic || ''}
|
||||
description={getDescription(props.body)}
|
||||
imageUrl={mi.pic}
|
||||
shareUrl={getShareUrl({ pathname: `/${props.articleSlug}` })}
|
||||
trigger={
|
||||
<div>
|
||||
|
@ -171,10 +171,11 @@ export const PlayerPlaylist = (props: Props) => {
|
|||
}
|
||||
>
|
||||
<div class={styles.descriptionBlock}>
|
||||
<MicroEditor
|
||||
content={mi.body}
|
||||
<SimplifiedEditor
|
||||
initialContent={mi.body}
|
||||
placeholder={`${t('Description')}...`}
|
||||
onChange={(value: string) => handleMediaItemFieldChange('body', value)}
|
||||
smallHeight={true}
|
||||
onChange={(value) => handleMediaItemFieldChange('body', value)}
|
||||
/>
|
||||
<GrowingTextarea
|
||||
allowEnterKey={true}
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
.comment {
|
||||
@include media-breakpoint-down(sm) {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
margin: 0 0 0.5em;
|
||||
padding: 0 1rem;
|
||||
transition: background-color 0.3s;
|
||||
position: relative;
|
||||
list-style: none;
|
||||
|
||||
@include media-breakpoint-down(sm) {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
&.isNew {
|
||||
border-radius: 6px;
|
||||
background: rgb(38 56 217 / 5%);
|
||||
|
@ -179,10 +179,6 @@
|
|||
@include font-size(1.2rem);
|
||||
}
|
||||
|
||||
.commentAuthor {
|
||||
margin-right: 2rem;
|
||||
}
|
||||
|
||||
.articleAuthor {
|
||||
@include font-size(1.2rem);
|
||||
|
||||
|
@ -193,6 +189,9 @@
|
|||
.articleLink {
|
||||
@include font-size(1.2rem);
|
||||
|
||||
flex: 0 0 50%;
|
||||
margin-right: 2em;
|
||||
|
||||
@include media-breakpoint-down(md) {
|
||||
margin: 0.3em 0 0.5em;
|
||||
}
|
||||
|
@ -205,25 +204,20 @@
|
|||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
flex: 0 0 50%;
|
||||
margin-right: 2em;
|
||||
}
|
||||
|
||||
.articleLinkIcon {
|
||||
@include media-breakpoint-up(md) {
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
display: inline-block;
|
||||
margin-right: 1em;
|
||||
vertical-align: middle;
|
||||
width: 1em;
|
||||
|
||||
@include media-breakpoint-up(md) {
|
||||
margin-left: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
.commentDates {
|
||||
@include font-size(1.2rem);
|
||||
|
||||
flex: 1;
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
|
@ -233,6 +227,8 @@
|
|||
margin: 0 1em 4px 0;
|
||||
color: rgb(0 0 0 / 30%);
|
||||
|
||||
@include font-size(1.2rem);
|
||||
|
||||
.date {
|
||||
.icon {
|
||||
line-height: 1;
|
||||
|
@ -246,13 +242,13 @@
|
|||
}
|
||||
|
||||
.commentDetails {
|
||||
padding: 1rem 0.2rem 0;
|
||||
margin-bottom: 1.2rem;
|
||||
|
||||
@include media-breakpoint-up(md) {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
padding: 1rem 0.2rem 0;
|
||||
margin-bottom: 1.2rem;
|
||||
}
|
||||
|
||||
.compactUserpic {
|
||||
|
|
|
@ -1,27 +1,24 @@
|
|||
import { A } from '@solidjs/router'
|
||||
import { getPagePath } from '@nanostores/router'
|
||||
import { clsx } from 'clsx'
|
||||
import { For, Show, Suspense, createMemo, createSignal, lazy } from 'solid-js'
|
||||
import { Icon } from '~/components/_shared/Icon'
|
||||
import { ShowIfAuthenticated } from '~/components/_shared/ShowIfAuthenticated'
|
||||
import { useLocalize } from '~/context/localize'
|
||||
import { useReactions } from '~/context/reactions'
|
||||
import { useSession } from '~/context/session'
|
||||
import { useSnackbar, useUI } from '~/context/ui'
|
||||
import deleteReactionMutation from '~/graphql/mutation/core/reaction-destroy'
|
||||
import {
|
||||
Author,
|
||||
MutationCreate_ReactionArgs,
|
||||
MutationUpdate_ReactionArgs,
|
||||
Reaction,
|
||||
ReactionKind
|
||||
} from '~/graphql/schema/core.gen'
|
||||
|
||||
import { useConfirm } from '../../../context/confirm'
|
||||
import { useLocalize } from '../../../context/localize'
|
||||
import { useReactions } from '../../../context/reactions'
|
||||
import { useSession } from '../../../context/session'
|
||||
import { useSnackbar } from '../../../context/snackbar'
|
||||
import { Author, Reaction, ReactionKind } from '../../../graphql/schema/core.gen'
|
||||
import { router } from '../../../stores/router'
|
||||
import { AuthorLink } from '../../Author/AuthorLink'
|
||||
import { Userpic } from '../../Author/Userpic'
|
||||
import { Icon } from '../../_shared/Icon'
|
||||
import { ShowIfAuthenticated } from '../../_shared/ShowIfAuthenticated'
|
||||
import { CommentDate } from '../CommentDate'
|
||||
import { CommentRatingControl } from '../CommentRatingControl'
|
||||
|
||||
import styles from './Comment.module.scss'
|
||||
|
||||
const MiniEditor = lazy(() => import('../../Editor/MiniEditor'))
|
||||
const SimplifiedEditor = lazy(() => import('../../Editor/SimplifiedEditor'))
|
||||
|
||||
type Props = {
|
||||
comment: Reaction
|
||||
|
@ -33,7 +30,6 @@ type Props = {
|
|||
showArticleLink?: boolean
|
||||
clickedReply?: (id: number) => void
|
||||
clickedReplyId?: number
|
||||
onDelete?: (id: number) => void
|
||||
}
|
||||
|
||||
export const Comment = (props: Props) => {
|
||||
|
@ -41,22 +37,23 @@ export const Comment = (props: Props) => {
|
|||
const [isReplyVisible, setIsReplyVisible] = createSignal(false)
|
||||
const [loading, setLoading] = createSignal(false)
|
||||
const [editMode, setEditMode] = createSignal(false)
|
||||
const [editedBody, setEditedBody] = createSignal<string>()
|
||||
const { session, client } = useSession()
|
||||
const author = createMemo<Author>(() => session()?.user?.app_data?.profile as Author)
|
||||
const { createShoutReaction, updateShoutReaction } = useReactions()
|
||||
const { showConfirm } = useUI()
|
||||
const [clearEditor, setClearEditor] = createSignal(false)
|
||||
const { author, session } = useSession()
|
||||
const { createReaction, deleteReaction, updateReaction } = useReactions()
|
||||
const { showConfirm } = useConfirm()
|
||||
const { showSnackbar } = useSnackbar()
|
||||
|
||||
const canEdit = createMemo(
|
||||
() =>
|
||||
Boolean(author()?.id) &&
|
||||
(props.comment?.created_by?.slug === author()?.slug || session()?.user?.roles?.includes('editor'))
|
||||
(props.comment?.created_by?.id === author().id || session()?.user?.roles.includes('editor'))
|
||||
)
|
||||
|
||||
const body = createMemo(() => (editedBody() ? editedBody()?.trim() : props.comment.body?.trim() || ''))
|
||||
const comment = createMemo(() => props.comment)
|
||||
const body = createMemo(() => (comment().body || '').trim())
|
||||
|
||||
const remove = async () => {
|
||||
if (props.comment?.id) {
|
||||
if (comment()?.id) {
|
||||
try {
|
||||
const isConfirmed = await showConfirm({
|
||||
confirmBody: t('Are you sure you want to delete this comment?'),
|
||||
|
@ -66,68 +63,47 @@ export const Comment = (props: Props) => {
|
|||
})
|
||||
|
||||
if (isConfirmed) {
|
||||
const resp = await client()
|
||||
?.mutation(deleteReactionMutation, { id: props.comment.id })
|
||||
.toPromise()
|
||||
const result = resp?.data?.delete_reaction
|
||||
const { error } = result
|
||||
const notificationType = error ? 'error' : 'success'
|
||||
const notificationMessage = error
|
||||
? t('Failed to delete comment')
|
||||
: t('Comment successfully deleted')
|
||||
await showSnackbar({
|
||||
type: notificationType,
|
||||
body: notificationMessage,
|
||||
duration: 3
|
||||
})
|
||||
await deleteReaction(comment().id)
|
||||
|
||||
if (!error && props.onDelete) {
|
||||
props.onDelete(props.comment.id)
|
||||
}
|
||||
await showSnackbar({ body: t('Comment successfully deleted') })
|
||||
}
|
||||
} catch (error) {
|
||||
await showSnackbar({ body: 'error' })
|
||||
console.error('[deleteReaction]', error)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const handleCreate = async (value: string) => {
|
||||
const handleCreate = async (value) => {
|
||||
try {
|
||||
setLoading(true)
|
||||
await createShoutReaction({
|
||||
reaction: {
|
||||
kind: ReactionKind.Comment,
|
||||
reply_to: props.comment.id,
|
||||
body: value,
|
||||
shout: props.comment.shout.id
|
||||
}
|
||||
} as MutationCreate_ReactionArgs)
|
||||
await createReaction({
|
||||
kind: ReactionKind.Comment,
|
||||
reply_to: props.comment.id,
|
||||
body: value,
|
||||
shout: props.comment.shout.id
|
||||
})
|
||||
setClearEditor(true)
|
||||
setIsReplyVisible(false)
|
||||
setLoading(false)
|
||||
} catch (error) {
|
||||
console.error('[handleCreate reaction]:', error)
|
||||
}
|
||||
setClearEditor(false)
|
||||
}
|
||||
|
||||
const toggleEditMode = () => {
|
||||
setEditMode((oldEditMode) => !oldEditMode)
|
||||
}
|
||||
|
||||
const handleUpdate = async (value: string) => {
|
||||
const handleUpdate = async (value) => {
|
||||
setLoading(true)
|
||||
try {
|
||||
const reaction = await updateShoutReaction({
|
||||
reaction: {
|
||||
id: props.comment.id || 0,
|
||||
kind: ReactionKind.Comment,
|
||||
body: value,
|
||||
shout: props.comment.shout.id
|
||||
}
|
||||
} as MutationUpdate_ReactionArgs)
|
||||
if (reaction) {
|
||||
setEditedBody(value)
|
||||
}
|
||||
await updateReaction({
|
||||
id: props.comment.id,
|
||||
kind: ReactionKind.Comment,
|
||||
body: value,
|
||||
shout: props.comment.shout.id
|
||||
})
|
||||
setEditMode(false)
|
||||
setLoading(false)
|
||||
} catch (error) {
|
||||
|
@ -137,11 +113,8 @@ export const Comment = (props: Props) => {
|
|||
|
||||
return (
|
||||
<li
|
||||
id={`comment_${props.comment.id}`}
|
||||
class={clsx(styles.comment, props.class, {
|
||||
[styles.isNew]:
|
||||
(props.lastSeen || Date.now()) > (props.comment.updated_at || props.comment.created_at)
|
||||
})}
|
||||
id={`comment_${comment().id}`}
|
||||
class={clsx(styles.comment, props.class, { [styles.isNew]: comment()?.created_at > props.lastSeen })}
|
||||
>
|
||||
<Show when={!!body()}>
|
||||
<div class={styles.commentContent}>
|
||||
|
@ -150,21 +123,21 @@ export const Comment = (props: Props) => {
|
|||
fallback={
|
||||
<div>
|
||||
<Userpic
|
||||
name={props.comment.created_by.name || ''}
|
||||
userpic={props.comment.created_by.pic || ''}
|
||||
name={comment().created_by.name}
|
||||
userpic={comment().created_by.pic}
|
||||
class={clsx({
|
||||
[styles.compactUserpic]: props.compact
|
||||
})}
|
||||
/>
|
||||
<small>
|
||||
<a href={`#comment_${props.comment?.id}`}>{props.comment?.shout.title || ''}</a>
|
||||
<a href={`#comment_${comment()?.id}`}>{comment()?.shout.title || ''}</a>
|
||||
</small>
|
||||
</div>
|
||||
}
|
||||
>
|
||||
<div class={styles.commentDetails}>
|
||||
<div class={styles.commentAuthor}>
|
||||
<AuthorLink author={props.comment?.created_by as Author} />
|
||||
<AuthorLink author={comment()?.created_by as Author} />
|
||||
</div>
|
||||
|
||||
<Show when={props.isArticleAuthor}>
|
||||
|
@ -174,23 +147,32 @@ export const Comment = (props: Props) => {
|
|||
<Show when={props.showArticleLink}>
|
||||
<div class={styles.articleLink}>
|
||||
<Icon name="arrow-right" class={styles.articleLinkIcon} />
|
||||
<A href={`${props.comment.shout.slug}?commentId=${props.comment.id}`}>
|
||||
{props.comment.shout.title}
|
||||
</A>
|
||||
<a
|
||||
href={`${getPagePath(router, 'article', { slug: comment().shout.slug })}?commentId=${
|
||||
comment().id
|
||||
}`}
|
||||
>
|
||||
{comment().shout.title}
|
||||
</a>
|
||||
</div>
|
||||
</Show>
|
||||
<CommentDate showOnHover={true} comment={props.comment} isShort={true} />
|
||||
<CommentRatingControl comment={props.comment} />
|
||||
<CommentDate showOnHover={true} comment={comment()} isShort={true} />
|
||||
<CommentRatingControl comment={comment()} />
|
||||
</div>
|
||||
</Show>
|
||||
<div class={styles.commentBody}>
|
||||
<Show when={editMode()} fallback={<div innerHTML={body()} />}>
|
||||
<Suspense fallback={<p>{t('Loading')}</p>}>
|
||||
<MiniEditor
|
||||
content={editedBody() || props.comment.body || ''}
|
||||
<SimplifiedEditor
|
||||
initialContent={comment().body}
|
||||
submitButtonText={t('Save')}
|
||||
quoteEnabled={true}
|
||||
imageEnabled={true}
|
||||
placeholder={t('Write a comment...')}
|
||||
onSubmit={(value) => handleUpdate(value)}
|
||||
submitByCtrlEnter={true}
|
||||
onCancel={() => setEditMode(false)}
|
||||
setClear={clearEditor()}
|
||||
/>
|
||||
</Suspense>
|
||||
</Show>
|
||||
|
@ -203,7 +185,7 @@ export const Comment = (props: Props) => {
|
|||
disabled={loading()}
|
||||
onClick={() => {
|
||||
setIsReplyVisible(!isReplyVisible())
|
||||
props.clickedReply?.(props.comment.id)
|
||||
props.clickedReply(props.comment.id)
|
||||
}}
|
||||
class={clsx(styles.commentControl, styles.commentControlReply)}
|
||||
>
|
||||
|
@ -244,15 +226,18 @@ export const Comment = (props: Props) => {
|
|||
{/* class={clsx(styles.commentControl, styles.commentControlComplain)}*/}
|
||||
{/* onClick={() => showModal('reportComment')}*/}
|
||||
{/*>*/}
|
||||
{/* {t('Complain')}*/}
|
||||
{/* {t('Report')}*/}
|
||||
{/*</button>*/}
|
||||
</div>
|
||||
|
||||
<Show when={isReplyVisible() && props.clickedReplyId === props.comment.id}>
|
||||
<Suspense fallback={<p>{t('Loading')}</p>}>
|
||||
<MiniEditor
|
||||
<SimplifiedEditor
|
||||
quoteEnabled={true}
|
||||
imageEnabled={true}
|
||||
placeholder={t('Write a comment...')}
|
||||
onSubmit={(value) => handleCreate(value)}
|
||||
submitByCtrlEnter={true}
|
||||
/>
|
||||
</Suspense>
|
||||
</Show>
|
||||
|
@ -261,7 +246,7 @@ export const Comment = (props: Props) => {
|
|||
</Show>
|
||||
<Show when={props.sortedComments}>
|
||||
<ul>
|
||||
<For each={props.sortedComments?.filter((r) => r.reply_to === props.comment.id)}>
|
||||
<For each={props.sortedComments.filter((r) => r.reply_to === props.comment.id)}>
|
||||
{(c) => (
|
||||
<Comment
|
||||
sortedComments={props.sortedComments}
|
||||
|
|
|
@ -2,17 +2,29 @@
|
|||
@include font-size(1.2rem);
|
||||
|
||||
color: var(--secondary-color);
|
||||
align-items: center;
|
||||
align-self: center;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
flex-wrap: wrap;
|
||||
font-size: 1.2rem;
|
||||
justify-content: flex-start;
|
||||
margin: 0 1rem;
|
||||
height: 1.6rem;
|
||||
|
||||
.date {
|
||||
font-weight: 500;
|
||||
margin-right: 1rem;
|
||||
position: relative;
|
||||
|
||||
.icon {
|
||||
line-height: 1;
|
||||
width: 1rem;
|
||||
display: inline-block;
|
||||
opacity: 0.6;
|
||||
margin-right: 0.5rem;
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
|
||||
&.showOnHover {
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
import type { Reaction } from '~/graphql/schema/core.gen'
|
||||
import type { Reaction } from '../../../graphql/schema/core.gen'
|
||||
|
||||
import { clsx } from 'clsx'
|
||||
import { Show } from 'solid-js'
|
||||
|
||||
import { useLocalize } from '~/context/localize'
|
||||
import { useLocalize } from '../../../context/localize'
|
||||
import { Icon } from '../../_shared/Icon'
|
||||
|
||||
import styles from './CommentDate.module.scss'
|
||||
|
||||
|
@ -14,7 +16,7 @@ type Props = {
|
|||
}
|
||||
|
||||
export const CommentDate = (props: Props) => {
|
||||
const { formatDate } = useLocalize()
|
||||
const { t, formatDate } = useLocalize()
|
||||
|
||||
const formattedDate = (date: number) => {
|
||||
const formatDateOptions: Intl.DateTimeFormatOptions = props.isShort
|
||||
|
@ -32,6 +34,14 @@ export const CommentDate = (props: Props) => {
|
|||
})}
|
||||
>
|
||||
<time class={styles.date}>{formattedDate(props.comment.created_at * 1000)}</time>
|
||||
<Show when={props.comment.updated_at}>
|
||||
<time class={styles.date}>
|
||||
<Icon name="edit" class={styles.icon} />
|
||||
<span class={styles.text}>
|
||||
{t('Edited')} {formattedDate(props.comment.updated_at * 1000)}
|
||||
</span>
|
||||
</time>
|
||||
</Show>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
import { clsx } from 'clsx'
|
||||
import { createMemo } from 'solid-js'
|
||||
|
||||
import { useFeed } from '~/context/feed'
|
||||
import { useLocalize } from '~/context/localize'
|
||||
import { useReactions } from '~/context/reactions'
|
||||
import { useSession } from '~/context/session'
|
||||
import { useSnackbar } from '~/context/ui'
|
||||
import { Reaction, ReactionKind } from '~/graphql/schema/core.gen'
|
||||
import { useLocalize } from '../../context/localize'
|
||||
import { useReactions } from '../../context/reactions'
|
||||
import { useSession } from '../../context/session'
|
||||
import { useSnackbar } from '../../context/snackbar'
|
||||
import { Reaction, ReactionKind } from '../../graphql/schema/core.gen'
|
||||
import { loadShout } from '../../stores/zine/articles'
|
||||
import { Popup } from '../_shared/Popup'
|
||||
import { VotersList } from '../_shared/VotersList'
|
||||
|
||||
|
@ -18,23 +18,21 @@ type Props = {
|
|||
|
||||
export const CommentRatingControl = (props: Props) => {
|
||||
const { t } = useLocalize()
|
||||
const { loadShout } = useFeed()
|
||||
const { session } = useSession()
|
||||
const uid = createMemo<number>(() => session()?.user?.app_data?.profile?.id || 0)
|
||||
const { author } = useSession()
|
||||
const { showSnackbar } = useSnackbar()
|
||||
const { reactionEntities, createShoutReaction, deleteShoutReaction, loadReactionsBy } = useReactions()
|
||||
const { reactionEntities, createReaction, deleteReaction, loadReactionsBy } = useReactions()
|
||||
|
||||
const checkReaction = (reactionKind: ReactionKind) =>
|
||||
Object.values(reactionEntities).some(
|
||||
(r) =>
|
||||
r.kind === reactionKind &&
|
||||
r.created_by.id === uid() &&
|
||||
r.created_by.slug === author()?.slug &&
|
||||
r.shout.id === props.comment.shout.id &&
|
||||
r.reply_to === props.comment.id
|
||||
)
|
||||
const isUpvoted = createMemo(() => checkReaction(ReactionKind.Like))
|
||||
const isDownvoted = createMemo(() => checkReaction(ReactionKind.Dislike))
|
||||
const canVote = createMemo(() => uid() !== props.comment.created_by.id)
|
||||
const canVote = createMemo(() => author()?.slug !== props.comment.created_by.slug)
|
||||
|
||||
const commentRatingReactions = createMemo(() =>
|
||||
Object.values(reactionEntities).filter(
|
||||
|
@ -49,11 +47,11 @@ export const CommentRatingControl = (props: Props) => {
|
|||
const reactionToDelete = Object.values(reactionEntities).find(
|
||||
(r) =>
|
||||
r.kind === reactionKind &&
|
||||
r.created_by.id === uid() &&
|
||||
r.created_by.slug === author()?.slug &&
|
||||
r.shout.id === props.comment.shout.id &&
|
||||
r.reply_to === props.comment.id
|
||||
)
|
||||
if (reactionToDelete) return deleteShoutReaction(reactionToDelete.id)
|
||||
return deleteReaction(reactionToDelete.id)
|
||||
}
|
||||
|
||||
const handleRatingChange = async (isUpvote: boolean) => {
|
||||
|
@ -63,12 +61,10 @@ export const CommentRatingControl = (props: Props) => {
|
|||
} else if (isDownvoted()) {
|
||||
await deleteCommentReaction(ReactionKind.Dislike)
|
||||
} else {
|
||||
await createShoutReaction({
|
||||
reaction: {
|
||||
kind: isUpvote ? ReactionKind.Like : ReactionKind.Dislike,
|
||||
shout: props.comment.shout.id,
|
||||
reply_to: props.comment.id
|
||||
}
|
||||
await createReaction({
|
||||
kind: isUpvote ? ReactionKind.Like : ReactionKind.Dislike,
|
||||
shout: props.comment.shout.id,
|
||||
reply_to: props.comment.id
|
||||
})
|
||||
}
|
||||
} catch {
|
||||
|
@ -84,7 +80,8 @@ export const CommentRatingControl = (props: Props) => {
|
|||
return (
|
||||
<div class={styles.commentRating}>
|
||||
<button
|
||||
disabled={!(canVote() && uid())}
|
||||
role="button"
|
||||
disabled={!(canVote() && author())}
|
||||
onClick={() => handleRatingChange(true)}
|
||||
class={clsx(styles.commentRatingControl, styles.commentRatingControlUp, {
|
||||
[styles.voted]: isUpvoted()
|
||||
|
@ -94,11 +91,11 @@ export const CommentRatingControl = (props: Props) => {
|
|||
trigger={
|
||||
<div
|
||||
class={clsx(styles.commentRatingValue, {
|
||||
[styles.commentRatingPositive]: (props.comment?.stat?.rating || 0) > 0,
|
||||
[styles.commentRatingNegative]: (props.comment?.stat?.rating || 0) < 0
|
||||
[styles.commentRatingPositive]: props.comment.stat.rating > 0,
|
||||
[styles.commentRatingNegative]: props.comment.stat.rating < 0
|
||||
})}
|
||||
>
|
||||
{props.comment?.stat?.rating || 0}
|
||||
{props.comment.stat.rating || 0}
|
||||
</div>
|
||||
}
|
||||
variant="tiny"
|
||||
|
@ -109,7 +106,8 @@ export const CommentRatingControl = (props: Props) => {
|
|||
/>
|
||||
</Popup>
|
||||
<button
|
||||
disabled={!(canVote() && uid())}
|
||||
role="button"
|
||||
disabled={!(canVote() && author())}
|
||||
onClick={() => handleRatingChange(false)}
|
||||
class={clsx(styles.commentRatingControl, styles.commentRatingControlDown, {
|
||||
[styles.voted]: isDownvoted()
|
||||
|
|
|
@ -1,20 +1,40 @@
|
|||
import { clsx } from 'clsx'
|
||||
import { For, Show, createMemo, createSignal, lazy, onMount } from 'solid-js'
|
||||
|
||||
import { useFeed } from '~/context/feed'
|
||||
import { useLocalize } from '~/context/localize'
|
||||
import { useReactions } from '~/context/reactions'
|
||||
import { useSession } from '~/context/session'
|
||||
import { Author, Reaction, ReactionKind, ReactionSort } from '~/graphql/schema/core.gen'
|
||||
import { SortFunction } from '~/types/common'
|
||||
import { byCreated, byStat } from '~/utils/sort'
|
||||
import { useLocalize } from '../../context/localize'
|
||||
import { useReactions } from '../../context/reactions'
|
||||
import { useSession } from '../../context/session'
|
||||
import { Author, Reaction, ReactionKind } from '../../graphql/schema/core.gen'
|
||||
import { byCreated } from '../../utils/sortby'
|
||||
import { Button } from '../_shared/Button'
|
||||
import { Loading } from '../_shared/Loading'
|
||||
import { ShowIfAuthenticated } from '../_shared/ShowIfAuthenticated'
|
||||
import styles from './Article.module.scss'
|
||||
|
||||
import { Comment } from './Comment'
|
||||
|
||||
const MiniEditor = lazy(() => import('../Editor/MiniEditor'))
|
||||
import styles from './Article.module.scss'
|
||||
|
||||
const SimplifiedEditor = lazy(() => import('../Editor/SimplifiedEditor'))
|
||||
|
||||
type CommentsOrder = 'createdAt' | 'rating' | 'newOnly'
|
||||
|
||||
const sortCommentsByRating = (a: Reaction, b: Reaction): -1 | 0 | 1 => {
|
||||
if (a.reply_to && b.reply_to) {
|
||||
return 0
|
||||
}
|
||||
|
||||
const x = a.stat?.rating || 0
|
||||
const y = b.stat?.rating || 0
|
||||
|
||||
if (x > y) {
|
||||
return 1
|
||||
}
|
||||
|
||||
if (x < y) {
|
||||
return -1
|
||||
}
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
type Props = {
|
||||
articleAuthors: Author[]
|
||||
|
@ -23,70 +43,63 @@ type Props = {
|
|||
}
|
||||
|
||||
export const CommentsTree = (props: Props) => {
|
||||
const { session } = useSession()
|
||||
const { author } = useSession()
|
||||
const { t } = useLocalize()
|
||||
const [commentsOrder, setCommentsOrder] = createSignal<ReactionSort>(ReactionSort.Newest)
|
||||
const [onlyNew, setOnlyNew] = createSignal(false)
|
||||
const [commentsOrder, setCommentsOrder] = createSignal<CommentsOrder>('createdAt')
|
||||
const [newReactions, setNewReactions] = createSignal<Reaction[]>([])
|
||||
const [clearEditor, setClearEditor] = createSignal(false)
|
||||
const [clickedReplyId, setClickedReplyId] = createSignal<number>()
|
||||
const { reactionEntities, createShoutReaction, loadReactionsBy } = useReactions()
|
||||
const { reactionEntities, createReaction } = useReactions()
|
||||
|
||||
const comments = createMemo(() =>
|
||||
Object.values(reactionEntities()).filter((reaction) => reaction.kind === 'COMMENT')
|
||||
Object.values(reactionEntities).filter((reaction) => reaction.kind === 'COMMENT')
|
||||
)
|
||||
|
||||
const sortedComments = createMemo(() => {
|
||||
let newSortedComments = [...comments()]
|
||||
newSortedComments = newSortedComments.sort(byCreated)
|
||||
|
||||
if (onlyNew()) {
|
||||
return newReactions().sort(byCreated).reverse()
|
||||
if (commentsOrder() === 'newOnly') {
|
||||
return newReactions().reverse()
|
||||
}
|
||||
|
||||
if (commentsOrder() === ReactionSort.Like) {
|
||||
newSortedComments = newSortedComments.sort(byStat('rating') as SortFunction<Reaction>)
|
||||
if (commentsOrder() === 'rating') {
|
||||
newSortedComments = newSortedComments.sort(sortCommentsByRating)
|
||||
}
|
||||
return newSortedComments
|
||||
})
|
||||
const { seen } = useFeed()
|
||||
const shoutLastSeen = createMemo(() => seen()[props.shoutSlug] ?? 0)
|
||||
|
||||
const dateFromLocalStorage = Number.parseInt(localStorage.getItem(`${props.shoutSlug}`))
|
||||
const currentDate = new Date()
|
||||
const setCookie = () => localStorage.setItem(`${props.shoutSlug}`, `${currentDate}`)
|
||||
|
||||
onMount(() => {
|
||||
const currentDate = new Date()
|
||||
const setCookie = () => localStorage?.setItem(`${props.shoutSlug}`, `${currentDate}`)
|
||||
if (!shoutLastSeen()) {
|
||||
if (!dateFromLocalStorage) {
|
||||
setCookie()
|
||||
} else if (currentDate.getTime() > shoutLastSeen()) {
|
||||
} else if (currentDate.getTime() > dateFromLocalStorage) {
|
||||
const newComments = comments().filter((c) => {
|
||||
if (
|
||||
(session()?.user?.app_data?.profile?.id && c.reply_to) ||
|
||||
c.created_by.id === session()?.user?.app_data?.profile?.id
|
||||
) {
|
||||
if (c.reply_to || c.created_by.slug === author()?.slug) {
|
||||
return
|
||||
}
|
||||
return (c.updated_at || c.created_at) > shoutLastSeen()
|
||||
const created = c.created_at
|
||||
return created > dateFromLocalStorage
|
||||
})
|
||||
setNewReactions(newComments)
|
||||
setCookie()
|
||||
}
|
||||
})
|
||||
|
||||
const [posting, setPosting] = createSignal(false)
|
||||
const handleSubmitComment = async (value: string) => {
|
||||
setPosting(true)
|
||||
const handleSubmitComment = async (value) => {
|
||||
try {
|
||||
await createShoutReaction({
|
||||
reaction: {
|
||||
kind: ReactionKind.Comment,
|
||||
body: value,
|
||||
shout: props.shoutId
|
||||
}
|
||||
await createReaction({
|
||||
kind: ReactionKind.Comment,
|
||||
body: value,
|
||||
shout: props.shoutId
|
||||
})
|
||||
await loadReactionsBy({ by: { shout: props.shoutSlug } })
|
||||
setClearEditor(true)
|
||||
} catch (error) {
|
||||
console.error('[handleCreate reaction]:', error)
|
||||
}
|
||||
setPosting(false)
|
||||
setClearEditor(false)
|
||||
}
|
||||
|
||||
return (
|
||||
|
@ -95,31 +108,37 @@ export const CommentsTree = (props: Props) => {
|
|||
<h2 class={styles.commentsHeader}>
|
||||
{t('Comments')} {comments().length.toString() || ''}
|
||||
<Show when={newReactions().length > 0}>
|
||||
<span class={styles.newReactions}>{` +${newReactions().length}`}</span>
|
||||
<span class={styles.newReactions}> +{newReactions().length}</span>
|
||||
</Show>
|
||||
</h2>
|
||||
<Show when={comments().length > 0}>
|
||||
<ul class={clsx(styles.commentsViewSwitcher, 'view-switcher')}>
|
||||
<Show when={newReactions().length > 0}>
|
||||
<li classList={{ 'view-switcher__item--selected': onlyNew() }}>
|
||||
<Button variant="light" value={t('New only')} onClick={() => setOnlyNew(!onlyNew())} />
|
||||
<li classList={{ 'view-switcher__item--selected': commentsOrder() === 'newOnly' }}>
|
||||
<Button
|
||||
variant="light"
|
||||
value={t('New only')}
|
||||
onClick={() => {
|
||||
setCommentsOrder('newOnly')
|
||||
}}
|
||||
/>
|
||||
</li>
|
||||
</Show>
|
||||
<li classList={{ 'view-switcher__item--selected': commentsOrder() === ReactionSort.Newest }}>
|
||||
<li classList={{ 'view-switcher__item--selected': commentsOrder() === 'createdAt' }}>
|
||||
<Button
|
||||
variant="light"
|
||||
value={t('By time')}
|
||||
onClick={() => {
|
||||
setCommentsOrder(ReactionSort.Newest)
|
||||
setCommentsOrder('createdAt')
|
||||
}}
|
||||
/>
|
||||
</li>
|
||||
<li classList={{ 'view-switcher__item--selected': commentsOrder() === ReactionSort.Like }}>
|
||||
<li classList={{ 'view-switcher__item--selected': commentsOrder() === 'rating' }}>
|
||||
<Button
|
||||
variant="light"
|
||||
value={t('By rating')}
|
||||
onClick={() => {
|
||||
setCommentsOrder(ReactionSort.Like)
|
||||
setCommentsOrder('rating')
|
||||
}}
|
||||
/>
|
||||
</li>
|
||||
|
@ -131,11 +150,13 @@ export const CommentsTree = (props: Props) => {
|
|||
{(reaction) => (
|
||||
<Comment
|
||||
sortedComments={sortedComments()}
|
||||
isArticleAuthor={Boolean(props.articleAuthors.some((a) => a?.id === reaction.created_by.id))}
|
||||
isArticleAuthor={Boolean(
|
||||
props.articleAuthors.some((a) => a?.slug === reaction.created_by.slug)
|
||||
)}
|
||||
comment={reaction}
|
||||
clickedReply={(id) => setClickedReplyId(id)}
|
||||
clickedReplyId={clickedReplyId()}
|
||||
lastSeen={shoutLastSeen()}
|
||||
lastSeen={dateFromLocalStorage}
|
||||
/>
|
||||
)}
|
||||
</For>
|
||||
|
@ -147,17 +168,22 @@ export const CommentsTree = (props: Props) => {
|
|||
<a href="?m=auth&mode=register" class={styles.link}>
|
||||
{t('sign up')}
|
||||
</a>{' '}
|
||||
{t('or')}{' '}
|
||||
{t('or')}
|
||||
<a href="?m=auth&mode=login" class={styles.link}>
|
||||
{t('sign in')}
|
||||
</a>
|
||||
</div>
|
||||
}
|
||||
>
|
||||
<MiniEditor placeholder={t('Write a comment...')} onSubmit={handleSubmitComment} />
|
||||
<Show when={posting()}>
|
||||
<Loading />
|
||||
</Show>
|
||||
<SimplifiedEditor
|
||||
quoteEnabled={true}
|
||||
imageEnabled={true}
|
||||
autoFocus={false}
|
||||
submitByCtrlEnter={true}
|
||||
placeholder={t('Write a comment...')}
|
||||
onSubmit={(value) => handleSubmitComment(value)}
|
||||
setClear={clearEditor()}
|
||||
/>
|
||||
</ShowIfAuthenticated>
|
||||
</>
|
||||
)
|
||||
|
|
|
@ -1,44 +1,49 @@
|
|||
import { AuthToken } from '@authorizerdev/authorizer-js'
|
||||
import type { Author, Shout, Topic } from '../../graphql/schema/core.gen'
|
||||
|
||||
import { getPagePath } from '@nanostores/router'
|
||||
import { createPopper } from '@popperjs/core'
|
||||
import { Link } from '@solidjs/meta'
|
||||
import { A, useSearchParams } from '@solidjs/router'
|
||||
import { Link, Meta } from '@solidjs/meta'
|
||||
import { clsx } from 'clsx'
|
||||
import { install } from 'ga-gtag'
|
||||
import { For, Show, createEffect, createMemo, createSignal, on, onCleanup, onMount } from 'solid-js'
|
||||
import { isServer } from 'solid-js/web'
|
||||
import { useFeed } from '~/context/feed'
|
||||
import { useLocalize } from '~/context/localize'
|
||||
import { useReactions } from '~/context/reactions'
|
||||
import { useSession } from '~/context/session'
|
||||
import { DEFAULT_HEADER_OFFSET, useUI } from '~/context/ui'
|
||||
import type { Author, Maybe, Shout, Topic } from '~/graphql/schema/core.gen'
|
||||
import { processPrepositions } from '~/intl/prepositions'
|
||||
import { isCyrillic } from '~/intl/translate'
|
||||
import { getImageUrl } from '~/lib/getThumbUrl'
|
||||
import { MediaItem } from '~/types/mediaitem'
|
||||
import { capitalize } from '~/utils/capitalize'
|
||||
|
||||
import { useLocalize } from '../../context/localize'
|
||||
import { useReactions } from '../../context/reactions'
|
||||
import { useSession } from '../../context/session'
|
||||
import { MediaItem } from '../../pages/types'
|
||||
import { DEFAULT_HEADER_OFFSET, router, useRouter } from '../../stores/router'
|
||||
import { showModal } from '../../stores/ui'
|
||||
import { capitalize } from '../../utils/capitalize'
|
||||
import { getImageUrl, getOpenGraphImageUrl } from '../../utils/getImageUrl'
|
||||
import { getDescription, getKeywords } from '../../utils/meta'
|
||||
import { isCyrillic } from '../../utils/translate'
|
||||
import { AuthorBadge } from '../Author/AuthorBadge'
|
||||
import { CardTopic } from '../Feed/CardTopic'
|
||||
import { FeedArticlePopup } from '../Feed/FeedArticlePopup'
|
||||
import stylesHeader from '../HeaderNav/Header.module.scss'
|
||||
import { Modal } from '../Nav/Modal'
|
||||
import { TableOfContents } from '../TableOfContents'
|
||||
import { Icon } from '../_shared/Icon'
|
||||
import { Image } from '../_shared/Image'
|
||||
import { InviteMembers } from '../_shared/InviteMembers'
|
||||
import { Lightbox } from '../_shared/Lightbox'
|
||||
import { Modal } from '../_shared/Modal'
|
||||
import { Popover } from '../_shared/Popover'
|
||||
import { ShareModal } from '../_shared/ShareModal'
|
||||
import { ImageSwiper } from '../_shared/SolidSwiper'
|
||||
import { TableOfContents } from '../_shared/TableOfContents'
|
||||
import { VideoPlayer } from '../_shared/VideoPlayer'
|
||||
import styles from './Article.module.scss'
|
||||
|
||||
import { AudioHeader } from './AudioHeader'
|
||||
import { AudioPlayer } from './AudioPlayer'
|
||||
import { CommentsTree } from './CommentsTree'
|
||||
import { SharePopup, getShareUrl } from './SharePopup'
|
||||
import { ShoutRatingControl } from './ShoutRatingControl'
|
||||
|
||||
import stylesHeader from '../Nav/Header/Header.module.scss'
|
||||
import styles from './Article.module.scss'
|
||||
|
||||
type Props = {
|
||||
article: Shout
|
||||
scrollToComments?: boolean
|
||||
}
|
||||
|
||||
type IframeSize = {
|
||||
|
@ -47,105 +52,71 @@ type IframeSize = {
|
|||
}
|
||||
|
||||
export type ArticlePageSearchParams = {
|
||||
commentId?: string
|
||||
slide?: string
|
||||
scrollTo: 'comments'
|
||||
commentId: string
|
||||
}
|
||||
|
||||
const scrollTo = (el: HTMLElement) => {
|
||||
const { top } = el.getBoundingClientRect()
|
||||
|
||||
window?.scrollTo({
|
||||
top: top + window.scrollY - DEFAULT_HEADER_OFFSET,
|
||||
window.scrollTo({
|
||||
top: top - DEFAULT_HEADER_OFFSET,
|
||||
left: 0,
|
||||
behavior: 'smooth'
|
||||
})
|
||||
}
|
||||
|
||||
const imgSrcRegExp = /<img[^>]+src\s*=\s*["']([^"']+)["']/gi
|
||||
export const COMMENTS_PER_PAGE = 30
|
||||
const VOTES_PER_PAGE = 50
|
||||
|
||||
export const FullArticle = (props: Props) => {
|
||||
const [searchParams] = useSearchParams<ArticlePageSearchParams>()
|
||||
const { showModal } = useUI()
|
||||
const { searchParams, changeSearchParams } = useRouter<ArticlePageSearchParams>()
|
||||
const { loadReactionsBy } = useReactions()
|
||||
const [selectedImage, setSelectedImage] = createSignal('')
|
||||
const [isReactionsLoaded, setIsReactionsLoaded] = createSignal(false)
|
||||
const [isActionPopupActive, setIsActionPopupActive] = createSignal(false)
|
||||
const { t, formatDate, lang } = useLocalize()
|
||||
const { session, requireAuthentication } = useSession()
|
||||
const { addSeen } = useFeed()
|
||||
const formattedDate = createMemo(() => formatDate(new Date((props.article.published_at || 0) * 1000)))
|
||||
const { author, session, isAuthenticated, requireAuthentication } = useSession()
|
||||
|
||||
const [pages, setPages] = createSignal<Record<string, number>>({})
|
||||
createEffect(
|
||||
on(
|
||||
pages,
|
||||
(p: Record<string, number>) => {
|
||||
console.debug('content paginated')
|
||||
loadReactionsBy({
|
||||
by: { shout: props.article.slug, comment: true },
|
||||
limit: COMMENTS_PER_PAGE,
|
||||
offset: COMMENTS_PER_PAGE * p.comments || 0
|
||||
})
|
||||
loadReactionsBy({
|
||||
by: { shout: props.article.slug, rating: true },
|
||||
limit: VOTES_PER_PAGE,
|
||||
offset: VOTES_PER_PAGE * p.rating || 0
|
||||
})
|
||||
setIsReactionsLoaded(true)
|
||||
console.debug('reactions paginated')
|
||||
},
|
||||
{ defer: true }
|
||||
)
|
||||
)
|
||||
const formattedDate = createMemo(() => formatDate(new Date(props.article.published_at * 1000)))
|
||||
|
||||
const [canEdit, setCanEdit] = createSignal<boolean>(false)
|
||||
createEffect(
|
||||
on(
|
||||
() => session(),
|
||||
(s?: AuthToken) => {
|
||||
const profile = s?.user?.app_data?.profile
|
||||
if (!profile) return
|
||||
const isEditor = s?.user?.roles?.includes('editor')
|
||||
const isCreator = props.article.created_by?.id === profile.id
|
||||
const fit = (a: Maybe<Author>) => a?.id === profile.id || isCreator || isEditor
|
||||
setCanEdit((_: boolean) => Boolean(props.article.authors?.some(fit)))
|
||||
}
|
||||
)
|
||||
const canEdit = createMemo(
|
||||
() =>
|
||||
Boolean(author()?.id) &&
|
||||
(props.article?.authors?.some((a) => Boolean(a) && a?.id === author().id) ||
|
||||
props.article?.created_by?.id === author().id ||
|
||||
session()?.user?.roles.includes('editor'))
|
||||
)
|
||||
|
||||
const mainTopic = createMemo(() => {
|
||||
const mainTopicSlug = (props.article.topics?.length || 0) > 0 ? props.article.main_topic : null
|
||||
const mt = props.article.topics?.find((tpc: Maybe<Topic>) => tpc?.slug === mainTopicSlug)
|
||||
const mainTopicSlug = props.article.topics.length > 0 ? props.article.main_topic : null
|
||||
const mt = props.article.topics.find((tpc: Topic) => tpc.slug === mainTopicSlug)
|
||||
if (mt) {
|
||||
mt.title = lang() === 'en' ? capitalize(mt.slug.replaceAll('-', ' ')) : mt.title
|
||||
mt.title = lang() === 'en' ? capitalize(mt.slug.replace(/-/, ' ')) : mt.title
|
||||
return mt
|
||||
}
|
||||
return props.article.topics?.[0]
|
||||
return props.article.topics[0]
|
||||
})
|
||||
|
||||
const handleBookmarkButtonClick = (ev: MouseEvent | undefined) => {
|
||||
const handleBookmarkButtonClick = (ev) => {
|
||||
requireAuthentication(() => {
|
||||
// TODO: implement bookmark clicked
|
||||
ev?.preventDefault()
|
||||
ev.preventDefault()
|
||||
}, 'bookmark')
|
||||
}
|
||||
|
||||
const body = createMemo(() => {
|
||||
if (props.article.layout === 'literature') {
|
||||
try {
|
||||
if (props.article.media) {
|
||||
if (props.article?.media) {
|
||||
const media = JSON.parse(props.article.media)
|
||||
if (media.length > 0) {
|
||||
return processPrepositions(media[0].body)
|
||||
return media[0].body
|
||||
}
|
||||
}
|
||||
} catch (error) {
|
||||
console.error(error)
|
||||
}
|
||||
}
|
||||
return processPrepositions(props.article.body) || ''
|
||||
return props.article.body
|
||||
})
|
||||
|
||||
const imageUrls = createMemo(() => {
|
||||
|
@ -155,11 +126,10 @@ export const FullArticle = (props: Props) => {
|
|||
|
||||
if (isServer) {
|
||||
const result: string[] = []
|
||||
let match: RegExpMatchArray | null
|
||||
let match: RegExpMatchArray
|
||||
|
||||
while ((match = imgSrcRegExp.exec(body())) !== null) {
|
||||
if (match) result.push(match[1])
|
||||
else break
|
||||
result.push(match[1])
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
@ -169,25 +139,45 @@ export const FullArticle = (props: Props) => {
|
|||
return Array.from(imageElements).map((img) => img.src)
|
||||
})
|
||||
|
||||
const media = createMemo<MediaItem[]>(() => JSON.parse(props.article.media || '[]'))
|
||||
const media = createMemo<MediaItem[]>(() => {
|
||||
try {
|
||||
return JSON.parse(props.article.media)
|
||||
} catch {
|
||||
return []
|
||||
}
|
||||
})
|
||||
|
||||
const commentsRef: {
|
||||
current: HTMLDivElement
|
||||
} = { current: null }
|
||||
|
||||
let commentsRef: HTMLDivElement | undefined
|
||||
createEffect(() => {
|
||||
if (searchParams?.commentId && isReactionsLoaded()) {
|
||||
console.debug('comment id is in link, scroll to')
|
||||
const scrollToElement =
|
||||
document.querySelector<HTMLElement>(`[id='comment_${searchParams?.commentId}']`) ||
|
||||
commentsRef ||
|
||||
document.body
|
||||
if (props.scrollToComments) {
|
||||
scrollTo(commentsRef.current)
|
||||
}
|
||||
})
|
||||
|
||||
if (scrollToElement) {
|
||||
requestAnimationFrame(() => scrollTo(scrollToElement))
|
||||
createEffect(() => {
|
||||
if (searchParams()?.scrollTo === 'comments' && commentsRef.current) {
|
||||
requestAnimationFrame(() => scrollTo(commentsRef.current))
|
||||
changeSearchParams({ scrollTo: null })
|
||||
}
|
||||
})
|
||||
|
||||
createEffect(() => {
|
||||
if (searchParams().commentId && isReactionsLoaded()) {
|
||||
const commentElement = document.querySelector<HTMLElement>(
|
||||
`[id='comment_${searchParams().commentId}']`
|
||||
)
|
||||
|
||||
if (commentElement) {
|
||||
requestAnimationFrame(() => scrollTo(commentElement))
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
const clickHandlers: { element: HTMLElement; handler: () => void }[] = []
|
||||
const documentClickHandlers: ((e: MouseEvent) => void)[] = []
|
||||
const clickHandlers = []
|
||||
const documentClickHandlers = []
|
||||
|
||||
createEffect(() => {
|
||||
if (!body()) {
|
||||
|
@ -205,7 +195,7 @@ export const FullArticle = (props: Props) => {
|
|||
tooltip.classList.add(styles.tooltip)
|
||||
const tooltipContent = document.createElement('div')
|
||||
tooltipContent.classList.add(styles.tooltipContent)
|
||||
tooltipContent.innerHTML = element.dataset.originalTitle || element.dataset.value || ''
|
||||
tooltipContent.innerHTML = element.dataset.originalTitle || element.dataset.value
|
||||
|
||||
tooltip.append(tooltipContent)
|
||||
|
||||
|
@ -249,7 +239,7 @@ export const FullArticle = (props: Props) => {
|
|||
popperInstance.update()
|
||||
}
|
||||
|
||||
const handleDocumentClick = (e: MouseEvent) => {
|
||||
const handleDocumentClick = (e) => {
|
||||
if (isTooltipVisible && e.target !== element && e.target !== tooltip) {
|
||||
tooltip.style.visibility = 'hidden'
|
||||
isTooltipVisible = false
|
||||
|
@ -273,15 +263,14 @@ export const FullArticle = (props: Props) => {
|
|||
})
|
||||
})
|
||||
|
||||
const openLightbox = (image: string) => {
|
||||
const openLightbox = (image) => {
|
||||
setSelectedImage(image)
|
||||
}
|
||||
const handleLightboxClose = () => {
|
||||
setSelectedImage('')
|
||||
setSelectedImage()
|
||||
}
|
||||
|
||||
// biome-ignore lint/suspicious/noExplicitAny: FIXME: typing
|
||||
const handleArticleBodyClick = (event: any) => {
|
||||
const handleArticleBodyClick = (event) => {
|
||||
if (event.target.tagName === 'IMG' && !event.target.dataset.disableLightbox) {
|
||||
const src = event.target.src
|
||||
openLightbox(getImageUrl(src))
|
||||
|
@ -289,13 +278,12 @@ export const FullArticle = (props: Props) => {
|
|||
}
|
||||
|
||||
// Check iframes size
|
||||
let articleContainer: HTMLElement | undefined
|
||||
const articleContainer: { current: HTMLElement } = { current: null }
|
||||
const updateIframeSizes = () => {
|
||||
if (!window) return
|
||||
if (!(articleContainer && props.article.body)) return
|
||||
const iframes = articleContainer?.querySelectorAll('iframe')
|
||||
if (!(articleContainer?.current && props.article.body)) return
|
||||
const iframes = articleContainer?.current?.querySelectorAll('iframe')
|
||||
if (!iframes) return
|
||||
const containerWidth = articleContainer?.offsetWidth
|
||||
const containerWidth = articleContainer.current?.offsetWidth
|
||||
iframes.forEach((iframe) => {
|
||||
const style = window.getComputedStyle(iframe)
|
||||
const originalWidth = iframe.getAttribute('width') || style.width.replace('px', '')
|
||||
|
@ -314,26 +302,58 @@ export const FullArticle = (props: Props) => {
|
|||
})
|
||||
}
|
||||
|
||||
onMount(() => {
|
||||
console.debug(props.article)
|
||||
setPages((_) => ({ comments: 0, rating: 0 }))
|
||||
addSeen(props.article.slug)
|
||||
createEffect(
|
||||
on(
|
||||
() => props.article,
|
||||
() => {
|
||||
updateIframeSizes()
|
||||
}
|
||||
)
|
||||
)
|
||||
|
||||
onMount(async () => {
|
||||
install('G-LQ4B87H8C2')
|
||||
await loadReactionsBy({ by: { shout: props.article.slug } })
|
||||
setIsReactionsLoaded(true)
|
||||
document.title = props.article.title
|
||||
updateIframeSizes()
|
||||
window?.addEventListener('resize', updateIframeSizes)
|
||||
|
||||
onCleanup(() => window.removeEventListener('resize', updateIframeSizes))
|
||||
})
|
||||
|
||||
const shareUrl = createMemo(() => getShareUrl({ pathname: `/${props.article.slug || ''}` }))
|
||||
const getAuthorName = (a: Author) =>
|
||||
lang() === 'en' && isCyrillic(a.name || '') ? capitalize(a.slug.replaceAll('-', ' ')) : a.name
|
||||
const cover = props.article.cover ?? 'production/image/logo_image.png'
|
||||
const ogImage = getOpenGraphImageUrl(cover, {
|
||||
title: props.article.title,
|
||||
topic: mainTopic()?.title || '',
|
||||
author: props.article?.authors[0]?.name || '',
|
||||
width: 1200
|
||||
})
|
||||
|
||||
const description = getDescription(props.article.description || body())
|
||||
const ogTitle = props.article.title
|
||||
const keywords = getKeywords(props.article)
|
||||
const shareUrl = getShareUrl({ pathname: `/${props.article.slug}` })
|
||||
const getAuthorName = (a: Author) => {
|
||||
return lang() === 'en' && isCyrillic(a.name) ? capitalize(a.slug.replace(/-/, ' ')) : a.name
|
||||
}
|
||||
return (
|
||||
<>
|
||||
<Meta name="descprition" content={description} />
|
||||
<Meta name="keywords" content={keywords} />
|
||||
<Meta name="og:type" content="article" />
|
||||
<Meta name="og:title" content={ogTitle} />
|
||||
<Meta name="og:image" content={ogImage} />
|
||||
<Meta name="og:description" content={description} />
|
||||
<Meta name="twitter:card" content="summary_large_image" />
|
||||
<Meta name="twitter:title" content={ogTitle} />
|
||||
<Meta name="twitter:description" content={description} />
|
||||
<Meta name="twitter:image" content={ogImage} />
|
||||
|
||||
<For each={imageUrls()}>{(imageUrl) => <Link rel="preload" as="image" href={imageUrl} />}</For>
|
||||
<div class="wide-container">
|
||||
<div class="row position-relative">
|
||||
<article
|
||||
ref={(el) => (articleContainer = el)}
|
||||
ref={(el) => (articleContainer.current = el)}
|
||||
class={clsx('col-md-16 col-lg-14 col-xl-12 offset-md-5', styles.articleContent)}
|
||||
onClick={handleArticleBodyClick}
|
||||
>
|
||||
|
@ -341,20 +361,20 @@ export const FullArticle = (props: Props) => {
|
|||
<Show when={props.article.layout !== 'audio'}>
|
||||
<div class={styles.shoutHeader}>
|
||||
<Show when={mainTopic()}>
|
||||
<CardTopic title={mainTopic()?.title || ''} slug={mainTopic()?.slug || ''} />
|
||||
<CardTopic title={mainTopic().title} slug={mainTopic().slug} />
|
||||
</Show>
|
||||
|
||||
<h1>{props.article.title || ''}</h1>
|
||||
<h1>{props.article.title}</h1>
|
||||
<Show when={props.article.subtitle}>
|
||||
<h4>{processPrepositions(props.article.subtitle || '')}</h4>
|
||||
<h4>{props.article.subtitle}</h4>
|
||||
</Show>
|
||||
|
||||
<div class={styles.shoutAuthor}>
|
||||
<For each={props.article.authors}>
|
||||
{(a: Maybe<Author>, index: () => number) => (
|
||||
{(a: Author, index) => (
|
||||
<>
|
||||
<Show when={index() > 0}>, </Show>
|
||||
<A href={`/@${a?.slug}`}>{a && getAuthorName(a)}</A>
|
||||
<a href={getPagePath(router, 'author', { slug: a.slug })}>{getAuthorName(a)}</a>
|
||||
</>
|
||||
)}
|
||||
</For>
|
||||
|
@ -367,29 +387,25 @@ export const FullArticle = (props: Props) => {
|
|||
}
|
||||
>
|
||||
<figure class="img-align-column">
|
||||
<Image
|
||||
width={800}
|
||||
alt={props.article.cover_caption || ''}
|
||||
src={props.article.cover || ''}
|
||||
/>
|
||||
<figcaption innerHTML={props.article.cover_caption || ''} />
|
||||
<Image width={800} alt={props.article.cover_caption} src={props.article.cover} />
|
||||
<figcaption innerHTML={props.article.cover_caption} />
|
||||
</figure>
|
||||
</Show>
|
||||
</div>
|
||||
</Show>
|
||||
<Show when={props.article.lead}>
|
||||
<section class={styles.lead} innerHTML={processPrepositions(props.article.lead || '')} />
|
||||
<section class={styles.lead} innerHTML={props.article.lead} />
|
||||
</Show>
|
||||
<Show when={props.article.layout === 'audio'}>
|
||||
<AudioHeader
|
||||
title={props.article.title || ''}
|
||||
cover={props.article.cover || ''}
|
||||
title={props.article.title}
|
||||
cover={props.article.cover}
|
||||
artistData={media()?.[0]}
|
||||
topic={mainTopic() as Topic}
|
||||
topic={mainTopic()}
|
||||
/>
|
||||
<Show when={media().length > 0}>
|
||||
<div class="media-items">
|
||||
<AudioPlayer media={media()} articleSlug={props.article.slug || ''} body={body()} />
|
||||
<AudioPlayer media={media()} articleSlug={props.article.slug} body={body()} />
|
||||
</div>
|
||||
</Show>
|
||||
</Show>
|
||||
|
@ -447,11 +463,11 @@ export const FullArticle = (props: Props) => {
|
|||
</div>
|
||||
|
||||
<Popover content={t('Comment')} disabled={isActionPopupActive()}>
|
||||
{(triggerRef: (el: HTMLElement) => void) => (
|
||||
{(triggerRef: (el) => void) => (
|
||||
<div
|
||||
class={clsx(styles.shoutStatsItem)}
|
||||
ref={triggerRef}
|
||||
onClick={() => commentsRef && scrollTo(commentsRef)}
|
||||
onClick={() => scrollTo(commentsRef.current)}
|
||||
>
|
||||
<Icon name="comment" class={styles.icon} />
|
||||
<Icon name="comment-hover" class={clsx(styles.icon, styles.iconHover)} />
|
||||
|
@ -467,7 +483,7 @@ export const FullArticle = (props: Props) => {
|
|||
|
||||
<Show when={props.article.stat?.viewed}>
|
||||
<div class={clsx(styles.shoutStatsItem, styles.shoutStatsItemViews)}>
|
||||
{t('some views', { count: props.article.stat?.viewed || 0 })}
|
||||
{t('viewsWithCount', { count: props.article.stat?.viewed })}
|
||||
</div>
|
||||
</Show>
|
||||
|
||||
|
@ -478,7 +494,7 @@ export const FullArticle = (props: Props) => {
|
|||
</div>
|
||||
|
||||
<Popover content={t('Add to bookmarks')} disabled={isActionPopupActive()}>
|
||||
{(triggerRef: (el: HTMLElement) => void) => (
|
||||
{(triggerRef: (el) => void) => (
|
||||
<div
|
||||
class={clsx(styles.shoutStatsItem, styles.shoutStatsItemBookmarks)}
|
||||
ref={triggerRef}
|
||||
|
@ -493,13 +509,13 @@ export const FullArticle = (props: Props) => {
|
|||
</Popover>
|
||||
|
||||
<Popover content={t('Share')} disabled={isActionPopupActive()}>
|
||||
{(triggerRef: (el: HTMLElement) => void) => (
|
||||
{(triggerRef: (el) => void) => (
|
||||
<div class={styles.shoutStatsItem} ref={triggerRef}>
|
||||
<SharePopup
|
||||
title={props.article.title}
|
||||
description={props.article.description || body() || media()[0]?.body}
|
||||
imageUrl={props.article.cover || ''}
|
||||
shareUrl={shareUrl()}
|
||||
description={description}
|
||||
imageUrl={props.article.cover}
|
||||
shareUrl={shareUrl}
|
||||
containerCssClass={stylesHeader.control}
|
||||
onVisibilityChange={(isVisible) => setIsActionPopupActive(isVisible)}
|
||||
trigger={
|
||||
|
@ -515,19 +531,22 @@ export const FullArticle = (props: Props) => {
|
|||
|
||||
<Show when={canEdit()}>
|
||||
<Popover content={t('Edit')}>
|
||||
{(triggerRef: (el: HTMLElement) => void) => (
|
||||
{(triggerRef: (el) => void) => (
|
||||
<div class={styles.shoutStatsItem} ref={triggerRef}>
|
||||
<A href={`/edit/${props.article.id}`} class={styles.shoutStatsItemInner}>
|
||||
<a
|
||||
href={getPagePath(router, 'edit', { shoutId: props.article.id.toString() })}
|
||||
class={styles.shoutStatsItemInner}
|
||||
>
|
||||
<Icon name="pencil-outline" class={styles.icon} />
|
||||
<Icon name="pencil-outline-hover" class={clsx(styles.icon, styles.iconHover)} />
|
||||
</A>
|
||||
</a>
|
||||
</div>
|
||||
)}
|
||||
</Popover>
|
||||
</Show>
|
||||
|
||||
<FeedArticlePopup
|
||||
canEdit={Boolean(canEdit())}
|
||||
canEdit={canEdit()}
|
||||
containerCssClass={clsx(stylesHeader.control, styles.articlePopupOpener)}
|
||||
onShareClick={() => showModal('share')}
|
||||
onInviteClick={() => showModal('inviteMembers')}
|
||||
|
@ -541,7 +560,7 @@ export const FullArticle = (props: Props) => {
|
|||
/>
|
||||
</div>
|
||||
|
||||
<Show when={session()?.access_token && !canEdit()}>
|
||||
<Show when={isAuthenticated() && !canEdit()}>
|
||||
<div class={styles.help}>
|
||||
<button class="button">{t('Cooperate')}</button>
|
||||
</div>
|
||||
|
@ -552,14 +571,14 @@ export const FullArticle = (props: Props) => {
|
|||
</div>
|
||||
</Show>
|
||||
|
||||
<Show when={props.article.topics?.length}>
|
||||
<Show when={props.article.topics.length}>
|
||||
<div class={styles.topicsList}>
|
||||
<For each={props.article.topics || []}>
|
||||
<For each={props.article.topics}>
|
||||
{(topic) => (
|
||||
<div class={styles.shoutTopic}>
|
||||
<A href={`/topic/${topic?.slug || ''}`}>
|
||||
{lang() === 'en' ? capitalize(topic?.slug || '') : topic?.title || ''}
|
||||
</A>
|
||||
<a href={getPagePath(router, 'topic', { slug: topic.slug })}>
|
||||
{lang() === 'en' ? capitalize(topic.slug) : topic.title}
|
||||
</a>
|
||||
</div>
|
||||
)}
|
||||
</For>
|
||||
|
@ -567,23 +586,23 @@ export const FullArticle = (props: Props) => {
|
|||
</Show>
|
||||
|
||||
<div class={styles.shoutAuthorsList}>
|
||||
<Show when={(props.article.authors?.length || 0) > 1}>
|
||||
<Show when={props.article.authors.length > 1}>
|
||||
<h4>{t('Authors')}</h4>
|
||||
</Show>
|
||||
<For each={props.article.authors}>
|
||||
{(a: Maybe<Author>) => (
|
||||
{(a: Author) => (
|
||||
<div class="col-xl-12">
|
||||
<AuthorBadge iconButtons={true} showMessageButton={true} author={a as Author} />
|
||||
<AuthorBadge iconButtons={true} showMessageButton={true} author={a} />
|
||||
</div>
|
||||
)}
|
||||
</For>
|
||||
</div>
|
||||
<div id="comments" ref={(el) => (commentsRef = el)}>
|
||||
<div id="comments" ref={(el) => (commentsRef.current = el)}>
|
||||
<Show when={isReactionsLoaded()}>
|
||||
<CommentsTree
|
||||
shoutId={props.article.id}
|
||||
shoutSlug={props.article.slug}
|
||||
articleAuthors={props.article.authors as Author[]}
|
||||
articleAuthors={props.article.authors}
|
||||
/>
|
||||
</Show>
|
||||
</div>
|
||||
|
@ -598,9 +617,9 @@ export const FullArticle = (props: Props) => {
|
|||
</Modal>
|
||||
<ShareModal
|
||||
title={props.article.title}
|
||||
description={props.article.description || body() || media()[0]?.body}
|
||||
imageUrl={props.article.cover || ''}
|
||||
shareUrl={shareUrl()}
|
||||
description={description}
|
||||
imageUrl={props.article.cover}
|
||||
shareUrl={shareUrl}
|
||||
/>
|
||||
</>
|
||||
)
|
||||
|
|
|
@ -28,7 +28,7 @@ export const SharePopup = (props: SharePopupProps) => {
|
|||
})
|
||||
|
||||
return (
|
||||
<Popup {...props} onVisibilityChange={(value) => setIsVisible(value)}>
|
||||
<Popup {...props} variant="bordered" onVisibilityChange={(value) => setIsVisible(value)}>
|
||||
<ShareLinks
|
||||
variant="inPopup"
|
||||
title={props.title}
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
import { clsx } from 'clsx'
|
||||
import { Show, createMemo, createSignal } from 'solid-js'
|
||||
import { useFeed } from '~/context/feed'
|
||||
import { useLocalize } from '~/context/localize'
|
||||
import { useReactions } from '~/context/reactions'
|
||||
import { useSession } from '~/context/session'
|
||||
import type { Author } from '~/graphql/schema/core.gen'
|
||||
import { ReactionKind, Shout } from '~/graphql/schema/core.gen'
|
||||
|
||||
import { useLocalize } from '../../context/localize'
|
||||
import { useReactions } from '../../context/reactions'
|
||||
import { useSession } from '../../context/session'
|
||||
import { ReactionKind, Shout } from '../../graphql/schema/core.gen'
|
||||
import { loadShout } from '../../stores/zine/articles'
|
||||
import { Icon } from '../_shared/Icon'
|
||||
import { Popup } from '../_shared/Popup'
|
||||
import { VotersList } from '../_shared/VotersList'
|
||||
|
@ -19,14 +19,12 @@ interface ShoutRatingControlProps {
|
|||
|
||||
export const ShoutRatingControl = (props: ShoutRatingControlProps) => {
|
||||
const { t } = useLocalize()
|
||||
const { loadShout } = useFeed()
|
||||
const { requireAuthentication, session } = useSession()
|
||||
const author = createMemo<Author>(() => session()?.user?.app_data?.profile as Author)
|
||||
const { reactionEntities, createShoutReaction, deleteShoutReaction, loadReactionsBy } = useReactions()
|
||||
const { author, requireAuthentication } = useSession()
|
||||
const { reactionEntities, createReaction, deleteReaction, loadReactionsBy } = useReactions()
|
||||
const [isLoading, setIsLoading] = createSignal(false)
|
||||
|
||||
const checkReaction = (reactionKind: ReactionKind) =>
|
||||
Object.values(reactionEntities()).some(
|
||||
Object.values(reactionEntities).some(
|
||||
(r) =>
|
||||
r.kind === reactionKind &&
|
||||
r.created_by.id === author()?.id &&
|
||||
|
@ -38,12 +36,12 @@ export const ShoutRatingControl = (props: ShoutRatingControlProps) => {
|
|||
const isDownvoted = createMemo(() => checkReaction(ReactionKind.Dislike))
|
||||
|
||||
const shoutRatingReactions = createMemo(() =>
|
||||
Object.values(reactionEntities()).filter(
|
||||
Object.values(reactionEntities).filter(
|
||||
(r) => ['LIKE', 'DISLIKE'].includes(r.kind) && r.shout.id === props.shout.id && !r.reply_to
|
||||
)
|
||||
)
|
||||
|
||||
const removeReaction = async (reactionKind: ReactionKind) => {
|
||||
const deleteShoutReaction = async (reactionKind: ReactionKind) => {
|
||||
const reactionToDelete = Object.values(reactionEntities).find(
|
||||
(r) =>
|
||||
r.kind === reactionKind &&
|
||||
|
@ -51,22 +49,20 @@ export const ShoutRatingControl = (props: ShoutRatingControlProps) => {
|
|||
r.shout.id === props.shout.id &&
|
||||
!r.reply_to
|
||||
)
|
||||
if (reactionToDelete) return deleteShoutReaction(reactionToDelete.id)
|
||||
return deleteReaction(reactionToDelete.id)
|
||||
}
|
||||
|
||||
const handleRatingChange = (isUpvote: boolean) => {
|
||||
requireAuthentication(async () => {
|
||||
setIsLoading(true)
|
||||
if (isUpvoted()) {
|
||||
await removeReaction(ReactionKind.Like)
|
||||
await deleteShoutReaction(ReactionKind.Like)
|
||||
} else if (isDownvoted()) {
|
||||
await removeReaction(ReactionKind.Dislike)
|
||||
await deleteShoutReaction(ReactionKind.Dislike)
|
||||
} else {
|
||||
await createShoutReaction({
|
||||
reaction: {
|
||||
kind: isUpvote ? ReactionKind.Like : ReactionKind.Dislike,
|
||||
shout: props.shout.id
|
||||
}
|
||||
await createReaction({
|
||||
kind: isUpvote ? ReactionKind.Like : ReactionKind.Dislike,
|
||||
shout: props.shout.id
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -87,10 +83,7 @@ export const ShoutRatingControl = (props: ShoutRatingControlProps) => {
|
|||
</Show>
|
||||
</button>
|
||||
|
||||
<Popup
|
||||
trigger={<span class={styles.ratingValue}>{props.shout.stat?.rating || 0}</span>}
|
||||
variant="tiny"
|
||||
>
|
||||
<Popup trigger={<span class={styles.ratingValue}>{props.shout.stat.rating}</span>} variant="tiny">
|
||||
<VotersList
|
||||
reactions={shoutRatingReactions()}
|
||||
fallbackMessage={t('This post has not been rated yet')}
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
import { useSearchParams } from '@solidjs/router'
|
||||
import { JSX, Show, createEffect, createMemo, on } from 'solid-js'
|
||||
import { useSession } from '~/context/session'
|
||||
import { useUI } from '~/context/ui'
|
||||
import { JSX, Show, createEffect } from 'solid-js'
|
||||
|
||||
import { useSession } from '../../context/session'
|
||||
import { RootSearchParams } from '../../pages/types'
|
||||
import { useRouter } from '../../stores/router'
|
||||
import { hideModal } from '../../stores/ui'
|
||||
import { AuthModalSearchParams } from '../Nav/AuthModal/types'
|
||||
|
||||
type Props = {
|
||||
children: JSX.Element
|
||||
|
@ -9,32 +12,30 @@ type Props = {
|
|||
}
|
||||
|
||||
export const AuthGuard = (props: Props) => {
|
||||
const { session } = useSession()
|
||||
const author = createMemo<number>(() => session()?.user?.app_data?.profile?.id || 0)
|
||||
const [, changeSearchParams] = useSearchParams()
|
||||
const { hideModal } = useUI()
|
||||
const { isAuthenticated, isSessionLoaded } = useSession()
|
||||
const { changeSearchParams } = useRouter<RootSearchParams & AuthModalSearchParams>()
|
||||
|
||||
createEffect(
|
||||
on(
|
||||
[() => props.disabled, author],
|
||||
([disabled, a]) => {
|
||||
if (disabled || !a) return
|
||||
if (a) {
|
||||
console.debug('[AuthGuard] profile is loaded')
|
||||
hideModal()
|
||||
} else {
|
||||
changeSearchParams(
|
||||
{
|
||||
source: 'authguard',
|
||||
m: 'auth'
|
||||
},
|
||||
{ replace: true }
|
||||
)
|
||||
}
|
||||
},
|
||||
{ defer: true }
|
||||
)
|
||||
)
|
||||
createEffect(() => {
|
||||
if (props.disabled) {
|
||||
return
|
||||
}
|
||||
if (isSessionLoaded()) {
|
||||
if (isAuthenticated()) {
|
||||
hideModal()
|
||||
} else {
|
||||
changeSearchParams(
|
||||
{
|
||||
source: 'authguard',
|
||||
m: 'auth'
|
||||
},
|
||||
true
|
||||
)
|
||||
}
|
||||
} else {
|
||||
// await loadSession()
|
||||
console.warn('session is not loaded')
|
||||
}
|
||||
})
|
||||
|
||||
return <Show when={author() || props.disabled}>{props.children}</Show>
|
||||
return <Show when={(isSessionLoaded() && isAuthenticated()) || props.disabled}>{props.children}</Show>
|
||||
}
|
||||
|
|
|
@ -1,26 +0,0 @@
|
|||
import { clsx } from 'clsx'
|
||||
|
||||
import { useLocalize } from '~/context/localize'
|
||||
import { useUI } from '~/context/ui'
|
||||
|
||||
import styles from './AuthModal.module.scss'
|
||||
|
||||
export const SendEmailConfirm = () => {
|
||||
const { hideModal } = useUI()
|
||||
const { t } = useLocalize()
|
||||
return (
|
||||
<div
|
||||
style={{
|
||||
'align-items': 'center',
|
||||
'justify-content': 'center'
|
||||
}}
|
||||
>
|
||||
<div class={styles.text}>{t('Link sent, check your email')}</div>
|
||||
<div>
|
||||
<button class={clsx('button', styles.submitButton)} onClick={() => hideModal()}>
|
||||
{t('Go to main page')}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
export { SocialProviders } from './SocialProviders'
|
|
@ -1,8 +1,4 @@
|
|||
.AuthorBadge {
|
||||
@include media-breakpoint-down(md) {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
align-items: flex-start;
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
|
@ -16,30 +12,34 @@
|
|||
}
|
||||
}
|
||||
|
||||
.basicInfo {
|
||||
@include media-breakpoint-down(sm) {
|
||||
flex: 0 100%;
|
||||
}
|
||||
@include media-breakpoint-down(md) {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.basicInfo {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
flex: 0 calc(100% - 5.2rem);
|
||||
gap: 1rem;
|
||||
|
||||
@include media-breakpoint-down(sm) {
|
||||
flex: 0 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.info {
|
||||
@include font-size(1.4rem);
|
||||
|
||||
@include media-breakpoint-up(sm) {
|
||||
flex: 1 100%;
|
||||
}
|
||||
|
||||
border: none;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
line-height: 1.3;
|
||||
|
||||
@include media-breakpoint-up(sm) {
|
||||
flex: 1 100%;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background: unset;
|
||||
}
|
||||
|
@ -60,16 +60,20 @@
|
|||
.bio {
|
||||
@include font-size(1.2rem);
|
||||
|
||||
color: var(--black-400);
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
font-weight: 500;
|
||||
gap: 1rem;
|
||||
max-width: 100%;
|
||||
word-break: break-word;
|
||||
color: var(--black-400);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.actions {
|
||||
flex: 0 20%;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
margin-left: 5.2rem;
|
||||
gap: 1rem;
|
||||
|
||||
@include media-breakpoint-down(sm) {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
@ -84,12 +88,6 @@
|
|||
padding-left: 1rem;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
flex: 0 20%;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
margin-left: 5.2rem;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.actionButton {
|
||||
|
@ -117,4 +115,8 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.actionButtonLabelHovered {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,80 +1,87 @@
|
|||
import { useNavigate } from '@solidjs/router'
|
||||
import { openPage } from '@nanostores/router'
|
||||
import { clsx } from 'clsx'
|
||||
import { Match, Show, Switch, createEffect, createMemo, createSignal, on } from 'solid-js'
|
||||
import { Button } from '~/components/_shared/Button'
|
||||
import { CheckButton } from '~/components/_shared/CheckButton'
|
||||
import { ConditionalWrapper } from '~/components/_shared/ConditionalWrapper'
|
||||
import { FollowingButton } from '~/components/_shared/FollowingButton'
|
||||
import { Icon } from '~/components/_shared/Icon'
|
||||
import { useFollowing } from '~/context/following'
|
||||
import { useLocalize } from '~/context/localize'
|
||||
import { useSession } from '~/context/session'
|
||||
import { Author, FollowingEntity } from '~/graphql/schema/core.gen'
|
||||
import { isCyrillic } from '~/intl/translate'
|
||||
import { translit } from '~/intl/translit'
|
||||
import { mediaMatches } from '~/lib/mediaQuery'
|
||||
|
||||
import { useFollowing } from '../../../context/following'
|
||||
import { useLocalize } from '../../../context/localize'
|
||||
import { useMediaQuery } from '../../../context/mediaQuery'
|
||||
import { useSession } from '../../../context/session'
|
||||
import { Author, FollowingEntity } from '../../../graphql/schema/core.gen'
|
||||
import { router, useRouter } from '../../../stores/router'
|
||||
import { translit } from '../../../utils/ru2en'
|
||||
import { isCyrillic } from '../../../utils/translate'
|
||||
import { Button } from '../../_shared/Button'
|
||||
import { CheckButton } from '../../_shared/CheckButton'
|
||||
import { ConditionalWrapper } from '../../_shared/ConditionalWrapper'
|
||||
import { Icon } from '../../_shared/Icon'
|
||||
import { Userpic } from '../Userpic'
|
||||
|
||||
import { FollowedInfo } from '../../../pages/types'
|
||||
import stylesButton from '../../_shared/Button/Button.module.scss'
|
||||
import styles from './AuthorBadge.module.scss'
|
||||
|
||||
type Props = {
|
||||
author: Author
|
||||
minimize?: boolean
|
||||
minimizeSubscribeButton?: boolean
|
||||
showMessageButton?: boolean
|
||||
iconButtons?: boolean
|
||||
nameOnly?: boolean
|
||||
inviteView?: boolean
|
||||
onInvite?: (id: number) => void
|
||||
selected?: boolean
|
||||
subscriptionsMode?: boolean
|
||||
isFollowed?: FollowedInfo
|
||||
}
|
||||
export const AuthorBadge = (props: Props) => {
|
||||
const { session, requireAuthentication } = useSession()
|
||||
const author = createMemo<Author>(() => session()?.user?.app_data?.profile as Author)
|
||||
const { follow, unfollow, follows, following } = useFollowing()
|
||||
const { mediaMatches } = useMediaQuery()
|
||||
const { author, requireAuthentication } = useSession()
|
||||
const [isMobileView, setIsMobileView] = createSignal(false)
|
||||
const [isFollowed, setIsFollowed] = createSignal<boolean>(
|
||||
Boolean(follows?.authors?.some((authorEntity) => Boolean(authorEntity.id === props.author?.id)))
|
||||
)
|
||||
createEffect(() => setIsMobileView(!mediaMatches.sm))
|
||||
createEffect(
|
||||
on(
|
||||
[() => follows?.authors, () => props.author, following],
|
||||
([followingAuthors, currentAuthor, _]) => {
|
||||
setIsFollowed(
|
||||
Boolean(followingAuthors?.some((followedAuthor) => followedAuthor.id === currentAuthor?.id))
|
||||
)
|
||||
},
|
||||
{ defer: true }
|
||||
)
|
||||
)
|
||||
const [isFollowed, setIsFollowed] = createSignal<boolean>()
|
||||
|
||||
const navigate = useNavigate()
|
||||
createEffect(() => {
|
||||
setIsMobileView(!mediaMatches.sm)
|
||||
})
|
||||
|
||||
const { setFollowing } = useFollowing()
|
||||
const { changeSearchParams } = useRouter()
|
||||
const { t, formatDate, lang } = useLocalize()
|
||||
|
||||
const initChat = () => {
|
||||
// eslint-disable-next-line solid/reactivity
|
||||
requireAuthentication(() => {
|
||||
props.author?.id && navigate(`/inbox/${props.author?.id}`, { replace: true })
|
||||
openPage(router, 'inbox')
|
||||
changeSearchParams({
|
||||
initChat: props.author.id.toString()
|
||||
})
|
||||
}, 'discussions')
|
||||
}
|
||||
|
||||
const name = createMemo(() => {
|
||||
if (lang() !== 'ru' && isCyrillic(props.author.name || '')) {
|
||||
if (lang() !== 'ru' && isCyrillic(props.author.name)) {
|
||||
if (props.author.name === 'Дискурс') {
|
||||
return 'Discours'
|
||||
}
|
||||
|
||||
return translit(props.author.name || '')
|
||||
return translit(props.author.name)
|
||||
}
|
||||
|
||||
return props.author.name
|
||||
})
|
||||
|
||||
createEffect(
|
||||
on(
|
||||
() => props.isFollowed,
|
||||
() => {
|
||||
setIsFollowed(props.isFollowed.value)
|
||||
}
|
||||
)
|
||||
)
|
||||
|
||||
const handleFollowClick = () => {
|
||||
requireAuthentication(async () => {
|
||||
const handle = isFollowed() ? unfollow : follow
|
||||
await handle(FollowingEntity.Author, props.author.slug)
|
||||
}, 'follow')
|
||||
const value = !isFollowed()
|
||||
requireAuthentication(() => {
|
||||
setIsFollowed(value)
|
||||
setFollowing(FollowingEntity.Author, props.author.slug, value)
|
||||
}, 'subscribe')
|
||||
}
|
||||
|
||||
return (
|
||||
|
@ -83,14 +90,14 @@ export const AuthorBadge = (props: Props) => {
|
|||
<Userpic
|
||||
hasLink={true}
|
||||
size={isMobileView() ? 'M' : 'L'}
|
||||
name={name() || ''}
|
||||
userpic={props.author.pic || ''}
|
||||
name={name()}
|
||||
userpic={props.author.pic}
|
||||
slug={props.author.slug}
|
||||
/>
|
||||
<ConditionalWrapper
|
||||
condition={!props.inviteView}
|
||||
wrapper={(children) => (
|
||||
<a href={`/@${props.author.slug}`} class={styles.info}>
|
||||
<a href={`/author/${props.author.slug}`} class={styles.info}>
|
||||
{children}
|
||||
</a>
|
||||
)}
|
||||
|
@ -103,25 +110,22 @@ export const AuthorBadge = (props: Props) => {
|
|||
fallback={
|
||||
<div class={styles.bio}>
|
||||
{t('Registered since {date}', {
|
||||
date: formatDate(new Date((props.author.created_at || 0) * 1000))
|
||||
date: formatDate(new Date(props.author.created_at * 1000))
|
||||
})}
|
||||
</div>
|
||||
}
|
||||
>
|
||||
<Match when={props.author.bio}>
|
||||
<div class={clsx('text-truncate', styles.bio)} innerHTML={props.author.bio || ''} />
|
||||
<div class={clsx('text-truncate', styles.bio)} innerHTML={props.author.bio} />
|
||||
</Match>
|
||||
</Switch>
|
||||
<Show when={props.author?.stat && !props.subscriptionsMode}>
|
||||
<Show when={props.author?.stat}>
|
||||
<div class={styles.bio}>
|
||||
<Show when={(props.author?.stat?.shouts || 0) > 0}>
|
||||
<div>{t('some posts', { count: props.author.stat?.shouts ?? 0 })}</div>
|
||||
<Show when={props.author?.stat.shouts > 0}>
|
||||
<div>{t('PublicationsWithCount', { count: props.author.stat?.shouts ?? 0 })}</div>
|
||||
</Show>
|
||||
<Show when={(props.author?.stat?.comments || 0) > 0}>
|
||||
<div>{t('some comments', { count: props.author.stat?.comments ?? 0 })}</div>
|
||||
</Show>
|
||||
<Show when={(props.author?.stat?.followers || 0) > 0}>
|
||||
<div>{t('some followers', { count: props.author.stat?.followers ?? 0 })}</div>
|
||||
<Show when={props.author?.stat.followers > 0}>
|
||||
<div>{t('FollowersWithCount', { count: props.author.stat?.followers ?? 0 })}</div>
|
||||
</Show>
|
||||
</div>
|
||||
</Show>
|
||||
|
@ -130,11 +134,55 @@ export const AuthorBadge = (props: Props) => {
|
|||
</div>
|
||||
<Show when={props.author.slug !== author()?.slug && !props.nameOnly}>
|
||||
<div class={styles.actions}>
|
||||
<FollowingButton
|
||||
action={handleFollowClick}
|
||||
isFollowed={isFollowed()}
|
||||
actionMessageType={following()?.slug === props.author.slug ? following()?.type : undefined}
|
||||
/>
|
||||
<Show
|
||||
when={!props.minimizeSubscribeButton}
|
||||
fallback={<CheckButton text={t('Follow')} checked={isFollowed()} onClick={handleFollowClick} />}
|
||||
>
|
||||
<Show
|
||||
when={isFollowed()}
|
||||
fallback={
|
||||
<Button
|
||||
variant={props.iconButtons ? 'secondary' : 'bordered'}
|
||||
size="S"
|
||||
value={
|
||||
<Show when={props.iconButtons} fallback={t('Subscribe')}>
|
||||
<Icon name="author-subscribe" class={stylesButton.icon} />
|
||||
</Show>
|
||||
}
|
||||
onClick={handleFollowClick}
|
||||
isSubscribeButton={true}
|
||||
class={clsx(styles.actionButton, {
|
||||
[styles.iconed]: props.iconButtons,
|
||||
[stylesButton.subscribed]: isFollowed()
|
||||
})}
|
||||
/>
|
||||
}
|
||||
>
|
||||
<Button
|
||||
variant={props.iconButtons ? 'secondary' : 'bordered'}
|
||||
size="S"
|
||||
value={
|
||||
<Show
|
||||
when={props.iconButtons}
|
||||
fallback={
|
||||
<>
|
||||
<span class={styles.actionButtonLabel}>{t('Following')}</span>
|
||||
<span class={styles.actionButtonLabelHovered}>{t('Unfollow')}</span>
|
||||
</>
|
||||
}
|
||||
>
|
||||
<Icon name="author-unsubscribe" class={stylesButton.icon} />
|
||||
</Show>
|
||||
}
|
||||
onClick={handleFollowClick}
|
||||
isSubscribeButton={true}
|
||||
class={clsx(styles.actionButton, {
|
||||
[styles.iconed]: props.iconButtons,
|
||||
[stylesButton.subscribed]: isFollowed()
|
||||
})}
|
||||
/>
|
||||
</Show>
|
||||
</Show>
|
||||
<Show when={props.showMessageButton}>
|
||||
<Button
|
||||
variant={props.iconButtons ? 'secondary' : 'bordered'}
|
||||
|
@ -149,8 +197,8 @@ export const AuthorBadge = (props: Props) => {
|
|||
<Show when={props.inviteView}>
|
||||
<CheckButton
|
||||
text={t('Invite')}
|
||||
checked={Boolean(props.selected)}
|
||||
onClick={() => props.onInvite?.(props.author.id)}
|
||||
checked={props.selected}
|
||||
onClick={() => props.onInvite(props.author.id)}
|
||||
/>
|
||||
</Show>
|
||||
</div>
|
||||
|
|
|
@ -1,16 +1,4 @@
|
|||
.author {
|
||||
@include media-breakpoint-down(md) {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
@include media-breakpoint-up(md) {
|
||||
margin-bottom: 2.4rem;
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(lg) {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-flow: row nowrap;
|
||||
|
@ -20,11 +8,19 @@
|
|||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(md) {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
@include media-breakpoint-up(md) {
|
||||
margin-bottom: 2.4rem;
|
||||
}
|
||||
|
||||
.authorName {
|
||||
@include font-size(4rem);
|
||||
|
||||
font-weight: 700;
|
||||
margin-bottom: 1.2rem;
|
||||
margin-bottom: 0.2em;
|
||||
}
|
||||
|
||||
.authorAbout {
|
||||
|
@ -36,15 +32,15 @@
|
|||
}
|
||||
|
||||
.authorActions {
|
||||
@include media-breakpoint-down(md) {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
margin: 2rem -0.8rem 0 0;
|
||||
padding-left: 0;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 1rem;
|
||||
|
||||
@include media-breakpoint-down(md) {
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
|
||||
.authorActionsLabel {
|
||||
|
@ -54,24 +50,27 @@
|
|||
}
|
||||
|
||||
.authorActionsLabelMobile {
|
||||
display: none;
|
||||
|
||||
@include media-breakpoint-down(sm) {
|
||||
display: block;
|
||||
}
|
||||
|
||||
display: none;
|
||||
}
|
||||
|
||||
.authorDetails {
|
||||
display: block;
|
||||
margin-bottom: 0;
|
||||
|
||||
@include media-breakpoint-down(md) {
|
||||
flex: 1 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
display: block;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.listWrapper & {
|
||||
align-items: flex-start;
|
||||
margin-bottom: 2rem;
|
||||
|
||||
@include media-breakpoint-down(sm) {
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
@ -80,9 +79,6 @@
|
|||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
align-items: flex-start;
|
||||
margin-bottom: 2rem;
|
||||
|
||||
.circlewrap {
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
@ -92,6 +88,10 @@
|
|||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(lg) {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.buttonWriteMessage {
|
||||
border-radius: 0.8rem;
|
||||
padding-bottom: 0.6rem;
|
||||
|
@ -100,6 +100,8 @@
|
|||
}
|
||||
|
||||
.authorDetails {
|
||||
flex: 0 0 auto;
|
||||
|
||||
@include media-breakpoint-up(sm) {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
|
@ -116,11 +118,12 @@
|
|||
flex-wrap: nowrap;
|
||||
}
|
||||
}
|
||||
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.authorDetailsWrapper {
|
||||
flex: 1 0;
|
||||
position: relative;
|
||||
|
||||
@include media-breakpoint-up(sm) {
|
||||
flex: 1;
|
||||
}
|
||||
|
@ -136,9 +139,6 @@
|
|||
@include media-breakpoint-up(md) {
|
||||
padding-right: 1.2rem;
|
||||
}
|
||||
|
||||
flex: 1 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.authorName {
|
||||
|
@ -160,15 +160,6 @@
|
|||
}
|
||||
|
||||
.authorSubscribeSocial {
|
||||
@include media-breakpoint-down(sm) {
|
||||
flex: 1 100%;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(md) {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
align-items: center;
|
||||
display: flex;
|
||||
margin: 0.5rem 0 2rem -0.4rem;
|
||||
|
@ -184,7 +175,7 @@
|
|||
width: 24px;
|
||||
|
||||
&::before {
|
||||
background-image: url('/icons/user-link-default.svg');
|
||||
background-image: url(/icons/user-link-default.svg);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 50% 50%;
|
||||
background-size: contain;
|
||||
|
@ -218,7 +209,7 @@
|
|||
|
||||
&[href*='facebook.com/'] {
|
||||
&::before {
|
||||
background-image: url('/icons/user-link-facebook.svg');
|
||||
background-image: url(/icons/user-link-facebook.svg);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
@ -230,7 +221,7 @@
|
|||
|
||||
&[href*='twitter.com/'] {
|
||||
&::before {
|
||||
background-image: url('/icons/user-link-twitter.svg');
|
||||
background-image: url(/icons/user-link-twitter.svg);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
@ -243,7 +234,7 @@
|
|||
&[href*='telegram.com/'],
|
||||
&[href*='t.me/'] {
|
||||
&::before {
|
||||
background-image: url('/icons/user-link-telegram.svg');
|
||||
background-image: url(/icons/user-link-telegram.svg);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
@ -256,7 +247,7 @@
|
|||
&[href*='vk.cc/'],
|
||||
&[href*='vk.com/'] {
|
||||
&::before {
|
||||
background-image: url('/icons/user-link-vk.svg');
|
||||
background-image: url(/icons/user-link-vk.svg);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
@ -268,7 +259,7 @@
|
|||
|
||||
&[href*='tumblr.com/'] {
|
||||
&::before {
|
||||
background-image: url('/icons/user-link-tumblr.svg');
|
||||
background-image: url(/icons/user-link-tumblr.svg);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
@ -280,7 +271,7 @@
|
|||
|
||||
&[href*='instagram.com/'] {
|
||||
&::before {
|
||||
background-image: url('/icons/user-link-instagram.svg');
|
||||
background-image: url(/icons/user-link-instagram.svg);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
@ -292,7 +283,7 @@
|
|||
|
||||
&[href*='behance.net/'] {
|
||||
&::before {
|
||||
background-image: url('/icons/user-link-behance.svg');
|
||||
background-image: url(/icons/user-link-behance.svg);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
@ -304,7 +295,7 @@
|
|||
|
||||
&[href*='dribbble.com/'] {
|
||||
&::before {
|
||||
background-image: url('/icons/user-link-dribbble.svg');
|
||||
background-image: url(/icons/user-link-dribbble.svg);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
@ -316,7 +307,7 @@
|
|||
|
||||
&[href*='github.com/'] {
|
||||
&::before {
|
||||
background-image: url('/icons/user-link-github.svg');
|
||||
background-image: url(/icons/user-link-github.svg);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
@ -328,7 +319,7 @@
|
|||
|
||||
&[href*='linkedin.com/'] {
|
||||
&::before {
|
||||
background-image: url('/icons/user-link-linkedin.svg');
|
||||
background-image: url(/icons/user-link-linkedin.svg);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
@ -340,7 +331,7 @@
|
|||
|
||||
&[href*='medium.com/'] {
|
||||
&::before {
|
||||
background-image: url('/icons/user-link-medium.svg');
|
||||
background-image: url(/icons/user-link-medium.svg);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
@ -352,7 +343,7 @@
|
|||
|
||||
&[href*='ok.ru/'] {
|
||||
&::before {
|
||||
background-image: url('/icons/user-link-ok.svg');
|
||||
background-image: url(/icons/user-link-ok.svg);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
@ -364,7 +355,7 @@
|
|||
|
||||
&[href*='pinterest.com/'] {
|
||||
&::before {
|
||||
background-image: url('/icons/user-link-pinterest.svg');
|
||||
background-image: url(/icons/user-link-pinterest.svg);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
@ -376,7 +367,7 @@
|
|||
|
||||
&[href*='reddit.com/'] {
|
||||
&::before {
|
||||
background-image: url('/icons/user-link-reddit.svg');
|
||||
background-image: url(/icons/user-link-reddit.svg);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
@ -388,7 +379,7 @@
|
|||
|
||||
&[href*='tiktok.com/'] {
|
||||
&::before {
|
||||
background-image: url('/icons/user-link-tiktok.svg');
|
||||
background-image: url(/icons/user-link-tiktok.svg);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
@ -401,7 +392,7 @@
|
|||
&[href*='youtube.com/'],
|
||||
&[href*='youtu.be/'] {
|
||||
&::before {
|
||||
background-image: url('/icons/user-link-youtube.svg');
|
||||
background-image: url(/icons/user-link-youtube.svg);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
@ -413,7 +404,7 @@
|
|||
|
||||
&[href*='dzen.ru/'] {
|
||||
&::before {
|
||||
background-image: url('/icons/user-link-dzen.svg');
|
||||
background-image: url(/icons/user-link-dzen.svg);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
@ -424,24 +415,78 @@
|
|||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(sm) {
|
||||
flex: 1 100%;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(md) {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
a:link {
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
|
||||
.subscribersContainer {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
font-size: 1.4rem;
|
||||
margin-top: 1.5rem;
|
||||
|
||||
@include media-breakpoint-down(md) {
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
|
||||
.subscribers {
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
display: inline-flex;
|
||||
margin: 0 2% 1rem;
|
||||
vertical-align: top;
|
||||
border-bottom: unset !important;
|
||||
|
||||
&:first-child {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.subscribersItem {
|
||||
position: relative;
|
||||
|
||||
&:nth-child(1) {
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
&:nth-child(2) {
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
&:not(:last-child) {
|
||||
margin-right: -4px;
|
||||
box-shadow: 0 0 0 1px var(--background-color);
|
||||
}
|
||||
}
|
||||
|
||||
.subscribersCounter {
|
||||
font-weight: 500;
|
||||
margin-left: 1rem;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background: none !important;
|
||||
|
||||
.subscribersCounter {
|
||||
background: var(--background-color-invert);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.listWrapper {
|
||||
max-height: 70vh;
|
||||
}
|
||||
|
||||
.subscribersContainer {
|
||||
@include media-breakpoint-down(md) {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
font-size: 1.4rem;
|
||||
gap: 1rem;
|
||||
margin-top: 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
|
|
@ -1,88 +1,97 @@
|
|||
import { redirect, useNavigate } from '@solidjs/router'
|
||||
import type { Author, Community } from '../../../graphql/schema/core.gen'
|
||||
|
||||
import { openPage, redirectPage } from '@nanostores/router'
|
||||
import { clsx } from 'clsx'
|
||||
import { For, Show, createEffect, createMemo, createSignal, on } from 'solid-js'
|
||||
import { Button } from '~/components/_shared/Button'
|
||||
import stylesButton from '~/components/_shared/Button/Button.module.scss'
|
||||
import { FollowingCounters } from '~/components/_shared/FollowingCounters/FollowingCounters'
|
||||
import { ShowOnlyOnClient } from '~/components/_shared/ShowOnlyOnClient'
|
||||
import { FollowsFilter, useFollowing } from '~/context/following'
|
||||
import { useLocalize } from '~/context/localize'
|
||||
import { useSession } from '~/context/session'
|
||||
import type { Author, Community } from '~/graphql/schema/core.gen'
|
||||
import { FollowingEntity, Topic } from '~/graphql/schema/core.gen'
|
||||
import { isCyrillic } from '~/intl/translate'
|
||||
import { translit } from '~/intl/translit'
|
||||
import { For, Show, createEffect, createMemo, createSignal, onMount } from 'solid-js'
|
||||
|
||||
import { useFollowing } from '../../../context/following'
|
||||
import { useLocalize } from '../../../context/localize'
|
||||
import { useSession } from '../../../context/session'
|
||||
import { FollowingEntity, Topic } from '../../../graphql/schema/core.gen'
|
||||
import { SubscriptionFilter } from '../../../pages/types'
|
||||
import { router, useRouter } from '../../../stores/router'
|
||||
import { isAuthor } from '../../../utils/isAuthor'
|
||||
import { translit } from '../../../utils/ru2en'
|
||||
import { isCyrillic } from '../../../utils/translate'
|
||||
import { SharePopup, getShareUrl } from '../../Article/SharePopup'
|
||||
import { Modal } from '../../Nav/Modal'
|
||||
import { TopicBadge } from '../../Topic/TopicBadge'
|
||||
import { Modal } from '../../_shared/Modal'
|
||||
import { Button } from '../../_shared/Button'
|
||||
import { ShowOnlyOnClient } from '../../_shared/ShowOnlyOnClient'
|
||||
import { AuthorBadge } from '../AuthorBadge'
|
||||
import { Userpic } from '../Userpic'
|
||||
|
||||
import stylesButton from '../../_shared/Button/Button.module.scss'
|
||||
import styles from './AuthorCard.module.scss'
|
||||
|
||||
type Props = {
|
||||
author: Author
|
||||
followers?: Author[]
|
||||
flatFollows?: Array<Author | Topic>
|
||||
following?: Array<Author | Topic>
|
||||
}
|
||||
|
||||
export const AuthorCard = (props: Props) => {
|
||||
const { t, lang } = useLocalize()
|
||||
const navigate = useNavigate()
|
||||
const { session, isSessionLoaded, requireAuthentication } = useSession()
|
||||
const author = createMemo<Author>(() => session()?.user?.app_data?.profile as Author)
|
||||
const { author, isSessionLoaded, requireAuthentication } = useSession()
|
||||
const [authorSubs, setAuthorSubs] = createSignal<Array<Author | Topic | Community>>([])
|
||||
const [followsFilter, setFollowsFilter] = createSignal<FollowsFilter>('all')
|
||||
const [subscriptionFilter, setSubscriptionFilter] = createSignal<SubscriptionFilter>('all')
|
||||
const [isFollowed, setIsFollowed] = createSignal<boolean>()
|
||||
const isProfileOwner = createMemo(() => author()?.slug === props.author.slug)
|
||||
const { follow, unfollow, follows, following } = useFollowing() // viewer's followings
|
||||
const { setFollowing, isOwnerSubscribed } = useFollowing()
|
||||
|
||||
onMount(() => {
|
||||
setAuthorSubs(props.following)
|
||||
})
|
||||
|
||||
createEffect(() => {
|
||||
if (!(follows && props.author)) return
|
||||
const followed = follows?.authors?.some((authorEntity) => authorEntity.id === props.author?.id)
|
||||
setIsFollowed(followed)
|
||||
setIsFollowed(isOwnerSubscribed(props.author?.id))
|
||||
})
|
||||
|
||||
const name = createMemo(() => {
|
||||
if (lang() !== 'ru' && isCyrillic(props.author?.name || '')) {
|
||||
if (lang() !== 'ru' && isCyrillic(props.author.name)) {
|
||||
if (props.author.name === 'Дискурс') {
|
||||
return 'Discours'
|
||||
}
|
||||
return translit(props.author?.name || '')
|
||||
return translit(props.author.name)
|
||||
}
|
||||
return props.author.name
|
||||
})
|
||||
|
||||
// TODO: reimplement AuthorCard
|
||||
const { changeSearchParams } = useRouter()
|
||||
const initChat = () => {
|
||||
// eslint-disable-next-line solid/reactivity
|
||||
requireAuthentication(() => {
|
||||
props.author?.id && navigate(`/inbox/${props.author?.id}`, { replace: true })
|
||||
openPage(router, 'inbox')
|
||||
changeSearchParams({
|
||||
initChat: props.author.id.toString()
|
||||
})
|
||||
}, 'discussions')
|
||||
}
|
||||
|
||||
createEffect(
|
||||
on(followsFilter, (f = 'all') => {
|
||||
const subs =
|
||||
f !== 'all'
|
||||
? follows[f as keyof typeof follows]
|
||||
: [...(follows.topics || []), ...(follows.authors || [])]
|
||||
setAuthorSubs(subs || [])
|
||||
})
|
||||
)
|
||||
createEffect(() => {
|
||||
if (props.following) {
|
||||
if (subscriptionFilter() === 'authors') {
|
||||
setAuthorSubs(props.following.filter((s) => 'name' in s))
|
||||
} else if (subscriptionFilter() === 'topics') {
|
||||
setAuthorSubs(props.following.filter((s) => 'title' in s))
|
||||
} else if (subscriptionFilter() === 'communities') {
|
||||
setAuthorSubs(props.following.filter((s) => 'title' in s))
|
||||
} else {
|
||||
setAuthorSubs(props.following)
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
const handleFollowClick = () => {
|
||||
const value = !isFollowed()
|
||||
requireAuthentication(() => {
|
||||
isFollowed()
|
||||
? unfollow(FollowingEntity.Author, props.author.slug)
|
||||
: follow(FollowingEntity.Author, props.author.slug)
|
||||
}, 'follow')
|
||||
setIsFollowed(value)
|
||||
setFollowing(FollowingEntity.Author, props.author.slug, value)
|
||||
}, 'subscribe')
|
||||
}
|
||||
|
||||
const followButtonText = createMemo(() => {
|
||||
if (following()?.slug === props.author.slug) {
|
||||
return following()?.type === 'follow' ? t('Following...') : t('Unfollowing...')
|
||||
}
|
||||
|
||||
if (isFollowed()) {
|
||||
if (isOwnerSubscribed(props.author?.id)) {
|
||||
return (
|
||||
<>
|
||||
<span class={stylesButton.buttonSubscribeLabel}>{t('Following')}</span>
|
||||
|
@ -93,82 +102,13 @@ export const AuthorCard = (props: Props) => {
|
|||
return t('Follow')
|
||||
})
|
||||
|
||||
const FollowersModalView = () => (
|
||||
<>
|
||||
<h2>{t('Followers')}</h2>
|
||||
<div class={styles.listWrapper}>
|
||||
<div class="row">
|
||||
<div class="col-24">
|
||||
<For each={props.followers}>{(follower: Author) => <AuthorBadge author={follower} />}</For>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
|
||||
const FollowingModalView = () => (
|
||||
<>
|
||||
<h2>{t('Subscriptions')}</h2>
|
||||
<ul class="view-switcher">
|
||||
<li
|
||||
class={clsx({
|
||||
'view-switcher__item--selected': followsFilter() === 'all'
|
||||
})}
|
||||
>
|
||||
<button type="button" onClick={() => setFollowsFilter('all')}>
|
||||
{t('All')}
|
||||
</button>
|
||||
<span class="view-switcher__counter">{props.flatFollows?.length}</span>
|
||||
</li>
|
||||
<li
|
||||
class={clsx({
|
||||
'view-switcher__item--selected': followsFilter() === 'authors'
|
||||
})}
|
||||
>
|
||||
<button type="button" onClick={() => setFollowsFilter('authors')}>
|
||||
{t('Authors')}
|
||||
</button>
|
||||
<span class="view-switcher__counter">{props.flatFollows?.filter((s) => 'name' in s).length}</span>
|
||||
</li>
|
||||
<li
|
||||
class={clsx({
|
||||
'view-switcher__item--selected': followsFilter() === 'topics'
|
||||
})}
|
||||
>
|
||||
<button type="button" onClick={() => setFollowsFilter('topics')}>
|
||||
{t('Topics')}
|
||||
</button>
|
||||
<span class="view-switcher__counter">
|
||||
{props.flatFollows?.filter((s) => 'title' in s).length}
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<br />
|
||||
<div class={styles.listWrapper}>
|
||||
<div class="row">
|
||||
<div class="col-24">
|
||||
<For each={authorSubs()}>
|
||||
{(subscription) =>
|
||||
'name' in subscription ? (
|
||||
<AuthorBadge author={subscription as Author} subscriptionsMode={true} />
|
||||
) : (
|
||||
<TopicBadge topic={subscription as Topic} subscriptionsMode={true} />
|
||||
)
|
||||
}
|
||||
</For>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
|
||||
return (
|
||||
<div class={clsx(styles.author, 'row')}>
|
||||
<div class="col-md-5">
|
||||
<Userpic
|
||||
size={'XL'}
|
||||
name={props.author.name || ''}
|
||||
userpic={props.author.pic || ''}
|
||||
name={props.author.name}
|
||||
userpic={props.author.pic}
|
||||
slug={props.author.slug}
|
||||
class={styles.circlewrap}
|
||||
/>
|
||||
|
@ -177,16 +117,62 @@ export const AuthorCard = (props: Props) => {
|
|||
<div class={styles.authorDetailsWrapper}>
|
||||
<div class={styles.authorName}>{name()}</div>
|
||||
<Show when={props.author.bio}>
|
||||
<div class={styles.authorAbout} innerHTML={props.author.bio || ''} />
|
||||
<div class={styles.authorAbout} innerHTML={props.author.bio} />
|
||||
</Show>
|
||||
<Show when={(props.followers || [])?.length > 0 || (props.flatFollows || []).length > 0}>
|
||||
<Show
|
||||
when={
|
||||
(props.followers && props.followers.length > 0) ||
|
||||
(props.following && props.following.length > 0)
|
||||
}
|
||||
>
|
||||
<div class={styles.subscribersContainer}>
|
||||
<FollowingCounters
|
||||
followers={props.followers}
|
||||
followersAmount={props.author?.stat?.followers || 0}
|
||||
following={props.flatFollows}
|
||||
followingAmount={props.flatFollows?.length || 0}
|
||||
/>
|
||||
<Show when={props.followers && props.followers.length > 0}>
|
||||
<a href="?m=followers" class={styles.subscribers}>
|
||||
<For each={props.followers.slice(0, 3)}>
|
||||
{(f) => (
|
||||
<Userpic size={'XS'} name={f.name} userpic={f.pic} class={styles.subscribersItem} />
|
||||
)}
|
||||
</For>
|
||||
<div class={styles.subscribersCounter}>
|
||||
{t('SubscriberWithCount', { count: props.followers.length ?? 0 })}
|
||||
</div>
|
||||
</a>
|
||||
</Show>
|
||||
|
||||
<Show when={props.following && props.following.length > 0}>
|
||||
<a href="?m=following" class={styles.subscribers}>
|
||||
<For each={props.following.slice(0, 3)}>
|
||||
{(f) => {
|
||||
if ('name' in f) {
|
||||
return (
|
||||
<Userpic
|
||||
size={'XS'}
|
||||
name={f.name}
|
||||
userpic={f.pic}
|
||||
class={styles.subscribersItem}
|
||||
/>
|
||||
)
|
||||
}
|
||||
|
||||
if ('title' in f) {
|
||||
return (
|
||||
<Userpic
|
||||
size={'XS'}
|
||||
name={f.title}
|
||||
userpic={f.pic}
|
||||
class={styles.subscribersItem}
|
||||
/>
|
||||
)
|
||||
}
|
||||
|
||||
return null
|
||||
}}
|
||||
</For>
|
||||
<div class={styles.subscribersCounter}>
|
||||
{t('SubscriptionWithCount', { count: props?.following.length ?? 0 })}
|
||||
</div>
|
||||
</a>
|
||||
</Show>
|
||||
</div>
|
||||
</Show>
|
||||
</div>
|
||||
|
@ -195,15 +181,15 @@ export const AuthorCard = (props: Props) => {
|
|||
<Show when={props.author.links && props.author.links.length > 0}>
|
||||
<div class={styles.authorSubscribeSocial}>
|
||||
<For each={props.author.links}>
|
||||
{(link: string | null) => (
|
||||
{(link) => (
|
||||
<a
|
||||
class={styles.socialLink}
|
||||
href={link?.startsWith('http') ? link : `https://${link}`}
|
||||
href={link.startsWith('http') ? link : `https://${link}`}
|
||||
target="_blank"
|
||||
rel="nofollow noopener noreferrer"
|
||||
>
|
||||
<span class={styles.authorSubscribeSocialLabel}>
|
||||
{link?.startsWith('http') ? link : `https://${link}`}
|
||||
{link.startsWith('http') ? link : `https://${link}`}
|
||||
</span>
|
||||
</a>
|
||||
)}
|
||||
|
@ -214,14 +200,13 @@ export const AuthorCard = (props: Props) => {
|
|||
when={isProfileOwner()}
|
||||
fallback={
|
||||
<div class={styles.authorActions}>
|
||||
<Show when={authorSubs()?.length}>
|
||||
<Show when={authorSubs().length}>
|
||||
<Button
|
||||
onClick={handleFollowClick}
|
||||
disabled={Boolean(following())}
|
||||
value={followButtonText()}
|
||||
isSubscribeButton={true}
|
||||
class={clsx({
|
||||
[stylesButton.followed]: isFollowed()
|
||||
[stylesButton.subscribed]: isFollowed()
|
||||
})}
|
||||
/>
|
||||
</Show>
|
||||
|
@ -237,7 +222,7 @@ export const AuthorCard = (props: Props) => {
|
|||
<div class={styles.authorActions}>
|
||||
<Button
|
||||
variant="secondary"
|
||||
onClick={() => redirect('/settings')}
|
||||
onClick={() => redirectPage(router, 'profileSettings')}
|
||||
value={
|
||||
<>
|
||||
<span class={styles.authorActionsLabel}>{t('Edit profile')}</span>
|
||||
|
@ -246,12 +231,10 @@ export const AuthorCard = (props: Props) => {
|
|||
}
|
||||
/>
|
||||
<SharePopup
|
||||
title={props.author.name || ''}
|
||||
description={props.author.bio || ''}
|
||||
imageUrl={props.author.pic || ''}
|
||||
shareUrl={getShareUrl({
|
||||
pathname: `/@${props.author.slug}`
|
||||
})}
|
||||
title={props.author.name}
|
||||
description={props.author.bio}
|
||||
imageUrl={props.author.pic}
|
||||
shareUrl={getShareUrl({ pathname: `/author/${props.author.slug}` })}
|
||||
trigger={<Button variant="secondary" value={t('Share')} />}
|
||||
/>
|
||||
</div>
|
||||
|
@ -260,12 +243,85 @@ export const AuthorCard = (props: Props) => {
|
|||
</ShowOnlyOnClient>
|
||||
<Show when={props.followers}>
|
||||
<Modal variant="medium" isResponsive={true} name="followers" maxHeight>
|
||||
<FollowersModalView />
|
||||
<>
|
||||
<h2>{t('Followers')}</h2>
|
||||
<div class={styles.listWrapper}>
|
||||
<div class="row">
|
||||
<div class="col-24">
|
||||
<For each={props.followers}>
|
||||
{(follower: Author) => (
|
||||
<AuthorBadge
|
||||
author={follower}
|
||||
isFollowed={{
|
||||
loaded: Boolean(authorSubs()),
|
||||
value: isOwnerSubscribed(follower.id)
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
</For>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
</Modal>
|
||||
</Show>
|
||||
<Show when={props.flatFollows}>
|
||||
<Show when={props.following}>
|
||||
<Modal variant="medium" isResponsive={true} name="following" maxHeight>
|
||||
<FollowingModalView />
|
||||
<>
|
||||
<h2>{t('Subscriptions')}</h2>
|
||||
<ul class="view-switcher">
|
||||
<li class={clsx({ 'view-switcher__item--selected': subscriptionFilter() === 'all' })}>
|
||||
<button type="button" onClick={() => setSubscriptionFilter('all')}>
|
||||
{t('All')}
|
||||
</button>
|
||||
<span class="view-switcher__counter">{props.following.length}</span>
|
||||
</li>
|
||||
<li class={clsx({ 'view-switcher__item--selected': subscriptionFilter() === 'authors' })}>
|
||||
<button type="button" onClick={() => setSubscriptionFilter('authors')}>
|
||||
{t('Authors')}
|
||||
</button>
|
||||
<span class="view-switcher__counter">
|
||||
{props.following.filter((s) => 'name' in s).length}
|
||||
</span>
|
||||
</li>
|
||||
<li class={clsx({ 'view-switcher__item--selected': subscriptionFilter() === 'topics' })}>
|
||||
<button type="button" onClick={() => setSubscriptionFilter('topics')}>
|
||||
{t('Topics')}
|
||||
</button>
|
||||
<span class="view-switcher__counter">
|
||||
{props.following.filter((s) => 'title' in s).length}
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<br />
|
||||
<div class={styles.listWrapper}>
|
||||
<div class="row">
|
||||
<div class="col-24">
|
||||
<For each={authorSubs()}>
|
||||
{(subscription) =>
|
||||
isAuthor(subscription) ? (
|
||||
<AuthorBadge
|
||||
isFollowed={{
|
||||
loaded: Boolean(authorSubs()),
|
||||
value: isOwnerSubscribed(subscription.id)
|
||||
}}
|
||||
author={subscription}
|
||||
/>
|
||||
) : (
|
||||
<TopicBadge
|
||||
isFollowed={{
|
||||
loaded: Boolean(authorSubs()),
|
||||
value: isOwnerSubscribed(subscription.id)
|
||||
}}
|
||||
topic={subscription}
|
||||
/>
|
||||
)
|
||||
}
|
||||
</For>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
</Modal>
|
||||
</Show>
|
||||
</div>
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
import { clsx } from 'clsx'
|
||||
import { createMemo } from 'solid-js'
|
||||
|
||||
import { useLocalize } from '~/context/localize'
|
||||
import { Author } from '~/graphql/schema/core.gen'
|
||||
import { isCyrillic } from '~/intl/translate'
|
||||
import { translit } from '~/intl/translit'
|
||||
import { capitalize } from '~/utils/capitalize'
|
||||
import { useLocalize } from '../../../context/localize'
|
||||
import { Author } from '../../../graphql/schema/core.gen'
|
||||
import { capitalize } from '../../../utils/capitalize'
|
||||
import { translit } from '../../../utils/ru2en'
|
||||
import { isCyrillic } from '../../../utils/translate'
|
||||
import { Userpic } from '../Userpic'
|
||||
|
||||
import styles from './AuthorLink.module.scss'
|
||||
import styles from './AhtorLink.module.scss'
|
||||
|
||||
type Props = {
|
||||
author: Author
|
||||
|
@ -20,18 +20,18 @@ type Props = {
|
|||
export const AuthorLink = (props: Props) => {
|
||||
const { lang } = useLocalize()
|
||||
const name = createMemo(() => {
|
||||
return lang() === 'en' && isCyrillic(props.author.name || '')
|
||||
? translit(capitalize(props.author.name || ''))
|
||||
return lang() === 'en' && isCyrillic(props.author.name)
|
||||
? translit(capitalize(props.author.name))
|
||||
: props.author.name
|
||||
})
|
||||
return (
|
||||
<div
|
||||
class={clsx(styles.AuthorLink, props.class, styles[(props.size ?? 'M') as keyof Props['size']], {
|
||||
class={clsx(styles.AuthorLink, props.class, styles[props.size ?? 'M'], {
|
||||
[styles.authorLinkFloorImportant]: props.isFloorImportant
|
||||
})}
|
||||
>
|
||||
<a class={styles.link} href={`/@${props.author.slug}`}>
|
||||
<Userpic size={props.size ?? 'M'} name={name() || ''} userpic={props.author.pic || ''} />
|
||||
<a class={styles.link} href={`/author/${props.author.slug}`}>
|
||||
<Userpic size={props.size ?? 'M'} name={name()} userpic={props.author.pic} />
|
||||
<div class={styles.name}>{name()}</div>
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
import type { Author } from '~/graphql/schema/core.gen'
|
||||
import type { Author } from '../../graphql/schema/core.gen'
|
||||
|
||||
import { clsx } from 'clsx'
|
||||
import { Show, createSignal } from 'solid-js'
|
||||
import { useSession } from '~/context/session'
|
||||
import rateAuthorMutation from '~/graphql/mutation/core/author-rate'
|
||||
|
||||
import { apiClient } from '../../graphql/client/core'
|
||||
|
||||
import styles from './AuthorRatingControl.module.scss'
|
||||
|
||||
interface AuthorRatingControlProps {
|
||||
|
@ -14,23 +15,16 @@ interface AuthorRatingControlProps {
|
|||
export const AuthorRatingControl = (props: AuthorRatingControlProps) => {
|
||||
const isUpvoted = false
|
||||
const isDownvoted = false
|
||||
|
||||
const { client } = useSession()
|
||||
|
||||
// eslint-disable-next-line unicorn/consistent-function-scoping
|
||||
const handleRatingChange = async (isUpvote: boolean) => {
|
||||
console.log('handleRatingChange', { isUpvote })
|
||||
if (props.author?.slug) {
|
||||
const value = isUpvote ? 1 : -1
|
||||
const _resp = await client()
|
||||
?.mutation(rateAuthorMutation, {
|
||||
rated_slug: props.author?.slug,
|
||||
value
|
||||
})
|
||||
.toPromise()
|
||||
setRating((r) => (r || 0) + value)
|
||||
await apiClient.rateAuthor({ rated_slug: props.author?.slug, value })
|
||||
setRating((r) => r + value)
|
||||
}
|
||||
}
|
||||
|
||||
const [rating, setRating] = createSignal(props.author?.stat?.rating)
|
||||
return (
|
||||
<div
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import type { Author } from '~/graphql/schema/core.gen'
|
||||
import type { Author } from '../../graphql/schema/core.gen'
|
||||
|
||||
import { clsx } from 'clsx'
|
||||
import { createMemo } from 'solid-js'
|
||||
|
@ -11,7 +11,7 @@ interface AuthorShoutsRating {
|
|||
}
|
||||
|
||||
export const AuthorShoutsRating = (props: AuthorShoutsRating) => {
|
||||
const isUpvoted = createMemo(() => (props.author?.stat?.rating_shouts || 0) > 0)
|
||||
const isUpvoted = createMemo(() => props.author?.stat?.rating_shouts > 0)
|
||||
return (
|
||||
<div
|
||||
class={clsx(styles.rating, props.class, {
|
||||
|
|
|
@ -86,17 +86,17 @@
|
|||
}
|
||||
|
||||
&.XL {
|
||||
@include media-breakpoint-up(md) {
|
||||
margin: 0;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
aspect-ratio: 1/1;
|
||||
margin: 0 auto 1rem;
|
||||
max-width: 168px;
|
||||
height: auto;
|
||||
width: 100%;
|
||||
|
||||
@include media-breakpoint-up(md) {
|
||||
margin: 0;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.letters {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
import { clsx } from 'clsx'
|
||||
import { Show, createMemo } from 'solid-js'
|
||||
|
||||
import { ConditionalWrapper } from '~/components/_shared/ConditionalWrapper'
|
||||
import { Image } from '~/components/_shared/Image'
|
||||
import { Loading } from '~/components/_shared/Loading'
|
||||
import { ConditionalWrapper } from '../../_shared/ConditionalWrapper'
|
||||
import { Image } from '../../_shared/Image'
|
||||
import { Loading } from '../../_shared/Loading'
|
||||
|
||||
import styles from './Userpic.module.scss'
|
||||
|
||||
|
@ -22,7 +22,7 @@ export const Userpic = (props: Props) => {
|
|||
const letters = () => {
|
||||
if (!props.name) return
|
||||
const names = props.name ? props.name.split(' ') : []
|
||||
return `${names[0][0] ? names[0][0] : ''}.${names.length > 1 ? `${names[1][0]}.` : ''}`
|
||||
return `${names[0][0 ?? names[0][0]]}.${names.length > 1 ? `${names[1][0]}.` : ''}`
|
||||
}
|
||||
|
||||
const avatarSize = createMemo(() => {
|
||||
|
@ -54,8 +54,8 @@ export const Userpic = (props: Props) => {
|
|||
>
|
||||
<Show when={!props.loading} fallback={<Loading />}>
|
||||
<ConditionalWrapper
|
||||
condition={Boolean(props.hasLink)}
|
||||
wrapper={(children) => <a href={`/@${props.slug}`}>{children}</a>}
|
||||
condition={props.hasLink}
|
||||
wrapper={(children) => <a href={`/author/${props.slug}`}>{children}</a>}
|
||||
>
|
||||
<Show keyed={true} when={props.userpic} fallback={<div class={styles.letters}>{letters()}</div>}>
|
||||
<Image src={props.userpic} width={avatarSize()} height={avatarSize()} alt={props.name} />
|
||||
|
|
26
src/components/AuthorsList/AuthorsList.module.scss
Normal file
|
@ -0,0 +1,26 @@
|
|||
.AuthorsList {
|
||||
.action {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 8rem;
|
||||
}
|
||||
|
||||
.loading {
|
||||
@include font-size(1.4rem);
|
||||
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 1rem;
|
||||
width: 100%;
|
||||
flex-direction: row;
|
||||
opacity: 0.5;
|
||||
|
||||
.icon {
|
||||
position: relative;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
}
|
||||
}
|
||||
}
|
90
src/components/AuthorsList/AuthorsList.tsx
Normal file
|
@ -0,0 +1,90 @@
|
|||
import { clsx } from 'clsx'
|
||||
import { For, Show, createEffect, createSignal } from 'solid-js'
|
||||
import { useFollowing } from '../../context/following'
|
||||
import { useLocalize } from '../../context/localize'
|
||||
import { apiClient } from '../../graphql/client/core'
|
||||
import { setAuthorsByFollowers, setAuthorsByShouts, useAuthorsStore } from '../../stores/zine/authors'
|
||||
import { AuthorBadge } from '../Author/AuthorBadge'
|
||||
import { InlineLoader } from '../InlineLoader'
|
||||
import { Button } from '../_shared/Button'
|
||||
import styles from './AuthorsList.module.scss'
|
||||
|
||||
type Props = {
|
||||
class?: string
|
||||
query: 'shouts' | 'followers'
|
||||
}
|
||||
|
||||
const PAGE_SIZE = 20
|
||||
export const AuthorsList = (props: Props) => {
|
||||
const { t } = useLocalize()
|
||||
const { isOwnerSubscribed } = useFollowing()
|
||||
const [loading, setLoading] = createSignal(false)
|
||||
const [currentPage, setCurrentPage] = createSignal({ shouts: 0, followers: 0 })
|
||||
const { authorsByShouts, authorsByFollowers } = useAuthorsStore()
|
||||
|
||||
const fetchAuthors = async (queryType: 'shouts' | 'followers', page: number) => {
|
||||
setLoading(true)
|
||||
const offset = PAGE_SIZE * page
|
||||
const result = await apiClient.loadAuthorsBy({
|
||||
by: { order: queryType },
|
||||
limit: PAGE_SIZE,
|
||||
offset: offset
|
||||
})
|
||||
|
||||
if (queryType === 'shouts') {
|
||||
setAuthorsByShouts((prev) => [...prev, ...result])
|
||||
} else {
|
||||
setAuthorsByFollowers((prev) => [...prev, ...result])
|
||||
}
|
||||
setLoading(false)
|
||||
return result
|
||||
}
|
||||
|
||||
const loadMoreAuthors = () => {
|
||||
const queryType = props.query
|
||||
const nextPage = currentPage()[queryType] + 1
|
||||
fetchAuthors(queryType, nextPage).then(() =>
|
||||
setCurrentPage({ ...currentPage(), [queryType]: nextPage })
|
||||
)
|
||||
}
|
||||
|
||||
createEffect(() => {
|
||||
const queryType = props.query
|
||||
if (
|
||||
currentPage()[queryType] === 0 &&
|
||||
(authorsByShouts().length === 0 || authorsByFollowers().length === 0)
|
||||
) {
|
||||
loadMoreAuthors()
|
||||
}
|
||||
})
|
||||
|
||||
const authorsList = () => (props.query === 'shouts' ? authorsByShouts() : authorsByFollowers())
|
||||
|
||||
return (
|
||||
<div class={clsx(styles.AuthorsList, props.class)}>
|
||||
<For each={authorsList()}>
|
||||
{(author) => (
|
||||
<div class="row">
|
||||
<div class="col-lg-20 col-xl-18">
|
||||
<AuthorBadge
|
||||
author={author}
|
||||
isFollowed={{
|
||||
loaded: !loading(),
|
||||
value: isOwnerSubscribed(author.id)
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</For>
|
||||
<div class={styles.action}>
|
||||
<Show when={!loading()}>
|
||||
<Button value={t('Load more')} onClick={loadMoreAuthors} />
|
||||
</Show>
|
||||
<Show when={loading()}>
|
||||
<InlineLoader />
|
||||
</Show>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
1
src/components/AuthorsList/index.ts
Normal file
|
@ -0,0 +1 @@
|
|||
export { AuthorsList } from './AuthorsList'
|
|
@ -1,12 +1,12 @@
|
|||
.discoursBanner {
|
||||
@include media-breakpoint-down(sm) {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
background: #f8f8f8;
|
||||
margin-bottom: 6.4rem;
|
||||
padding: 0.8rem 0 0;
|
||||
|
||||
@include media-breakpoint-down(sm) {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 3.2rem;
|
||||
font-weight: 800;
|
||||
|
|
|
@ -1,23 +1,22 @@
|
|||
import { clsx } from 'clsx'
|
||||
|
||||
import { useLocalize } from '~/context/localize'
|
||||
import { useUI } from '~/context/ui'
|
||||
import { useLocalize } from '../../context/localize'
|
||||
import { showModal } from '../../stores/ui'
|
||||
import { Image } from '../_shared/Image'
|
||||
|
||||
import styles from './Banner.module.scss'
|
||||
|
||||
export default () => {
|
||||
const { t } = useLocalize()
|
||||
const { showModal } = useUI()
|
||||
return (
|
||||
<div class={styles.discoursBanner}>
|
||||
<div class="wide-container">
|
||||
<div class="row">
|
||||
<div class={clsx(styles.discoursBannerContent, 'col-lg-10')}>
|
||||
<h3>{t('Discours exists because of our common effort')}</h3>
|
||||
<h3>{t('Discours is created with our common effort')}</h3>
|
||||
<p>
|
||||
<a href="/support">{t('Support us')}</a>
|
||||
<a href="/edit/new">{t('Become an author')}</a>
|
||||
<a href="/about/help">{t('Support us')}</a>
|
||||
<a href="/create">{t('Become an author')}</a>
|
||||
<a href={''} onClick={() => showModal('auth')}>
|
||||
{t('Join the community')}
|
||||
</a>
|
||||
|
|
|
@ -24,12 +24,12 @@
|
|||
}
|
||||
|
||||
&:focus {
|
||||
box-shadow: inset 0 0 0 3px #000;
|
||||
|
||||
&::placeholder {
|
||||
opacity: 0;
|
||||
transition: opacity 0.2s ease;
|
||||
}
|
||||
|
||||
box-shadow: inset 0 0 0 3px #000;
|
||||
}
|
||||
|
||||
&:valid,
|
||||
|
@ -49,18 +49,18 @@
|
|||
}
|
||||
|
||||
.donateForm .btn {
|
||||
@include media-breakpoint-down(sm) {
|
||||
&:last-of-type {
|
||||
margin-right: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
cursor: pointer;
|
||||
flex: 1;
|
||||
padding: 5px 10px;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
transform: none !important;
|
||||
|
||||
@include media-breakpoint-down(sm) {
|
||||
&:last-of-type {
|
||||
margin-right: 0 !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btnGroup {
|
||||
|
@ -82,22 +82,22 @@
|
|||
}
|
||||
|
||||
.donateButtonsContainer {
|
||||
@include media-breakpoint-down(sm) {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
align-items: center;
|
||||
display: flex;
|
||||
flex: 1;
|
||||
justify-content: space-between;
|
||||
|
||||
@include media-breakpoint-down(sm) {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
input,
|
||||
label {
|
||||
margin: 0 8px;
|
||||
|
||||
@include media-breakpoint-down(sm) {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
margin: 0 8px;
|
||||
}
|
||||
|
||||
input {
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
import { clsx } from 'clsx'
|
||||
import { createSignal, onMount } from 'solid-js'
|
||||
|
||||
import { useLocalize } from '~/context/localize'
|
||||
import { useSnackbar, useUI } from '~/context/ui'
|
||||
import { useLocalize } from '../../context/localize'
|
||||
import { useSnackbar } from '../../context/snackbar'
|
||||
import { showModal } from '../../stores/ui'
|
||||
|
||||
import styles from './Donate.module.scss'
|
||||
|
||||
|
@ -11,7 +12,6 @@ type DWindow = Window & { cp: any }
|
|||
|
||||
export const Donate = () => {
|
||||
const { t } = useLocalize()
|
||||
const { showModal } = useUI()
|
||||
const once = ''
|
||||
const monthly = 'Monthly'
|
||||
const cpOptions = {
|
||||
|
@ -103,15 +103,13 @@ export const Donate = () => {
|
|||
}
|
||||
}
|
||||
},
|
||||
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
|
||||
(opts: any) => {
|
||||
(opts) => {
|
||||
// success
|
||||
// действие при успешной оплате
|
||||
console.debug('[donate] options', opts)
|
||||
showModal('thank')
|
||||
},
|
||||
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
|
||||
(reason: string, options: any) => {
|
||||
(reason: string, options) => {
|
||||
// fail
|
||||
// действие при неуспешной оплате
|
||||
console.debug('[donate] options', options)
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
import { useLocalize } from '~/context/localize'
|
||||
import { useUI } from '~/context/ui'
|
||||
import { useLocalize } from '../../context/localize'
|
||||
import { hideModal } from '../../stores/ui'
|
||||
import { Button } from '../_shared/Button'
|
||||
|
||||
export const Feedback = () => {
|
||||
const { t } = useLocalize()
|
||||
const { hideModal } = useUI()
|
||||
|
||||
const action = '/user/feedback'
|
||||
const method = 'post'
|
||||
let msgElement: HTMLTextAreaElement | undefined
|
||||
|
|
|
@ -88,16 +88,16 @@
|
|||
}
|
||||
|
||||
.socialItem {
|
||||
margin-top: 1em;
|
||||
text-align: center;
|
||||
width: 25%;
|
||||
|
||||
@include media-breakpoint-up(md) {
|
||||
margin-top: 0;
|
||||
margin-left: 0.3em;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
margin-top: 1em;
|
||||
text-align: center;
|
||||
width: 25%;
|
||||
|
||||
a:link {
|
||||
border: none;
|
||||
padding-bottom: 0;
|
||||
|
|
|
@ -1,81 +1,127 @@
|
|||
import { clsx } from 'clsx'
|
||||
import { For, createSignal, onMount } from 'solid-js'
|
||||
import { useLocalize } from '~/context/localize'
|
||||
import { For, createMemo } from 'solid-js'
|
||||
|
||||
import { useLocalize } from '../../context/localize'
|
||||
import { Icon } from '../_shared/Icon'
|
||||
import { Newsletter } from '../_shared/Newsletter'
|
||||
import { Subscribe } from '../_shared/Subscribe'
|
||||
|
||||
import styles from './Footer.module.scss'
|
||||
|
||||
const social = [
|
||||
{ name: 'facebook', href: 'https://facebook.com/discoursio' },
|
||||
{ name: 'vk', href: 'https://vk.com/discoursio' },
|
||||
{ name: 'twitter', href: 'https://twitter.com/discours_io' },
|
||||
{ name: 'telegram', href: 'https://t.me/discoursio' }
|
||||
]
|
||||
type FooterItem = {
|
||||
title: string
|
||||
slug: string
|
||||
rel?: string
|
||||
}
|
||||
export const FooterView = () => {
|
||||
export const Footer = () => {
|
||||
const { t, lang } = useLocalize()
|
||||
const [footerLinks, setFooterLinks] = createSignal<Array<{ header: string; items: FooterItem[] }>>([])
|
||||
|
||||
onMount(() => {
|
||||
setFooterLinks([
|
||||
{
|
||||
header: t('About the project'),
|
||||
items: [
|
||||
{ title: t('Discours Manifest'), slug: '/manifest' },
|
||||
{ title: t('How it works'), slug: '/guide' },
|
||||
{ title: t('Dogma'), slug: '/dogma' },
|
||||
{ title: t('Our principles'), slug: '/principles' },
|
||||
{ title: t('How to write an article'), slug: '/how-to-write-a-good-article' }
|
||||
]
|
||||
},
|
||||
{
|
||||
header: t('Participating'),
|
||||
items: [
|
||||
{ title: t('Suggest an idea'), slug: '/connect' },
|
||||
{ title: t('Become an author'), slug: '/edit/new' },
|
||||
{ title: t('Support Discours'), slug: '/support' },
|
||||
{
|
||||
title: t('Cooperate with Discours'),
|
||||
slug: 'https://docs.google.com/forms/d/e/1FAIpQLSeNNvIzKlXElJtkPkYiXl-jQjlvsL9u4-kpnoRjz1O8Wo40xQ/viewform'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
header: t('Sections'),
|
||||
items: [
|
||||
{ title: t('Authors'), slug: '/author' },
|
||||
{ title: t('Communities'), slug: '/community' },
|
||||
{ title: t('Partners'), slug: '/partners' },
|
||||
{ title: t('Special projects'), slug: '/projects' },
|
||||
{
|
||||
title: lang() === 'ru' ? 'English' : 'Русский',
|
||||
slug: `?lng=${lang() === 'ru' ? 'en' : 'ru'}`,
|
||||
rel: 'external'
|
||||
}
|
||||
]
|
||||
}
|
||||
])
|
||||
})
|
||||
const changeLangTitle = createMemo(() => (lang() === 'ru' ? 'English' : 'Русский'))
|
||||
const changeLangLink = createMemo(() => `?lng=${lang() === 'ru' ? 'en' : 'ru'}`)
|
||||
const links = createMemo(() => [
|
||||
{
|
||||
header: 'About the project',
|
||||
items: [
|
||||
{
|
||||
title: 'Discours Manifest',
|
||||
slug: '/about/manifest'
|
||||
},
|
||||
{
|
||||
title: 'How it works',
|
||||
slug: '/about/guide'
|
||||
},
|
||||
{
|
||||
title: 'Dogma',
|
||||
slug: '/about/dogma'
|
||||
},
|
||||
{
|
||||
title: 'Principles',
|
||||
slug: '/about/principles'
|
||||
},
|
||||
{
|
||||
title: 'How to write an article',
|
||||
slug: '/how-to-write-a-good-article'
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
{
|
||||
header: 'Participating',
|
||||
items: [
|
||||
{
|
||||
title: 'Suggest an idea',
|
||||
slug: '/connect'
|
||||
},
|
||||
{
|
||||
title: 'Become an author',
|
||||
slug: '/create'
|
||||
},
|
||||
{
|
||||
title: 'Support Discours',
|
||||
slug: '/about/help'
|
||||
},
|
||||
{
|
||||
title: 'Work with us',
|
||||
slug: 'https://docs.google.com/forms/d/e/1FAIpQLSeNNvIzKlXElJtkPkYiXl-jQjlvsL9u4-kpnoRjz1O8Wo40xQ/viewform'
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
{
|
||||
header: 'Sections',
|
||||
items: [
|
||||
{
|
||||
title: 'Authors',
|
||||
slug: '/authors'
|
||||
},
|
||||
{
|
||||
title: 'Communities',
|
||||
slug: '/community'
|
||||
},
|
||||
{
|
||||
title: 'Partners',
|
||||
slug: '/about/partners'
|
||||
},
|
||||
{
|
||||
title: 'Special projects',
|
||||
slug: '/about/projects'
|
||||
},
|
||||
{
|
||||
title: changeLangTitle(),
|
||||
slug: changeLangLink(),
|
||||
rel: 'external'
|
||||
}
|
||||
]
|
||||
}
|
||||
])
|
||||
|
||||
const social = [
|
||||
{
|
||||
name: 'facebook',
|
||||
href: 'https://facebook.com/discoursio'
|
||||
},
|
||||
{
|
||||
name: 'vk',
|
||||
href: 'https://vk.com/discoursio'
|
||||
},
|
||||
{
|
||||
name: 'twitter',
|
||||
href: 'https://twitter.com/discours_io'
|
||||
},
|
||||
{
|
||||
name: 'telegram',
|
||||
href: 'https://t.me/discoursio'
|
||||
}
|
||||
]
|
||||
return (
|
||||
<footer class={styles.discoursFooter}>
|
||||
<div class="wide-container">
|
||||
<div class="row">
|
||||
<For each={footerLinks()}>
|
||||
<For each={links()}>
|
||||
{({ header, items }) => (
|
||||
<div class="col-sm-8 col-md-6">
|
||||
<h5>{t(header)}</h5>
|
||||
<ul>
|
||||
<For each={items}>
|
||||
{({ slug, title, rel }: FooterItem) => (
|
||||
{({ slug, title, ...rest }) => (
|
||||
<li>
|
||||
{' '}
|
||||
<a href={slug} rel={rel}>
|
||||
{rel ? title : t(title)}
|
||||
<a href={slug} {...rest}>
|
||||
{slug.startsWith('?') ? title : t(title)}
|
||||
</a>{' '}
|
||||
</li>
|
||||
)}
|
||||
|
@ -87,7 +133,7 @@ export const FooterView = () => {
|
|||
<div class="col-md-6">
|
||||
<h5>{t('Subscription')}</h5>
|
||||
<p>{t('Join our maillist')}</p>
|
||||
<Newsletter />
|
||||
<Subscribe />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -97,19 +143,14 @@ export const FooterView = () => {
|
|||
'Independant magazine with an open horizontal cooperation about culture, science and society'
|
||||
)}
|
||||
. {t('Discours')} © 2015–{new Date().getFullYear()}{' '}
|
||||
<a href="/terms">{t('Terms of use')}</a>
|
||||
<a href="/about/terms-of-use">{t('Terms of use')}</a>
|
||||
</div>
|
||||
<div class={clsx(styles.footerCopyrightSocial, 'col-md-6 col-lg-4')}>
|
||||
<For each={social}>
|
||||
{(provider) => (
|
||||
<div
|
||||
class={clsx(
|
||||
styles.socialItem,
|
||||
styles[`socialItem${provider.name}` as keyof typeof styles]
|
||||
)}
|
||||
>
|
||||
<a href={provider.href}>
|
||||
<Icon name={`${provider.name}-white`} class={styles.icon} />
|
||||
{(social) => (
|
||||
<div class={clsx(styles.socialItem, styles[`socialItem${social.name}`])}>
|
||||
<a href={social.href}>
|
||||
<Icon name={`${social.name}-white`} class={styles.icon} />
|
||||
</a>
|
||||
</div>
|
||||
)}
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
import { useLocalize } from '~/context/localize'
|
||||
import { useUI } from '~/context/ui'
|
||||
import { useLocalize } from '../../context/localize'
|
||||
import { useRouter } from '../../stores/router'
|
||||
import { showModal } from '../../stores/ui'
|
||||
import { AuthModalSearchParams } from '../Nav/AuthModal/types'
|
||||
|
||||
import { useSearchParams } from '@solidjs/router'
|
||||
import styles from './Hero.module.scss'
|
||||
|
||||
export default () => {
|
||||
const { t } = useLocalize()
|
||||
const { showModal } = useUI()
|
||||
const [, changeSearchParams] = useSearchParams()
|
||||
const { changeSearchParams } = useRouter<AuthModalSearchParams>()
|
||||
|
||||
return (
|
||||
<div class={styles.aboutDiscours}>
|
||||
<div class="wide-container">
|
||||
|
@ -20,7 +21,7 @@ export default () => {
|
|||
)}
|
||||
/>
|
||||
<div class={styles.aboutDiscoursActions}>
|
||||
<a class="button" href="/edit/new">
|
||||
<a class="button" href="/create">
|
||||
{t('Create post')}
|
||||
</a>
|
||||
<a
|
||||
|
@ -34,7 +35,7 @@ export default () => {
|
|||
>
|
||||
{t('Join the community')}
|
||||
</a>
|
||||
<a class="button" href="/support">
|
||||
<a class="button" href="/about/help">
|
||||
{t('Support us')}
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
@ -1,7 +1,3 @@
|
|||
.draft {
|
||||
margin-bottom: 56px;
|
||||
}
|
||||
|
||||
.created {
|
||||
@include font-size(1.2rem);
|
||||
|
||||
|
|
|
@ -1,13 +1,18 @@
|
|||
import { A } from '@solidjs/router'
|
||||
import type { Shout } from '../../graphql/schema/core.gen'
|
||||
|
||||
import { getPagePath } from '@nanostores/router'
|
||||
import { clsx } from 'clsx'
|
||||
import { useLocalize } from '~/context/localize'
|
||||
import { useSnackbar, useUI } from '~/context/ui'
|
||||
import type { Shout } from '~/graphql/schema/core.gen'
|
||||
|
||||
import { useConfirm } from '../../context/confirm'
|
||||
import { useLocalize } from '../../context/localize'
|
||||
import { useSnackbar } from '../../context/snackbar'
|
||||
import { router } from '../../stores/router'
|
||||
import { Icon } from '../_shared/Icon'
|
||||
|
||||
import styles from './Draft.module.scss'
|
||||
|
||||
type Props = {
|
||||
class?: string
|
||||
shout: Shout
|
||||
onPublish: (shout: Shout) => void
|
||||
onDelete: (shout: Shout) => void
|
||||
|
@ -15,10 +20,10 @@ type Props = {
|
|||
|
||||
export const Draft = (props: Props) => {
|
||||
const { t, formatDate } = useLocalize()
|
||||
const { showConfirm } = useUI()
|
||||
const { showConfirm } = useConfirm()
|
||||
const { showSnackbar } = useSnackbar()
|
||||
|
||||
const handlePublishLinkClick = (e: MouseEvent) => {
|
||||
const handlePublishLinkClick = (e) => {
|
||||
e.preventDefault()
|
||||
if (props.shout.main_topic) {
|
||||
props.onPublish(props.shout)
|
||||
|
@ -27,7 +32,7 @@ export const Draft = (props: Props) => {
|
|||
}
|
||||
}
|
||||
|
||||
const handleDeleteLinkClick = async (e: MouseEvent) => {
|
||||
const handleDeleteLinkClick = async (e) => {
|
||||
e.preventDefault()
|
||||
|
||||
const isConfirmed = await showConfirm({
|
||||
|
@ -44,7 +49,7 @@ export const Draft = (props: Props) => {
|
|||
}
|
||||
|
||||
return (
|
||||
<div class={styles.draft}>
|
||||
<div class={clsx(props.class)}>
|
||||
<div class={styles.created}>
|
||||
<Icon name="pencil-outline" class={styles.icon} />{' '}
|
||||
{formatDate(new Date(props.shout.created_at * 1000), { hour: '2-digit', minute: '2-digit' })}
|
||||
|
@ -53,9 +58,12 @@ export const Draft = (props: Props) => {
|
|||
<span class={styles.title}>{props.shout.title || t('Unnamed draft')}</span> {props.shout.subtitle}
|
||||
</div>
|
||||
<div class={styles.actions}>
|
||||
<A class={styles.actionItem} href={`edit/${props.shout?.id.toString()}`}>
|
||||
<a
|
||||
class={styles.actionItem}
|
||||
href={getPagePath(router, 'edit', { shoutId: props.shout.id.toString() })}
|
||||
>
|
||||
{t('Edit')}
|
||||
</A>
|
||||
</a>
|
||||
<span onClick={handlePublishLinkClick} class={clsx(styles.actionItem, styles.publish)}>
|
||||
{t('Publish')}
|
||||
</span>
|
||||
|
|
|
@ -1,67 +0,0 @@
|
|||
import { useNavigate } from '@solidjs/router'
|
||||
import clsx from 'clsx'
|
||||
import { For } from 'solid-js'
|
||||
import { useEditorContext } from '~/context/editor'
|
||||
import { useLocalize } from '~/context/localize'
|
||||
import { useSession } from '~/context/session'
|
||||
import { useSnackbar } from '~/context/ui'
|
||||
import createShoutMutation from '~/graphql/mutation/core/article-create'
|
||||
import { LayoutType } from '~/types/common'
|
||||
import { Button } from '../_shared/Button'
|
||||
import { Icon } from '../_shared/Icon'
|
||||
|
||||
import styles from './LayoutSelector.module.scss'
|
||||
|
||||
export const LayoutSelector = () => {
|
||||
const { t } = useLocalize()
|
||||
const { client } = useSession()
|
||||
const { saveDraftToLocalStorage } = useEditorContext()
|
||||
const { showSnackbar } = useSnackbar()
|
||||
const navigate = useNavigate()
|
||||
|
||||
const handleCreate = async (layout: LayoutType) => {
|
||||
console.debug('[routes : edit/new] handling create click...')
|
||||
const result = await client()
|
||||
?.mutation(createShoutMutation, { shout: { layout: layout } })
|
||||
.toPromise()
|
||||
if (result) {
|
||||
console.debug(result)
|
||||
const { shout, error } = result.data.create_shout
|
||||
if (error) {
|
||||
showSnackbar({
|
||||
body: `${t('Error')}: ${t(error)}`,
|
||||
type: 'error'
|
||||
})
|
||||
return
|
||||
}
|
||||
if (shout?.id) {
|
||||
saveDraftToLocalStorage({
|
||||
shoutId: shout.id,
|
||||
selectedTopics: shout.topics,
|
||||
slug: shout.slug,
|
||||
title: '',
|
||||
body: ''
|
||||
})
|
||||
navigate(`/edit/${shout.id}`)
|
||||
}
|
||||
}
|
||||
}
|
||||
return (
|
||||
<article class={clsx('wide-container', 'container--static-page', styles.Create)}>
|
||||
<h1>{t('Choose a post type')}</h1>
|
||||
<ul class={clsx('nodash', styles.list)}>
|
||||
<For each={['Article', 'Literature', 'Image', 'Audio', 'Video']}>
|
||||
{(layout: string) => (
|
||||
<li onClick={() => handleCreate(layout.toLowerCase() as LayoutType)}>
|
||||
<div class={styles.link}>
|
||||
<Icon name={`create-${layout.toLowerCase()}`} class={styles.icon} />
|
||||
<div>{t(layout)}</div>
|
||||
</div>
|
||||
</li>
|
||||
)}
|
||||
</For>
|
||||
</ul>
|
||||
<Button value={t('Back')} onClick={() => window?.history.back()} />
|
||||
</article>
|
||||
)
|
||||
}
|
|
@ -1,15 +1,17 @@
|
|||
import { Buffer } from 'buffer'
|
||||
|
||||
import { clsx } from 'clsx'
|
||||
import { Show } from 'solid-js'
|
||||
import { isServer } from 'solid-js/web'
|
||||
import { DropArea } from '~/components/_shared/DropArea'
|
||||
import { useLocalize } from '~/context/localize'
|
||||
import { composeMediaItems } from '~/lib/composeMediaItems'
|
||||
import { MediaItem } from '~/types/mediaitem'
|
||||
|
||||
import { useLocalize } from '../../../context/localize'
|
||||
import { MediaItem } from '../../../pages/types'
|
||||
import { composeMediaItems } from '../../../utils/composeMediaItems'
|
||||
import { AudioPlayer } from '../../Article/AudioPlayer'
|
||||
import { DropArea } from '../../_shared/DropArea'
|
||||
|
||||
import styles from './AudioUploader.module.scss'
|
||||
|
||||
if (!isServer && window) window.Buffer = Buffer
|
||||
// console.debug('buffer patch passed')
|
||||
window.Buffer = Buffer
|
||||
|
||||
type Props = {
|
||||
class?: string
|
||||
|
@ -27,24 +29,18 @@ type Props = {
|
|||
export const AudioUploader = (props: Props) => {
|
||||
const { t } = useLocalize()
|
||||
|
||||
const handleMediaItemFieldChange = (
|
||||
index: number,
|
||||
field: keyof MediaItem | string | symbol | number,
|
||||
value: string
|
||||
) => {
|
||||
const handleMediaItemFieldChange = (index: number, field: keyof MediaItem, value) => {
|
||||
props.onAudioChange(index, { ...props.audio[index], [field]: value })
|
||||
}
|
||||
|
||||
const handleChangeIndex = (direction: 'up' | 'down', index: number) => {
|
||||
const media = [...props.audio]
|
||||
if (media?.length > 0) {
|
||||
if (direction === 'up' && index > 0) {
|
||||
const copy = media.splice(index, 1)[0]
|
||||
media.splice(index - 1, 0, copy)
|
||||
} else if (direction === 'down' && index < media.length - 1) {
|
||||
const copy = media.splice(index, 1)[0]
|
||||
media.splice(index + 1, 0, copy)
|
||||
}
|
||||
if (direction === 'up' && index > 0) {
|
||||
const copy = media.splice(index, 1)[0]
|
||||
media.splice(index - 1, 0, copy)
|
||||
} else if (direction === 'down' && index < media.length - 1) {
|
||||
const copy = media.splice(index, 1)[0]
|
||||
media.splice(index + 1, 0, copy)
|
||||
}
|
||||
props.onAudioSorted(media)
|
||||
}
|