高章伟
2022-02-18 8b5f4c6c281cfa548f92de52c8021e37aa81901e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
public with sharing class Xin_SearchVisitorPlace_Campaign {
    public List<Campaign> results {get; private set;}
    public Boolean getIsOverLimit() {
        if (results != null && results.size() > 30) {
            return true;
        }
        return false;
    }
 
    public Xin_SearchVisitorPlace_Campaign() {
        this.results = new List<Campaign>();
    }
 
    public void search() {
        // 検索条件を用意
        String query = System.currentPageReference().getParameters().get('q');
        String reporterState = System.currentPageReference().getParameters().get('r');
        String reportDate = System.currentPageReference().getParameters().get('d');
        if(query == null || query == '' || query.length() < 3) {
            return;
        }
        this.search(query, reporterState, reportDate);
    }
 
    //public void search(String query, String reporterState, String reportDate) {
    //    String nameCondition = '%' + String.escapeSingleQuotes(query.replaceAll('%', '')) + '%';
    //    system.debug('cond=' + nameCondition);
 
        // 検索
    //   this.results = [select Id, Name from Campaign where Name like :nameCondition order by Name limit 31];
    //}
 
    public void search(String query, String reporterState, String reportDate) {
        List<String> qwords = new List<String>();
        List<String> qwordstmp = query.split(' ');
        String nameCondition = '';
        for (String qword : qwordstmp) {
            if (String.isBlank(qword) == false) {
                qwords.add('%' + String.escapeSingleQuotes(qword.replaceAll('%', '')) + '%');
                nameCondition += ' and Name like \'' + qwords[qwords.size() - 1] + '\' ';
            }
        }
 
        system.debug('cond=' + nameCondition);
 
        String queryString = 'select Id, Name from Campaign where Id != null ' + nameCondition + 'order by Name limit 31';
 
        system.debug('queryString=' + queryString);
 
        Map<Id, Campaign> accMap = new Map<Id, Campaign>((List<Campaign>) Database.query(queryString));
 
        //String nameCondition = '%' + String.escapeSingleQuotes(query.replaceAll('%', '')) + '%';
        
        this.results = accMap.values();                         // values()の場合、順序わからないです
        this.results.sort();   
    }
}