Problem with the way the .suffix works with SwiftData

Ok, I have a subview, which should just show 2 last readings…

I understand, that I can actually do .last and or just do $0 and $1, but I wanted to do it in an elegant way, so my code is:

import SwiftUI
import SwiftData

struct LastReadingsView: View {
    
    var readings: [Reading]?
        
        var body: some View {
            if let readings = readings?.sorted(by: { $0.date > $1.date }) {
                
                let lastTwoReadings = readings.suffix(2)
                
                ForEach(lastTwoReadings) { reading in
                    ReadingRow(reading: reading)
                }
            } else {
                Text("No readings available")
                    .foregroundColor(.gray)
            }
        }
}

#Preview {
    LastReadingsView()
}

But, it doesn’t do the last two readings in an already sorted array, it takes some two elements and that is it…

Do I miss something? I know, that SwiftData is not good with array sorting, but not THAT bad?!

1

The underlying problem is that when we use a @Query which I assume is done in the parent view then the order of the result is random unless we supply sort descriptors.

There are two ways to solve this, sort directly in the query in the parent view or sort in a computed property in the LastReadingsView

First the query solution where we add sorting to the query, this option has the best performance if there are a lot of Reading objects

@Query(sort: [SortDescriptor(Reading.date, order: .forward)]) var readings: [Reading]

and then in the sub view we do (shortened the code for clarity)

let readings: [Reading]

var body: some View {
    ForEach(readings.suffix(2)) { reading in
        ReadingRow(reading: reading)
    }
}

For the second solution we pass the query array as today and sort it in computed property instead

let readings: [Reading]

var lastTwoReadings: [Reading] {
    readings.sorted(using: KeyPathComparator(.date, order: .forward)).suffix(2)
}

var body: some View {
    ForEach(lastTwoReadings) { reading in
        ReadingRow(reading: reading)
    }
}

Note that in both case that reading is a non-optional constant since it won’t change and it makes for cleaner code with a non-optional property

Although your code works for me in my tests, you could try this approach
without using intermediate declarations in the body of the view.

struct LastReadingsView: View {
    let readings: [Reading]?
    
    var body: some View {
        if readings != nil {
            ForEach(readings!.sorted(by: { $0.date > $1.date }).suffix(2)) { reading in
                ReadingRow(reading: reading)
            }
        } else {
            Text("No readings available")
                .foregroundColor(.gray)
        }
    }
}

EDIT-1:

here is my full test code:

// for testing
@Model class Reading {
    var date: Date
    var digits: Int
    
    init(date: Date, digits: Int) {
        self.date = date
        self.digits = digits
    }
}

struct ContentView: View {
    // for testing
    let readingArr = [
        Reading(date: Date(), digits: 1),
        Reading(date: Date().addingTimeInterval(60*60*24*1), digits: 2),
        Reading(date: Date().addingTimeInterval(60*60*24*2), digits: 3),
        Reading(date: Date().addingTimeInterval(60*60*24*3), digits: 4),
        Reading(date: Date().addingTimeInterval(60*60*24*4), digits: 5)
    ]
    var body: some View {
        LastReadingsView(readings: readingArr)
    }
}

// test code
struct LastReadingsView: View {
    let readings: [Reading]?
    
    var body: some View {
        if readings != nil {
            ForEach(readings!.sorted(by: { $0.date > $1.date }).suffix(2)) { reading in
                ReadingRow(reading: reading)
            }
        } else {
            Text("No readings available")
                .foregroundColor(.gray)
        }
    }
}

// for testing
struct ReadingRow: View {
    let reading: Reading
    
    var body: some View {
        Text("(reading.digits)")
    }
}

4

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

Problem with the way the .suffix works with SwiftData

Ok, I have a subview, which should just show 2 last readings…

I understand, that I can actually do .last and or just do $0 and $1, but I wanted to do it in an elegant way, so my code is:

import SwiftUI
import SwiftData

struct LastReadingsView: View {
    
    var readings: [Reading]?
        
        var body: some View {
            if let readings = readings?.sorted(by: { $0.date > $1.date }) {
                
                let lastTwoReadings = readings.suffix(2)
                
                ForEach(lastTwoReadings) { reading in
                    ReadingRow(reading: reading)
                }
            } else {
                Text("No readings available")
                    .foregroundColor(.gray)
            }
        }
}

#Preview {
    LastReadingsView()
}

But, it doesn’t do the last two readings in an already sorted array, it takes some two elements and that is it…

Do I miss something? I know, that SwiftData is not good with array sorting, but not THAT bad?!

1

The underlying problem is that when we use a @Query which I assume is done in the parent view then the order of the result is random unless we supply sort descriptors.

There are two ways to solve this, sort directly in the query in the parent view or sort in a computed property in the LastReadingsView

First the query solution where we add sorting to the query, this option has the best performance if there are a lot of Reading objects

@Query(sort: [SortDescriptor(Reading.date, order: .forward)]) var readings: [Reading]

and then in the sub view we do (shortened the code for clarity)

let readings: [Reading]

var body: some View {
    ForEach(readings.suffix(2)) { reading in
        ReadingRow(reading: reading)
    }
}

For the second solution we pass the query array as today and sort it in computed property instead

let readings: [Reading]

var lastTwoReadings: [Reading] {
    readings.sorted(using: KeyPathComparator(.date, order: .forward)).suffix(2)
}

var body: some View {
    ForEach(lastTwoReadings) { reading in
        ReadingRow(reading: reading)
    }
}

Note that in both case that reading is a non-optional constant since it won’t change and it makes for cleaner code with a non-optional property

Although your code works for me in my tests, you could try this approach
without using intermediate declarations in the body of the view.

struct LastReadingsView: View {
    let readings: [Reading]?
    
    var body: some View {
        if readings != nil {
            ForEach(readings!.sorted(by: { $0.date > $1.date }).suffix(2)) { reading in
                ReadingRow(reading: reading)
            }
        } else {
            Text("No readings available")
                .foregroundColor(.gray)
        }
    }
}

EDIT-1:

here is my full test code:

// for testing
@Model class Reading {
    var date: Date
    var digits: Int
    
    init(date: Date, digits: Int) {
        self.date = date
        self.digits = digits
    }
}

struct ContentView: View {
    // for testing
    let readingArr = [
        Reading(date: Date(), digits: 1),
        Reading(date: Date().addingTimeInterval(60*60*24*1), digits: 2),
        Reading(date: Date().addingTimeInterval(60*60*24*2), digits: 3),
        Reading(date: Date().addingTimeInterval(60*60*24*3), digits: 4),
        Reading(date: Date().addingTimeInterval(60*60*24*4), digits: 5)
    ]
    var body: some View {
        LastReadingsView(readings: readingArr)
    }
}

// test code
struct LastReadingsView: View {
    let readings: [Reading]?
    
    var body: some View {
        if readings != nil {
            ForEach(readings!.sorted(by: { $0.date > $1.date }).suffix(2)) { reading in
                ReadingRow(reading: reading)
            }
        } else {
            Text("No readings available")
                .foregroundColor(.gray)
        }
    }
}

// for testing
struct ReadingRow: View {
    let reading: Reading
    
    var body: some View {
        Text("(reading.digits)")
    }
}

4

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

Problem with the way the .suffix works with SwiftData

Ok, I have a subview, which should just show 2 last readings…

I understand, that I can actually do .last and or just do $0 and $1, but I wanted to do it in an elegant way, so my code is:

import SwiftUI
import SwiftData

struct LastReadingsView: View {
    
    var readings: [Reading]?
        
        var body: some View {
            if let readings = readings?.sorted(by: { $0.date > $1.date }) {
                
                let lastTwoReadings = readings.suffix(2)
                
                ForEach(lastTwoReadings) { reading in
                    ReadingRow(reading: reading)
                }
            } else {
                Text("No readings available")
                    .foregroundColor(.gray)
            }
        }
}

#Preview {
    LastReadingsView()
}

But, it doesn’t do the last two readings in an already sorted array, it takes some two elements and that is it…

Do I miss something? I know, that SwiftData is not good with array sorting, but not THAT bad?!

1

The underlying problem is that when we use a @Query which I assume is done in the parent view then the order of the result is random unless we supply sort descriptors.

There are two ways to solve this, sort directly in the query in the parent view or sort in a computed property in the LastReadingsView

First the query solution where we add sorting to the query, this option has the best performance if there are a lot of Reading objects

@Query(sort: [SortDescriptor(Reading.date, order: .forward)]) var readings: [Reading]

and then in the sub view we do (shortened the code for clarity)

let readings: [Reading]

var body: some View {
    ForEach(readings.suffix(2)) { reading in
        ReadingRow(reading: reading)
    }
}

For the second solution we pass the query array as today and sort it in computed property instead

let readings: [Reading]

var lastTwoReadings: [Reading] {
    readings.sorted(using: KeyPathComparator(.date, order: .forward)).suffix(2)
}

var body: some View {
    ForEach(lastTwoReadings) { reading in
        ReadingRow(reading: reading)
    }
}

Note that in both case that reading is a non-optional constant since it won’t change and it makes for cleaner code with a non-optional property

Although your code works for me in my tests, you could try this approach
without using intermediate declarations in the body of the view.

struct LastReadingsView: View {
    let readings: [Reading]?
    
    var body: some View {
        if readings != nil {
            ForEach(readings!.sorted(by: { $0.date > $1.date }).suffix(2)) { reading in
                ReadingRow(reading: reading)
            }
        } else {
            Text("No readings available")
                .foregroundColor(.gray)
        }
    }
}

EDIT-1:

here is my full test code:

// for testing
@Model class Reading {
    var date: Date
    var digits: Int
    
    init(date: Date, digits: Int) {
        self.date = date
        self.digits = digits
    }
}

struct ContentView: View {
    // for testing
    let readingArr = [
        Reading(date: Date(), digits: 1),
        Reading(date: Date().addingTimeInterval(60*60*24*1), digits: 2),
        Reading(date: Date().addingTimeInterval(60*60*24*2), digits: 3),
        Reading(date: Date().addingTimeInterval(60*60*24*3), digits: 4),
        Reading(date: Date().addingTimeInterval(60*60*24*4), digits: 5)
    ]
    var body: some View {
        LastReadingsView(readings: readingArr)
    }
}

// test code
struct LastReadingsView: View {
    let readings: [Reading]?
    
    var body: some View {
        if readings != nil {
            ForEach(readings!.sorted(by: { $0.date > $1.date }).suffix(2)) { reading in
                ReadingRow(reading: reading)
            }
        } else {
            Text("No readings available")
                .foregroundColor(.gray)
        }
    }
}

// for testing
struct ReadingRow: View {
    let reading: Reading
    
    var body: some View {
        Text("(reading.digits)")
    }
}

4

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

Problem with the way the .suffix works with SwiftData

Ok, I have a subview, which should just show 2 last readings…

I understand, that I can actually do .last and or just do $0 and $1, but I wanted to do it in an elegant way, so my code is:

import SwiftUI
import SwiftData

struct LastReadingsView: View {
    
    var readings: [Reading]?
        
        var body: some View {
            if let readings = readings?.sorted(by: { $0.date > $1.date }) {
                
                let lastTwoReadings = readings.suffix(2)
                
                ForEach(lastTwoReadings) { reading in
                    ReadingRow(reading: reading)
                }
            } else {
                Text("No readings available")
                    .foregroundColor(.gray)
            }
        }
}

#Preview {
    LastReadingsView()
}

But, it doesn’t do the last two readings in an already sorted array, it takes some two elements and that is it…

Do I miss something? I know, that SwiftData is not good with array sorting, but not THAT bad?!

1

The underlying problem is that when we use a @Query which I assume is done in the parent view then the order of the result is random unless we supply sort descriptors.

There are two ways to solve this, sort directly in the query in the parent view or sort in a computed property in the LastReadingsView

First the query solution where we add sorting to the query, this option has the best performance if there are a lot of Reading objects

@Query(sort: [SortDescriptor(Reading.date, order: .forward)]) var readings: [Reading]

and then in the sub view we do (shortened the code for clarity)

let readings: [Reading]

var body: some View {
    ForEach(readings.suffix(2)) { reading in
        ReadingRow(reading: reading)
    }
}

For the second solution we pass the query array as today and sort it in computed property instead

let readings: [Reading]

var lastTwoReadings: [Reading] {
    readings.sorted(using: KeyPathComparator(.date, order: .forward)).suffix(2)
}

var body: some View {
    ForEach(lastTwoReadings) { reading in
        ReadingRow(reading: reading)
    }
}

Note that in both case that reading is a non-optional constant since it won’t change and it makes for cleaner code with a non-optional property

Although your code works for me in my tests, you could try this approach
without using intermediate declarations in the body of the view.

struct LastReadingsView: View {
    let readings: [Reading]?
    
    var body: some View {
        if readings != nil {
            ForEach(readings!.sorted(by: { $0.date > $1.date }).suffix(2)) { reading in
                ReadingRow(reading: reading)
            }
        } else {
            Text("No readings available")
                .foregroundColor(.gray)
        }
    }
}

EDIT-1:

here is my full test code:

// for testing
@Model class Reading {
    var date: Date
    var digits: Int
    
    init(date: Date, digits: Int) {
        self.date = date
        self.digits = digits
    }
}

struct ContentView: View {
    // for testing
    let readingArr = [
        Reading(date: Date(), digits: 1),
        Reading(date: Date().addingTimeInterval(60*60*24*1), digits: 2),
        Reading(date: Date().addingTimeInterval(60*60*24*2), digits: 3),
        Reading(date: Date().addingTimeInterval(60*60*24*3), digits: 4),
        Reading(date: Date().addingTimeInterval(60*60*24*4), digits: 5)
    ]
    var body: some View {
        LastReadingsView(readings: readingArr)
    }
}

// test code
struct LastReadingsView: View {
    let readings: [Reading]?
    
    var body: some View {
        if readings != nil {
            ForEach(readings!.sorted(by: { $0.date > $1.date }).suffix(2)) { reading in
                ReadingRow(reading: reading)
            }
        } else {
            Text("No readings available")
                .foregroundColor(.gray)
        }
    }
}

// for testing
struct ReadingRow: View {
    let reading: Reading
    
    var body: some View {
        Text("(reading.digits)")
    }
}

4

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật