通过小程序给公众号传递消息_多输入现场消息传递应用程序概念

通过小程序给公众号传递消息

by Dawid Woldu

戴维德·沃尔杜(Dawid Woldu)

多输入现场消息传递应用程序概念 (A multi-input field messaging app concept)

Some time ago I shared in a Medium article the idea for context aware messenger app. The idea challenged the design limitation behind all messenger apps allowing you to write only one message at a time.

前段时间, 我在中型文章中分享了上下文感知的Messenger应用程序的想法。 这个想法挑战了所有Messenger应用程序背后的设计局限性,使您一次只能编写一条消息。

What I always missed in these apps was a way to save the message I’m currently typing and type and send something else instead. Then a way to get back to previously composed message and continue. Just to stay on topic and keep some order in my conversations.

我在这些应用程序中一直想念的是一种保存我当前正在键入的消息并键入然后发送其他内容的方法。 然后是一种返回到先前编写的消息并继续的方法。 只是为了保持话题性,保持对话中的秩序。

The way I do it today involves the sequence of text field related gestures: Long press, Select All, Cut, Type in, Send, Long press, Paste, continue.

我今天的操作方式涉及文本字段相关手势的顺序: 长按,全选,剪切,键入,发送,长按,粘贴,继续。

My concept allowed to replace that sequence with a single tap, but it was up to the app to recognise the need for saving a message based on the context of the conversation. I built a Quartz Composer prototype to show the feature in action:

我的概念允许一次单击即可替换该序列,但应由应用程序来确定是否需要根据对话的上下文来保存消息。 我构建了一个Quartz Composer原型来展示该功能的实际效果:

But I never shared the prototype, as it wasn’t functional, allowed for only one extra input field and was done solely for the purpose of recording that video. Also Origami prototypes for Quartz Composer didn’t work very well on the device (not mentioning the absence of native keyboard).

但是我从未共享过这个原型 ,因为它没有功能,只允许一个额外的输入字段,并且仅仅是为了录制视频而完成的。 同样,用于Quartz Composer的Origami原型在该设备上也无法很好地工作(更不用说缺少本机键盘了)。

Release of Origami Studio allowed me to revisit the concept and build fully functional (sort of) prototype to share.

Origami Studio的发行使我能够重新审视概念并构建功能齐全的原型(以便共享)。

I ditched the context aware part and allowed for saving as many drafts as you need, whenever you feel like it.

我放弃了上下文相关的部分,并允许在需要时保存任意数量的草稿。

这是新原型的演示视频。 (Here’s a demo video of the new prototype.)

在折纸工作室制作。 (Building in Origami Studio.)

I could write a separate article/tutorial for each of the technical challenges I encountered while building the proto, but I’ll limit myself to just briefly list some of them here. Hopefully these short descriptions will be enough to spark some ideas whenever you encounter similar blocks. If not don’t hesitate to ping me directly.

我可以为构建原型时遇到的每种技术挑战写一篇单独的文章/教程,但我会限制自己仅在此处简要列出其中一些挑战。 希望这些简短的描述足以在遇到类似的问题时引发一些想法。 如果不是这样,请直接与我联系 。

多行输入字段。 (Multi line input field.)

Text Field component in Origami Studio doesn’t allow for multi line inputs. When you double tap on it to reveal it’s content’s you’ll find the actual Text Input component that does. The problem is it doesn’t have a cursor/caret. So hacked in a cursor by measuring the position of the last letter in the text field.

Origami Studio中的“文本字段”组件不允许多行输入。 当您双击它以显示其内容时,您会发现实际的文本输入组件。 问题是它没有光标/插入符号。 因此,通过测量文本字段中最后一个字母的位置来侵入光标。

Each time you type a letter I check if it’s a ‘space’ and if it is I append it’s index to an Array of spaces. Then I assume that whenever height of the input increases the text will break at the last recorded space. Then I measure the rest of the text to place a cursor in a correct position of the new line. When you don’t tap the space I just measure the size of the text that fit the line.

每次输入字母时,我都会检查它是否为“空格”,是否将其索引附加到空格数组中。 然后,我假设只要输入的高度增加,文本就会在最后记录的空间中断。 然后,我测量其余文本,以将光标放置在新行的正确位置。 当您不点击空格时,我只是测量适合该行的文本的大小。

建立对话供稿。 (Building a conversation feed.)

The challenge here was dynamically creating chat bubbles while keeping the correct order in the feed. When bot starts typing you can see the last bubble on the feed with 3 jumping dots. But if you send the message before it finishes typing your bubble should land on the feed before the bot’s bubble. I managed to make it work by keeping two arrays of messages. Temporary one (bot typing) and final and switching between them whenever bot starts typing or sends the message.

这里的挑战是如何动态创建聊天气泡,同时又要保持Feed中正确的顺序。 机器人开始输入内容时,您会看到Feed上的最后一个气泡,并带有3个跳跃点。 但是,如果您在结束输入消息之前就发送了消息,则气泡应在机器人气泡之前落入供稿。 我设法通过保留两个消息数组来使其工作。 临时一个(机器人输入)和最终输入,并在机器人开始输入或发送消息时在它们之间切换。

I created a JSON config file with the bot messages that allow you to configure what and when the bot is sending and if it should wait for your message(s) to start typing.

我使用漫游器消息创建了一个JSON配置文件,该文件可让您配置漫游器发送的内容和时间以及是否应等待您的消息开始键入。

{"message":"Ok, I'm dumb. What do you want from me?!", "waitforuser":2,"delay":1}

waitforuser — describes how many user messages should the bot wait for before it starts typing. Zero means it won’t wait for user at all.delay — time in seconds before bot starts typing.

waitforuser —描述了机器人在开始键入之前应该等待多少用户消息。 零表示完全不等待用户。 delay —机器人开始键入之前的时间(以秒为单位)。

创建/删除输入字段并管理其顺序。 (Creating/removing input fields and managing their order.)

Whenever you create input field I’m increasing the count on the Loop patch, but as soon as you don’t need the field anymore I tried to remove the field from the loop and keep the other input fields keep their order and content. It was impossible for me to figure out as loop patches don’t keep the reference to the actual instance of the element they’re replicating. I worked around by hiding and reusing unused fields instead of removing them from the loop.

每当您创建输入字段时,我都会增加Loop补丁的数量,但是一旦您不再需要该字段时,我就会尝试从循环中删除该字段并保留其他输入字段的顺序和内容。 我不可能弄清楚,因为循环补丁并没有保留他们复制元素的实际实例的引用 。 我通过隐藏和重用未使用的字段而不是将其从循环中删除来解决。

下载! (Downloads!)

You can download Origami prototype, JSON file as well as multiline text field component from my Google Drive.

您可以从我的Google云端硬盘下载Origami原型,JSON文件以及多行文本字段组件。

用户手册: (User’s Manual:)

Long press on Send button to save the current text and create new input field. (Yes! It’s undiscoverable. I know.)Prototype is optimised for use on the device. (You can’t hide the keyboard)

长按“发送”按钮以保存当前文本并创建新的输入字段。 (是的!这是无法发现的。我知道。)原型针对设备使用进行了优化。 (您不能隐藏键盘)

最后一分钟发现了一些有趣的事实: (Last minute discovered fun facts:)

* The prototype crashes when using emojis. ?* Multi line input field cursor can behave erratically when typing super fast (I’m sharing anyway).* When you send a message in the exact time that bot starts typing, the empty bot message can appear on the feed.* Other bug fixes and performance improvements. (What?!)

*使用表情符号时原型崩溃。 **输入超快速时多行输入字段光标的行为异常(无论如何我还是在共享)。*如果您在机器人开始键入的确切时间发送消息,则在消息源中可能会出现空的机器人消息。*其他错误修复和性能改进。 (什么?!)

翻译自: https://www.freecodecamp.org/news/multi-input-field-messaging-app-concept-911096778de3/

通过小程序给公众号传递消息

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/395299.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Oracle【IT实验室】数据库备份与恢复之二:SQL*Loader

2.1 基本知识 Oracle 的 SQL* LOADER 可以将外部格式化的文本数据加载到数据库表中。通常 与 SPOOL导出文本数据方法配合使用。 1.命令格式 SQLLDR keywordvalue [,keywordvalue,……] 例:$ sqlldr user/pwd controlemp.ctl dataemp.dat ba…

关于spring 获取不到网站上的xsd的处理记录

2019独角兽企业重金招聘Python工程师标准>>> 前两天做一个项目还好好的,今天突然报出这个错误 cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element mvc:annotation-driven 应该是xml文件找不到相应…

蓝宝石英语怎么读_黑金和蓝宝石

这是一直以后我个人的一个理解误区,或者说是信息误区,就是这两个产品线,差别到底在哪里?以前我一直认为黑金的成分是纯天然的,而蓝宝石有一定的合成物质。这个信息一定是我从哪里读到的,由于无处求证&#…

秘密潜入2小辣椒_短暂潜入2次,我显然不知道自己作为开发人员正在做什么

秘密潜入2小辣椒by Zachary Kuhn扎卡里库恩(Zachary Kuhn) 那两次我显然不知道我作为开发人员正在做什么 (Those two times where I clearly had no clue what I was doing as a developer) Last week I had a short conversation with coworkers about how we had messed up …

提高你的javascript代码逼格系列之函数与数组

不知道大家有没有一种感觉,那就是自己写的javascript代码虽然能完全解决工作上的需要,但是,一眼望去,too simple!!!简直就是一个傻子都能看懂的水平,于是,在工作之余&…

印度评论九章量子计算机,张礼立:中国 “九章”量子计算机到底厉害在哪?...

【背景信息】12月4日,《科学》杂志公布了中国“九章”的重大突破。 这台由中国科学技术大学潘建伟、陆朝阳等学者研制的76个光子的量子计算原型机,推动全球量子计算的前沿研究达到一个新高度。尽管距离实际应用仍有漫漫长路,但成功实现了“量…

手机web网页制作的认识(有关meta标签)

近日以来一直在看JQuery Mobile 一个手机开发框架&#xff0c;说实话真的很头疼的~~~~ 因为里面有很多的属性、方法和事件~~~ 下面是手机网页的一些认识&#xff1a; 一、<meta name"viewport" id"viewport" content"widthdevice-width, initial-s…

包打包和解析过程 unity_Unity学习—资源管理概览

本文介绍了 Unity 常用四种默认路径&#xff0c;以及 AssetDataBase、Resources、AssetBundle 和目前最新的 Addressable 四种资源管理方式文中所有 API 均以版本 2019.3 为准本文原地址&#xff1a;Unity学习—资源管理概览资源路径Application.dataPath官方文档只读&#xff…

graphql tools_声明式GraphQL:编写更少的代码,并使用graphql-tools完成更多工作

graphql toolsI’ve been working with GraphQL for a few months now, but only recently began using Apollo’s graphql-tools library. After learning a few idioms, I am able to mock up a functional API quickly. This is largely due to its low-code, declarative a…

用idea搭建SSM项目,原来这么简单

目录 前言软件环境创建项目数据库文件配置文件pom.xmllog4j.propertiesjdbc.propertiesapplicationContext.xmlspring-mvc.xmlweb.xml运行项目编写代码前言 前阵子突发奇想&#xff0c;想学习下SpringMVC的源码&#xff0c;于是打算用idea搭建一个简易的maven版SSM案例&#xf…

浙江理工大学计算机组成原理试卷,浙江理工大学计算机组成原理设计试题.doc...

计算机组成原理课程设计报告2013/2014第二学期指导教师&#xff1a;许建龙 张芳班级&#xff1a;12计科2班姓名&#xff1a;学号&#xff1a; 计算机组成原理大型实验任务书(计算机12级1、2、3班和实验班)实验目的&#xff1a;深入了解计算机各种指令的执行过程&#xff0c;以及…

mac vagrant 虚拟机nfs挂载点

需求&#xff1a;在mac 上安装了虚拟机&#xff0c;虚拟机系统为centos6.5&#xff0c;现在希望讲虚拟机上点目录通过nfs共享给mac使用 下面主要描述通过nfs共享目录给mac调用的过程 过程参考网址&#xff1a; http://www.moqifei.com/archives/1534 &#xff08;我主要参考的这…

nodejs中require的路径是一个文件夹时发生了什么

node中使用require的时候如果路径是一个文件夹时&#xff0c;或者特殊的情况require(..);require(.); 这是node实战这本书里说的情况&#xff0c;但是我在node6.9版本中发现不完全是这样&#xff0c;可能是后来做了修改。下面说说在6.9下require路径的过程。 这里以require(.)说…

python调用ctypes中windll中的方法超时处理_python中使用ctypes调用MinGW生成的动态链接库(dll)...

关于gcc编译dll的我就不说了&#xff0c;网上举例一大堆&#xff0c;下面以g为例。假设有一个test.cpp文件如下&#xff1a;extern "C" {__declspec(dllexport) double add(double x,double y);}double add(double x,double y){return xy;}在MinGW中使用g编译&#x…

惯用过程模型_惯用的Ruby:编写漂亮的代码

惯用过程模型Ruby is a beautiful programming language.Ruby是一种美丽的编程语言。 According to Ruby’s official web page, Ruby is a:根据Ruby的官方网页&#xff0c;Ruby是&#xff1a; “dynamic, open source programming language with a focus on simplicity and …

采用晶体管为基本元件的计算机发展阶段是,计算机应用基础知识点

第一章 计算机基础知识1、计算机发展阶段第一代&#xff1a;电子管计算机采用电子管为基本元件&#xff0c;设计使用机器语言或汇编语言。要用于科学和工程计算 第二代&#xff1a;晶体管计算机采用晶体管为基本元件&#xff0c;程序设计采用高级语言&#xff0c;出现了操作系统…

springcloud系列三 搭建服务模块

搭建服务模块为了模拟正式开发环境,只是少写了service层直接在controller里面直接引用,直接上图和代码:更为方便: 创建完成之后加入配置: pom.xml文件: <?xml version"1.0" encoding"UTF-8"?> <project xmlns"http://maven.apache.org/POM…

P1801 黑匣子_NOI导刊2010提高(06)

题目描述 Black Box是一种原始的数据库。它可以储存一个整数数组&#xff0c;还有一个特别的变量i。最开始的时候Black Box是空的&#xff0e;而i等于0。这个Black Box要处理一串命令。 命令只有两种&#xff1a; ADD(x):把x元素放进BlackBox; GET:i加1&#xff0c;然后输出Bla…

MySql模糊查询

常规like的使用限制&#xff1a; 1. like %keyword &#xff1a;索引失效&#xff0c;使用全表扫描。但可以通过翻转函数like前模糊查询建立翻转函数索引走翻转函数索引&#xff0c;不走全表扫描。 2. like keyword% &#xff1a;索引有效。 3. like %keyword% &#xff1a;索引…

python psycopg2使用_python 操作数据库:psycopg2的使用

1 conn psycopg2.connect(database"testdb", user"postgres",password"cohondob", host"127.0.0.1", port"5432")这个API打开一个连接到PostgreSQL数据库。如果成功打开数据库时&#xff0c;它返回一个连接对象。2cursor c…