mirror of
https://github.com/mssun/passforios.git
synced 2026-02-27 18:24:03 +01:00
44 lines
1.2 KiB
Swift
44 lines
1.2 KiB
Swift
//
|
|
// PasswordTableEntry.swift
|
|
// passKit
|
|
//
|
|
// Created by Yishi Lin on 2020/2/23.
|
|
// Copyright © 2020 Bob Sun. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public class PasswordTableEntry: NSObject {
|
|
public let passwordEntity: PasswordEntity
|
|
@objc public let title: String
|
|
public let isDir: Bool
|
|
public let isSynced: Bool
|
|
public let categoryText: String
|
|
|
|
public init(_ entity: PasswordEntity) {
|
|
self.passwordEntity = entity
|
|
self.title = entity.name
|
|
self.isDir = entity.isDir
|
|
self.isSynced = entity.isSynced
|
|
self.categoryText = entity.dirText
|
|
}
|
|
|
|
public func matches(_ searchText: String) -> Bool {
|
|
Self.match(nameWithCategory: passwordEntity.nameWithDir, searchText: searchText)
|
|
}
|
|
|
|
public static func match(nameWithCategory: String, searchText: String) -> Bool {
|
|
let titleSplit = nameWithCategory.split { !($0.isLetter || $0.isNumber || $0 == ".") }
|
|
for str in titleSplit {
|
|
if str.localizedCaseInsensitiveContains(searchText) {
|
|
return true
|
|
}
|
|
if searchText.localizedCaseInsensitiveContains(str) {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|
|
}
|