Layim in javascript to find friends and groups

Layim in javascript to find friends and groups

Currently, layui officials have not provided the structure and style of the layim friend search page. I am personally very curious, so I made a set myself, and now upload it to share with everyone. I am not a front-end developer, so some aspects are not comprehensive enough. Please give me some advice!

First present the effect picture to calm you down

insert image description here

Layim find friends, find groups, add friends, join groups:

Attach the source code, download the points

1. Binding user member list

/** html code*/
<textarea title="User Template" id="LAY_Friend" style="display:none;">
	{{# layui.each(d.data, function(index, item){ }}
		<div class="layui-col-sm4 layui-col-md4 layui-col-lg2">
	 <div class="layui-card" >
	 	<div class="avatar">
	 		<img class="layadmin-homepage-pad-img" src="{{ item.avatar }}" />
	 	</div>
	 	<div class="units">
		 	<p>{{ item.userName }}({{ item.userCode }})</p>
		 	<p>{{ item.roleNames }}</p>
		 	<p>
			 	{{# if(item.isValid == 0){ }}
			 		<button userId="{{ item.userId }}" class="addFriend layui-btn layui-btn-xs" style="background-color:#7ADDD4;">&nbsp;&nbsp;<strong>+</strong>&nbsp;&nbsp;Friends&nbsp;&nbsp;</button>
			 	{{# } else { }}
			 		<span class="c_red">Already friends</span>
			 	{{# } }}
		 	</p>
	 	</div>
	 </div>
 	</div>
 	{{# }); }}
</textarea>

/** js code */
$.ajax({
 type: "get",
 url: "../json/friend.json",
 async: true,
 data: data,
 success: function (data) {
 	var json = data;
 	var list = json.data;
 	if(list != null){
 		// Data converted to HTML format var html = laytpl(LAY_Friend.value).render({
			 data: list
			});
			control.html(html);
 	}else{
 		control.append('<div style="color:#ccc; margin:150px 350px;">No users matching the search criteria were found</div>');
 	}
 }
});

2. Add friends

insert image description here

/**
 * Add friends */
$(document).on('click', '.addFriend', function() {
	var myBut = $(this);
	var userId = myBut.attr("userId");
	// Pop up the add friend verification interface layim.add({
		type: 'friend'
 ,username: user.username
 ,avatar: user.avatar
 ,submit: function(group, remark, index){
			layer.msg('Friend request has been sent, please wait for the other party to confirm', { icon: 1 });
			// Modify button myBut.parent().html('<span class="c_red">Application has been submitted</span>');
		 	// Insert your push information code here} 
 });
});

3. Push information

Use socket push to add friend application

// Push a message var msg = {
		type: "addMsgbox", // Defined casually, used to distinguish message types on the server side sendType: 1, // Defined casually, used to distinguish message types on the server side fromId: loginUserId, // Applicant toId: user.id, // Friend ID groupId: group, // Group remark: remark // Verification information }
websocket.send(JSON.stringify({
 	type: 'chatMsgbox' // Just define it, used to distinguish message types on the server side, data: msg
 }));

4. Guess you like

https://www.jb51.net/article/23188.htm

This is the end of this article about layim finding friends and groups in javascript. For more relevant layim finding friends and groups content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Example code of layim integrating right-click menu in JavaScript
  • JS implementation example of finding whether the attribute value of an object in an array exists
  • JavaScript regular expressions and string search methods
  • Examples of common search, sorting, and deduplication algorithms implemented in JS
  • Detailed explanation of JS binary search algorithm

<<:  Specific use of nginx keepalive

>>:  Detailed explanation of MySQL master-slave replication practice - GTID-based replication

Recommend

How to use provide to implement state management in Vue3

Table of contents Preface How to implement Vuex f...

CSS achieves highly adaptive full screen

When writing my own demo, I want to use display:f...

Practice of el-cascader cascade selector in elementui

Table of contents 1. Effect 2. Main code 1. Effec...

CSS3 animation – steps function explained

When I was looking at some CSS3 animation source ...

Explanation of the working mechanism of namenode and secondarynamenode in Hadoop

1) Process 2) FSImage and Edits Nodenode is the b...

Detailed instructions for installing Jenkins on Ubuntu 16.04

1. Prerequisites JDK has been installed echo $PAT...

A brief analysis of HTML space code

How much do you know about HTML? If you are learni...

htm beginner notes (must read for beginners)

1. What is HTML HTML (HyperText Markup Language):...

Learn v-model and its modifiers in one article

Table of contents Preface Modifiers of v-model: l...

Detailed tutorial on installing Docker on CentOS 8.4

Table of contents Preface: System Requirements: I...

HTML table mouse drag sorting function

Effect picture: 1. Import files <script src=&q...

Summary of discussion on nginx cookie validity period

Every visit will generate Cookie in the browser, ...

CSS imitates Apple's smooth switch button effect

Table of contents 1. Code analysis 2. Source code...

Introduction to HTML link anchor tags and their role in SEO

The <a> tag is mainly used to define links ...