-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from iliyaZelenko/master
Next Release (2.0)
- Loading branch information
Showing
74 changed files
with
4,036 additions
and
2,568 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export const MAIN_MODULE = import('~/main') // '../dist/bundle-cjs' | ||
export const MAIN_MODULE = import('../dist/bundle-esm') // '../dist/bundle-cjs' | ||
// export const MAIN_MODULE = import('../dist/bundle-esm') // '../dist/bundle-cjs' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,51 @@ | ||
TODO: пользователь выбирает где рендерить | ||
TODO: i18n для нового текста | ||
|
||
Написать гайд как добавлять свои расширения и менять уже существующие. | ||
|
||
Важно: | ||
1. Обновить TypeScript с 3.4 RC до 3.4 https://devblogs.microsoft.com/typescript/announcing-typescript-3-4/ | ||
1. Полностью абстрагироваться от конкретной библиотеки через которую происходит рендеринг. Т.е. не быть привязанным к | ||
vuetify. Думаю сделать отдельный пакет (e.g. tiptap-abstract-render-core), который отвичает за логику не связанную с непосредственным отображением. | ||
Пакеты tiptap-vuetify, tiptap-bootstrap и т.д. будут использовать этот отдельный пакет, будут передавать | ||
(через аргумент, например, и нужно передвать много компонентов) свои .vue компоненты которые отвечают за рендеринг. | ||
|
||
Отдельные расширения-пакеты, типа загрузки картинок также должны быть абстрагированны от рендеринга. Тут можно сделать как отдельные пакеты. | ||
Но мне кажется можно сразу в одном пакете, просто подключать как отдельный бандл по необходимости, таким образом | ||
не будет лишнего занимать в бандле проектов пользователей. | ||
|
||
2. Проверить не входят ли dependencies и pearDependencies в бандл. Если входят, то можно попробовать rollup-plugin-auto-external. | ||
Вроде лишнее (external) не входит. | ||
|
||
|
||
|
||
|
||
1. Сделать свое расширение которое добавляет смайлы в радактор, чтобы был список выбора смайлов, был поиск по ним. | ||
2. Сделать загрузку изображений. | ||
- чтобы была возможность выбирать между видами загрузки (драйверами, модулями, не знаю как назвать), по умолчания | ||
чтобы был imgur загрузка, но подумать как сделать чтобы загрузку можно было легко кастомизировать для своего бекенда | ||
и чтобы можно было добавить другой модуль (кроме imgur) | ||
3. Сделать действие кнопки более гибким: после нажатия может открываться модальное окно или появлятся другое bubble меню | ||
(например, как сейчас работает добавление ссылки). | ||
4. Расширения могут отображаться не обязательно в тулбаре, сделать чтобы пользователь мог указывать где должно | ||
указывать каждое расширение. Например, в тулбаре или в bubbleMenu, в будущем могут быть еще варианты. | ||
5. Сделать чтобы дополнительные расширения (e.g. загрузка изображений) шли в отдельном пакете. | ||
6. Возможность переопределять текст в i18n | ||
7. Гибкий способ использования компонента: | ||
|
||
<tiptap-vuetify> | ||
<tiptap-vuetify-toolbar /> | ||
|
||
<tiptap-vuetify-content /> | ||
</tiptap-vuetify> | ||
|
||
или | ||
|
||
<tiptap-vuetify> | ||
<tiptap-vuetify-toolbar v-slot="data"> | ||
Опираясь на data пользователь может вывести данные | ||
</tiptap-vuetify-toolbar> | ||
|
||
<tiptap-vuetify-content v-slot="data"> | ||
Опираясь на data пользователь может вывести данные | ||
</tiptap-vuetify-content> | ||
</tiptap-vuetify> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.