mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	fix: reversi allowing you to search globally instead of just locally
Misskey used a local option in the select section but os nor userselectdialog supported this.
This commit is contained in:
		
							parent
							
								
									5f36bb6747
								
							
						
					
					
						commit
						b68c358688
					
				
					 2 changed files with 3 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -76,6 +76,7 @@ const emit = defineEmits<{
 | 
			
		|||
 | 
			
		||||
const props = defineProps<{
 | 
			
		||||
	includeSelf?: boolean;
 | 
			
		||||
	local?: boolean;
 | 
			
		||||
}>();
 | 
			
		||||
 | 
			
		||||
const username = ref('');
 | 
			
		||||
| 
						 | 
				
			
			@ -90,6 +91,7 @@ function search() {
 | 
			
		|||
		users.value = [];
 | 
			
		||||
		return;
 | 
			
		||||
	}
 | 
			
		||||
	if (props.local) host.value = '.';
 | 
			
		||||
	misskeyApi('users/search-by-username-and-host', {
 | 
			
		||||
		username: username.value,
 | 
			
		||||
		host: host.value,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -419,7 +419,7 @@ export function form(title, form) {
 | 
			
		|||
	});
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export async function selectUser(opts: { includeSelf?: boolean } = {}): Promise<Misskey.entities.UserLite> {
 | 
			
		||||
export async function selectUser(opts: { includeSelf?: boolean, local?: boolean } = {}): Promise<Misskey.entities.UserLite> {
 | 
			
		||||
	return new Promise((resolve, reject) => {
 | 
			
		||||
		popup(defineAsyncComponent(() => import('@/components/MkUserSelectDialog.vue')), {
 | 
			
		||||
			includeSelf: opts.includeSelf,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue