-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
935 additions
and
688 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
{ | ||
"spans": [ | ||
{ | ||
"insert": "Android Quill Editor", | ||
"attributes": { | ||
"bold": true, | ||
"header": 1 | ||
} | ||
}, | ||
{ | ||
"insert": "\n", | ||
"attributes": {} | ||
}, | ||
{ | ||
"insert": "\nRich text editor for Android", | ||
"attributes": { | ||
"bold": true, | ||
"header": 2 | ||
} | ||
}, | ||
{ | ||
"insert": "\n", | ||
"attributes": {} | ||
}, | ||
{ | ||
"insert": "Quill component for Android\n", | ||
"attributes": { | ||
"header": 3, | ||
"italic": true | ||
} | ||
}, | ||
{ | ||
"insert": "Bullet Journal :\nTrack personal and group journals (ToDo, Note, Ledger) from multiple views with timely reminders", | ||
"attributes": { | ||
"bold": true | ||
} | ||
}, | ||
{ | ||
"insert": "\nShare your tasks and notes with teammates, and see changes as they happen in real-time, across all devices\n", | ||
"attributes": {} | ||
}, | ||
{ | ||
"insert": "Splitting bills with friends can never be easier.", | ||
"attributes": { | ||
"list": "bullet" | ||
} | ||
}, | ||
{ | ||
"insert": "\n", | ||
"attributes": {} | ||
}, | ||
{ | ||
"insert": "Testing span addition to the editor.", | ||
"attributes": { | ||
"list": "bullet" | ||
} | ||
}, | ||
{ | ||
"insert": "\n", | ||
"attributes": {} | ||
}, | ||
{ | ||
"insert": "Start creating a group and invite your friends to join.", | ||
"attributes": { | ||
"list": "bullet" | ||
} | ||
}, | ||
{ | ||
"insert": "\n", | ||
"attributes": {} | ||
}, | ||
{ | ||
"insert": "Create a BuJo of Ledger type to see expense or balance summary.", | ||
"attributes": { | ||
"bold": true, | ||
"list": "bullet" | ||
} | ||
}, | ||
{ | ||
"insert": "\n", | ||
"attributes": {} | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
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
23 changes: 0 additions & 23 deletions
23
app/src/main/java/com/example/texteditor/parser/JsonEditorParser.kt
This file was deleted.
Oops, something went wrong.
23 changes: 23 additions & 0 deletions
23
app/src/main/java/com/example/texteditor/parser/QuillJsonEditorParser.kt
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package com.example.texteditor.parser | ||
|
||
import com.canopas.editor.ui.model.QuillSpan | ||
import com.canopas.editor.ui.model.Span | ||
import com.canopas.editor.ui.parser.QuillEditorAdapter | ||
import com.google.gson.Gson | ||
import com.google.gson.GsonBuilder | ||
import com.google.gson.reflect.TypeToken | ||
|
||
class QuillJsonEditorParser : QuillEditorAdapter { | ||
|
||
private val gson: Gson = GsonBuilder() | ||
.registerTypeAdapter(Span::class.java, QuillRichTextStateAdapter()) | ||
.create() | ||
|
||
override fun encode(input: String): QuillSpan { | ||
return gson.fromJson(input, object : TypeToken<QuillSpan>() {}.type) | ||
} | ||
|
||
override fun decode(editorValue: QuillSpan): String { | ||
return gson.toJson(editorValue) | ||
} | ||
} |
45 changes: 45 additions & 0 deletions
45
app/src/main/java/com/example/texteditor/parser/QuillRichTextStateAdapter.kt
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
package com.example.texteditor.parser | ||
|
||
import android.util.Log | ||
import com.canopas.editor.ui.model.Attributes | ||
import com.canopas.editor.ui.model.Span | ||
import com.google.gson.JsonDeserializationContext | ||
import com.google.gson.JsonDeserializer | ||
import com.google.gson.JsonElement | ||
import com.google.gson.JsonObject | ||
import com.google.gson.JsonParseException | ||
import com.google.gson.JsonSerializationContext | ||
import com.google.gson.JsonSerializer | ||
import java.lang.reflect.Type | ||
|
||
class QuillRichTextStateAdapter : JsonSerializer<Span>, JsonDeserializer<Span> { | ||
override fun serialize( | ||
src: Span?, | ||
typeOfSrc: Type?, | ||
context: JsonSerializationContext? | ||
): JsonElement { | ||
val jsonObject = JsonObject() | ||
jsonObject.add("insert", context?.serialize(src?.insert)) | ||
jsonObject.add("attributes", context?.serialize(src?.attributes)) | ||
return jsonObject | ||
} | ||
|
||
override fun deserialize( | ||
json: JsonElement?, | ||
typeOfT: Type?, | ||
context: JsonDeserializationContext? | ||
): Span { | ||
try { | ||
val jsonObject = json?.asJsonObject ?: throw JsonParseException("Invalid JSON") | ||
val insert = jsonObject.get("insert") | ||
val attributes = jsonObject.get("attributes") | ||
return Span( | ||
insert = context?.deserialize<String>(insert, String::class.java), | ||
attributes = context?.deserialize<Attributes>(attributes, Attributes::class.java) | ||
) | ||
} catch (e: Exception) { | ||
Log.e("QuillRichTextStateAdapter", "deserialize: ", e) | ||
throw JsonParseException("Invalid JSON") | ||
} | ||
} | ||
} |
Oops, something went wrong.