About the Author Brain, a senior software technology expert at Ctrip, focuses on front-end technology frameworks, cross-end technology solutions, front-end construction and engineering tools, and is committed to cutting-edge technology and architecture optimization. 1. BackgroundFlightAI (market insight platform) is a toB data product launched by Ctrip's air ticket big data team to empower the industry. FlightAI's user base mainly uses WeChat, but there is also demand for the use of mobile terminals and other enterprise office IM systems (such as enterprise WeChat, DingTalk, etc.). Since the big data team has a small number of front-end engineers and the existing technology stack is mainly web technology, there is a lack of mobile terminal development experience. Therefore, it is necessary to choose a technology that is mainly based on WeChat, has low R&D costs, and is cross-platform (WeChat applets, iOS, Android) applications to meet business needs and improve R&D efficiency. FlightAI involves large-scale table operations and displays, big data charting, and large data index presentation, which requires high query and display rendering performance. In addition, it is also necessary to implement business functions, user login and registration, account management, and system integration in a multi-dimensional product matrix such as WeChat official accounts, web systems, applets, and mobile terminals to form a three-dimensional product service to improve user experience and operational efficiency. 1.1 Difficulties and Challenges1.1.1 Main Difficulties a. Complexity of cross-platform development:
b. Multiple-terminal login state is connected:
c. Big data list rendering support:
1.1.2 Challenges of new technology platforms a. Functional coverage:
b. Infrastructure:
c. Research and development of ecological compatibility:
1.2 Technology Selection1.2.1 Business Requirements and Current Situation a. Small team size, multi-terminal requirements and high R&D efficiency requirements:
b. Business requirements:
c. High performance requirements:
1.2.2 Why choose Donut technology? Since WeChat Mini Programs are the main usage scenario for the user group, multi-terminal frameworks that cannot support Mini Programs, such as React Native and Flutter, cannot be used. As for technical frameworks that support both Mini Programs and mobile terminals, the more popular ones on the market are Taro and Uni-App, but there are the following concerns:
Donut is a container officially launched by Tencent that is the same source as the mini-program. It is superior to other derivative frameworks in terms of functionality and performance. It is based on Flutter at the bottom of the App, and is close to native rendering performance. Donut uses the mini-program DSL as the development language, which allows seamless switching and no secondary conversion costs. Anyone who can develop a mini-program can write a Donut APP. Tencent has fully integrated R&D tools, testing tools, deployment tools, and operation and maintenance tools, covering almost all the problems that a small team may encounter. The official documentation provides screenshots for each step, and the reading experience is good. It is summarized as follows: a. High functional coverage Commonly used APIs need to be adapted (8 in total) , and support is selected based on usage. Donut officially provides a large number of functional APIs. The official investment can also be seen from the functional support, ease of use, and architectural isomorphism with the App mini-programs. Summary of JSAPI and component support, covering 6 major aspects Component part : view components, forms, navigation, media, maps, canvas, development capabilities, and native components are all well supported; API partial support : There are about 507 APIs in total; 371 are supported, accounting for about 73%. For some partially supported or unsupported ones, the official provides some other alternatives; (2024-03 statistics) SDK part : Basic SDK and extended SDK have good support; this part is Native function, check it as needed, otherwise it will not be included in the package, and package it as needed to reduce the package size; NativePlugin : supports Native custom extensions. This part is a one-time job and is generally not used unless there is a strong need for customization. Cloud support : cloud development and cloud hosting, Donut gateway protection; Buried point monitoring : heat map, playback function support is complete, support all buried points; b. The infrastructure is relatively complete The Donut platform covers various needs throughout the entire product development cycle, including development, deployment, and product experience analysis. Tencent has fully integrated R&D tools, testing tools, deployment tools, and operation and maintenance tools. The infrastructure is relatively complete and supports the entire production and research process, which can greatly improve R&D efficiency, especially for teams that have no mobile R&D experience. It plays a guiding and advisory role.
c. Strong R&D ecological compatibility
When selecting a UI component system, should I use TDesign, WeUI, Ant Design for Mobile, NutUI, Vant, or Material-UI? The main considerations are the maturity, compatibility, and function of the components. TDesign is a component library officially produced by Tencent, while WeUI focuses on providing a style library. Considering the community's practical experience, TDesign was finally chosen. It has relatively rich components, a complete range of commonly used components, and is in line with WeChat design specifications. It has good compatibility with Donut APP, and reusing components can save a lot of development work.
Should I use echart or g2 mobile chart library, or choose wx-chart, ucharts, D3, antV, Threejs and other chart libraries? The following aspects were considered: Code standard: Some cases on the official website of EChart and D3 still use the syntax of ES5, and Antd follows the new syntax standard of ES6. Flexibility: ECharts<G2<D3; Difficulty of use: Echart≈G2PLot<G2<D3; Scenario: Threejs is recommended for three-dimensional graphs, and ECharts or G2, G2Plot can be used for two-dimensional graphs; Considering that the chart type of FlightAI is a regular graphic, and the PC version is also selected as Echart, Echart performs well in terms of mini-program integration and compatibility, but Echart is not compatible with the Donut system in terms of resolution processing. However, after writing an adaptation layer to solve this problem, it is very smooth to use, so Echart was finally selected.
Research on solutions for converting mini programs to other mini programs or web programs, such as mini programs converted from morjs, and other cross-terminal technologies such as Taro to Donut. Are they feasible? In theory, Donut provides a container for running mini-programs. Other cross-end or conversion technologies should be able to run as long as the final product conforms to the WeChat mini-program specifications. However, the conversion will inevitably lead to loss of functionality and performance, and Donut conditional compilation and other syntax require special processing. Generally, the conversion code will bring additional processing logic and increase the package size. Although there are side effects, Donut's own expansion capabilities are still very strong. After all, it provides a mini-program container consistent with WeChat. 1.3 Introduction to DonutDonut platform is a technology system produced by Tencent that realizes cross-terminal (Mini Program, IOS, Andord) based on mini programs, covering various needs of the entire product development cycle from development, deployment, to product experience analysis. Developers can focus on code logic, unify the complex development and construction process, development and operating environment, etc., effectively reduce the technical threshold and R&D cost of multi-terminal application development, and improve development efficiency and development experience. It includes 4 major features: multi-terminal framework, multi-terminal identity management, security gateway, and product experience analysis. 1.3.1 Donut system module diagram: It is mainly divided into client and cloud functions. The client is mainly responsible for the annotated containers on the end side, processing the mini-program basic library, mini-program SDK and other infrastructure. The cloud side mainly handles various management and review functions. The processes are integrated on the WeChat Open Platform, WeChat Developer Platform, WeChat Public Platform, and Donut Management Platform. 1.3.2 Donut workflow To put it simply, WeChat abstracts a simplified version of the WeChat APP as a container. The underlying layer is rendered based on Flutter, taking over the capabilities of the mini-programs and using WeChat developer tools to provide R&D support. In theory, any WeChat mini-program can run on this platform. 1.3.3 Who is Donut Technology Suitable for? a. Individuals or enterprises that conduct business based on the Mini Program ecosystem; b. Projects that require cross-terminal support, high performance, and high R&D efficiency; c. Already have a mini program and want to expand to mobile projects; d. Projects that wish to simplify or standardize development and operation processes and take advantage of the full software development lifecycle integration capabilities provided by WeChat. 2. How FlightAI built a cross-terminal mobile application Donut-APP based on mini programsFirst, register the mini program on the WeChat public platform (mp.weixin.qq.com). After completing the registration, you can simultaneously complete the information and develop. Download the WeChat developer tools and refer to the development documents for development and debugging. To become a Donut cross-terminal R&D personnel, you need to know the following information: 2.1 Multi-terminal application development: Development account preparation2.2 Understanding Account Relationships2.3 Multi-terminal application development: development resource preparation2.4 Enable multi-terminal application modea. Create or upgrade the applet to a multi-terminal project b. Donut multi-terminal project structure The structure is consistent with the mini program project, except that there are some configuration files across multiple terminal frameworks. The main function of app.miniapp.json is to maintain the binding relationship between multiple terminal applications and mini programs, configure the App mini program login page address, authorization page, etc. project.miniapp.json is mainly used to configure native plug-ins, which are mostly related to native interaction; project.config.json is the configuration file related to the mini program. 2.5 Understanding Conditional CompilationDonut supports writing platform-specific code in a conditional compilation manner. For example, some components are only supported by WeChat, and some business requirements are only displayed on WeChat. In this case, conditional compilation is required to achieve different requirements, and different code methods are used on the app and the mini-program. Generally, this type of code accounts for a small proportion. In the FlightAI project, I implemented the function of automatically counting conditional compilation code, which can be reported statistically or run on a single machine to understand the project status. 2.6 Support for multiple login methods - multi-terminal identity managementa. FlightAI login architecture design Donut supports multiple login methods, which is sufficient for general projects, and has good integrated management in the background, which is officially called multi-terminal identity management. FlightAI's scenarios are more complicated. In addition to the 5 login methods provided by Donut, it also supports a total of 10 login methods such as password login, giving customers the greatest convenience and choice; although the supported methods are diverse, the underlying verification, authentication, authorization and other interfaces have been unified. b. Unified identity recognition for mini programs and apps The token of the mini program is exchanged with the code2Session interface, and the token of the App is exchanged with the code2Verifyinfo interface. Each interface has a supporting API, which is relatively complex and should not be confused. It is best to connect a complete set separately and then connect to another set. 2.7 Large List RenderingUnder the dual-threaded architecture of webview, the official maximum number of Doms supported by the Mini Program is 16,000. Text nodes are also counted in the total number of nodes, which can easily exceed the Dom limit, resulting in Dom limit exceeded. Please check if there's any mistake you've made. Whether it is a simulator or a real device, a mini program or a Donut APP, in the view-all page of the FlightAI scenario, after testing, 442 rendered items are the critical point. If more than 442 items are rendered, a white screen will appear. Under this data structure, the number of Doms will reach the critical point, and it takes 5646ms to render 442 items on the IOS simulator. This also indirectly confirms that the Dom number limit is consistent on each end and each tool. Official Recommendation Standard The official recommendation (which is also the scoring standard) is that a single page should not have more than 1,000 nodes, no more than 30 levels of nesting, no more than 60 child nodes, and a page depth of no more than 10. However, pages with more complex functions can easily exceed the limit. So how do you overcome this problem? Long list rendering characteristics 1) The list data is large, and the first setData takes a long time. The dual-thread model makes the interactive performance a bottleneck; 2) There are many DOM nodes in the list rendered at one time, and each setData needs to create a new virtual tree and perform a diff operation with the old tree, which is time-consuming; 3) The total number of DOM nodes in the rendered list is large, which occupies a high amount of memory, increasing the probability that the page will be recycled by the system. Optimization ideas Either completely change the dual-threaded underlying architecture, or optimize the data and status involved in rendering through some means, and only render the data displayed on the screen. The basic implementation is to listen to the scroll event and recalculate the data that needs to be rendered. Leave an empty div placeholder element for the data that does not need to be rendered. Here are two solutions: a. WeChat officially provides a recycle-view solution, a virtual list solution; During the scrolling process, when re-rendering the data, the height of the div placeholder elements before and after the current data needs to be set, and this also means within the same rendering cycle. Page rendering is triggered by setData, and the list data and div placeholder height are setData in two components. In order to put these two setData in the same rendering cycle, a hack method is used, so the batch attribute of recycle-view is defined as batch="{{batchSetRecycleData}}". b. WeChat officially developed a skyline rendering engine to improve rendering speed. The skyline rendering engine uses a more streamlined and efficient rendering pipeline and brings many enhanced features, giving Skyline a performance experience closer to native rendering. After using skyline, there will be no limit on the number of DOMs; and an obvious comparison is that after using skyline, fast sliding of long lists will not be stuck, while fast sliding of the home page will be stuck if skyline is not enabled. Note that the list layout container only supports being a direct child node or a component direct child node in the scroll-view custom mode. The scroll-view needs to set the custom mode type="custom" and the list-view needs to be a direct child node of the scroll-view. WebView's JS logic, DOM tree creation, CSS parsing, style calculation, Layout, and Paint (Composite) all occur on the same thread. Executing too much JS logic on WebView may block rendering and cause interface freezes. Skyline creates a rendering thread to handle rendering tasks such as Layout, Paint, and Composite, and demarcates an independent context in AppService to run the JS logic, DOM tree creation, and other logic previously undertaken by WebView. The performance has been significantly improved after the architecture has been deeply optimized. Skyline long list official documentation Performance comparison Official example: From the online data of Mini Program Assistant, we can see that Skyline’s first screen time is 66% faster than WebView, and the lower the performance of the phone, the more obvious the difference. In addition, I tried to calculate the number of Doms and Dom levels of the Mini Program by myself, and did statistics or optimization. I found that the querySeletorAll API could not use wildcards. In addition, Shadow-Dom was involved, and the calculation became very troublesome. I verified with WeChat officials that the maximum size of Dom is 16,000. This is a limitation at the compiler level and cannot be relaxed. After communicating with WeChat officials, they found that they can provide an API for calculating the number of Doms of Mini Programs. It is not available yet, but it will be available in the future. 2.8 Implement Push message pushSome thoughts and research on FlightAI's access to TPNS or the company's Push system; Tencent Cloud provides TPNS, but the cost of this push access is relatively high and it has been discontinued; the charging standard is approximately 800*DAU/10000, 8 cents/message, charged by user. Donut provides a new version of push service based on IM, which will be supported from August 2024. The push function is implemented by configuring plug-ins and certificates, and supports online and offline push. Each manufacturer of IOS and Android needs to configure it separately, which is caused by different specifications of manufacturers. The charging rules for the new version vary according to the location of the data center and different packages. The backend needs to apply for the corresponding certificate AppKey and AppID according to each manufacturer, and formulate a push strategy based on demand. Considering the access cost, you only need to configure PluginId on the client. The configuration example is as follows: 2.9 Officially build APK and IPAThere is a distinction between temporary signatures and formal signatures for building mobile apps. Temporary signatures are provided directly by Donut officials, and formal signature certificates require R&D personnel to register and upload them according to the target platform. Note that the signature file has requirements for the directory and must be placed in the project. The keychain of IOS must be exactly the same as the name in the configuration. 2.10 Internal test distribution and submission for reviewSelect the official version in the developer tools and click "Build" - "Upload Resource Package" to upload the development version of the resource package to the Donut resource package management platform. Then follow the R&D process to decide on the test version and the online version. 2.11 Complete the privacy agreements, legal terms, authorization pop-ups and other requirements of each platform and release the APPIt should be noted that the requirements of major electronic markets are different. In order to be listed, it is necessary to meet the various specifications of each platform, otherwise the review will not pass. In particular, when it comes to legal terms, the legal department needs to be involved, which usually takes a very long time, so you must be prepared. 2.12 What pitfalls did you encounter?
III. Achievements and Experience3.1 Technological innovation and efficiency improvement, code reuse rate 99%
3.2 Create product matrix and user experienceIn order to improve the application scope and market competitiveness of Ctrip's market insight platform, we have created a comprehensive product usage matrix, achieving full coverage of mobile terminals, mini programs, existing web terminals, WeChat public accounts and API services. Through this multi-terminal coverage, we can better meet users' usage needs in different scenarios and improve the market competitiveness of our products. In order to improve the user experience, we have opened up multiple devices and multiple types of login states, supporting users to log in seamlessly through different devices and channels. In addition to the 5 login methods provided by Donut, we also support a total of 10 login methods such as password login, giving customers the greatest convenience and choice. In the market insight platform, we have implemented high-performance mobile technology practices across multiple terminals based on Donut, ensuring the excellent performance of the product in various mobile scenarios. Through these technological innovations and optimizations, we have not only expanded the application scope and market competitiveness of our products, but also significantly improved the user experience, providing users with a more convenient and efficient user experience. |
<<: Have you learned how to implement behavior-driven development in Android using Cucumber?
>>: A practical guide to creating a classic snake game with Android native controls
Recently, Cocos, the leading mobile game engine i...
The Open Source China Community (OSC) 2014 Source...
At 1 a.m. Beijing time on September 11, Apple wil...
November 7 news As we all know, in the Windows Ap...
In my past work experience, I have always been th...
Since I started writing, I have had a few fans ad...
Traffic is a hot topic that all walks of life are...
Apple will launch the iPhone 16 at its "It...
On July 23, QuestMobile, a research organization ...
This article is a review of the event planning co...
Bidding promotion is charged according to the num...
Become a technical person who can lead a team and...
I am here again to share with you the knowledge o...
The third quarter is the peak tourist season. Als...
The main factors affecting the price of mini prog...