emojigen wip9
This commit is contained in:
parent
15a1f1e585
commit
8b3e7bf04c
@ -96,7 +96,7 @@ export default defineComponent({
|
||||
bg: 'var(--bg)',
|
||||
},
|
||||
emojiName: null,
|
||||
text: null,
|
||||
text: '',
|
||||
emojiAlign: 'center',
|
||||
emojiSizeFixed: false,
|
||||
emojiStretch: false,
|
||||
@ -114,7 +114,7 @@ export default defineComponent({
|
||||
//https://emoji-gen.ninja/result?text=%E7%B5%B5%E6%96%87%0A%E5%AD%97%E3%80%82&color=EC71A1FF&back_color=00000000&font=notosans-mono-bold&size_fixed=false&align=center&stretch=true&public_fg=true&locale=ja
|
||||
|
||||
const apiUrl = `https://emoji-gen.ninja/emoji`
|
||||
let query = {"text": this.text, "color": this.emojiColor + "FF", "back_color": "00000000", "font": this.font, "size_fixed": this.emojiSizeFixed, "align": this.emojiAlign, "stretch": this.emojiStretch, "public_fg": "false", "locale": "ja"}
|
||||
let query = {"text": encodeURI(this.text), "color": this.emojiColor + "FF", "back_color": "00000000", "font": this.font, "size_fixed": this.emojiSizeFixed, "align": this.emojiAlign, "stretch": this.emojiStretch, "public_fg": "false", "locale": "ja"}
|
||||
|
||||
this.emojiUrl = apiUrl + '?' + Object.entries(query).map((e) => `${e[0]}=${e[1]}`).join('&');
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user