123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- //
- // TSTTPStyleView.swift
- // AIEmoji
- //
- // Created by 100Years on 2025/3/11.
- //
- class TSTTPStyleView:TSBaseView {
-
- var selectedValueBlock:((TSPTPStyleModel)->Void)?
-
- var dataArray: [TSPTPStyleModel] = [TSPTPStyleModel](){
- didSet{
- styleCollectionView.reloadData()
- if dataArray.count > 0 {
- self.styleCollectionView.selectItem(at: self.currentIndexPath, animated: false, scrollPosition: .centeredHorizontally)
- }
- }
- }
-
- lazy var layout: UICollectionViewFlowLayout = {
- let layout = UICollectionViewFlowLayout()
- layout.scrollDirection = .horizontal
- layout.itemSize = CGSize(width: 100, height: 110)
- layout.minimumInteritemSpacing = 0.0
- layout.minimumLineSpacing = 0.0
- layout.sectionInset = UIEdgeInsets(top: 0, left: 16, bottom: 0, right: 16)
- return layout
- }()
-
-
- lazy var styleCollectionView: UICollectionView = {
- let collectionView = UICollectionView(frame: .zero, collectionViewLayout: layout)
- collectionView.delegate = self
- collectionView.dataSource = self
- collectionView.showsVerticalScrollIndicator = false
- collectionView.showsHorizontalScrollIndicator = false
- collectionView.backgroundColor = .clear
- collectionView.register(TSPromptStyleViewCell.self, forCellWithReuseIdentifier: TSPromptStyleViewCell.cellID)
- if #available(iOS 11.0, *) {
- collectionView.contentInsetAdjustmentBehavior = .never
- }
- return collectionView
- }()
- var currentIndexPath:IndexPath = IndexPath(item: 0, section: 0)
-
-
- lazy var titleView: TSTitleView = {
- let titleView = TSTitleView()
- titleView.titleLab.text = "Genre".localized
- return titleView
- }()
-
-
- override func creatUI() {
-
- let titleViewH = titleView.viewH
- contentView.addSubview(titleView)
- titleView.snp.makeConstraints { make in
- make.top.equalTo(0)
- make.leading.trailing.equalTo(0)
- make.height.equalTo(titleViewH)
- }
-
- currentIndexPath = IndexPath(item: 0, section: 0)
- contentView.addSubview(styleCollectionView)
- styleCollectionView.snp.makeConstraints { make in
- make.top.equalTo(titleView.snp.bottom)
- make.leading.trailing.equalTo(0)
- make.height.equalTo(110)
- make.bottom.equalTo(0)
- }
- }
-
- func unCheck(){
- styleCollectionView.deselectItem(at: currentIndexPath, animated: true)
- }
-
- }
- extension TSTTPStyleView: UICollectionViewDataSource ,UICollectionViewDelegate {
-
- public func numberOfSections(in collectionView: UICollectionView) -> Int {
- return 1
- }
-
- public func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
- return dataArray.count
- }
-
- public func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
-
- let cell = collectionView.dequeueReusableCell(withReuseIdentifier: TSPromptStyleViewCell.cellID, for: indexPath)
- if let cell = cell as? TSPromptStyleViewCell,let itemModel = dataArray.safeObj(At: indexPath.item){
- cell.itemModel = itemModel
- }
- return cell
- }
- public func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
- if let model = dataArray.safeObj(At: indexPath.item){
- currentIndexPath = indexPath
- selectedValueBlock?(model)
- }
- }
- }
- class TSPromptStyleViewCell: TSBaseCollectionCell {
-
- static let cellID = "TSPromptStyleViewCell"
- override var isSelected: Bool{
- didSet{
- boardImageView.isHidden = isSelected ? false : true
- }
- }
-
- var itemModel:TSPTPStyleModel = TSPTPStyleModel(){
- didSet{
- imageView.image = UIImage(named: itemModel.imageName)
-
- if itemModel.style == 1 {
- hotImageView.isHidden = false
-
- // let font = UIFont.font(name:.PoppinsBlackItalic,size: 18)
- // textLabel.font = font
- // textLabel.attributedText = NSAttributedString(
- // string: itemModel.imageText,
- // attributes: [
- // .strokeColor: "#FFB73C".uiColor, // 描边颜色
- // .strokeWidth: -4.0, // 负值表示同时填充和描边(正值仅描边)
- // .foregroundColor: UIColor.white, // 文字填充色
- // .font: font
- // ]
- // )
- }else{
- hotImageView.isHidden = true
- // textLabel.font = .font(size: 14)
- // textLabel.attributedText = nil
-
- }
- textLabel.text = itemModel.imageText
- }
- }
-
- lazy var imageView: UIImageView = {
- let imageView = UIImageView()
- imageView.cornerRadius = 40.0
- return imageView
- }()
-
- lazy var hotImageView: UIImageView = {
- let hotImageView = UIImageView.createImageView(imageName: "ttp_style_hot")
- hotImageView.isHidden = true
- return hotImageView
- }()
-
- lazy var boardImageView: UIImageView = {
- let boardImageView = UIImageView.createImageView(imageName: "ttp_selected_border")
- boardImageView.isHidden = true
- return boardImageView
- }()
-
- lazy var textLabel: UILabel = {
- let textLabel = UILabel.createLabel(font: .font(size: 14),textColor: .white,textAlignment: .center,numberOfLines: 0)
- return textLabel
- }()
-
- override func creatUI() {
- //cell 100*110
-
- bgContentView.addSubview(imageView)
- imageView.snp.makeConstraints { make in
- make.top.equalTo(0)
- make.centerX.equalToSuperview()
- make.width.height.equalTo(80)
- }
-
- imageView.addSubview(hotImageView)
- hotImageView.snp.makeConstraints { make in
- make.leading.equalTo(0)
- make.top.equalTo(0.0)
- make.width.height.equalTo(36)
- }
-
- imageView.addSubview(boardImageView)
- boardImageView.snp.makeConstraints { make in
- make.top.bottom.leading.trailing.equalTo(0)
- }
-
- bgContentView.addSubview(textLabel)
- textLabel.snp.makeConstraints { make in
- make.top.equalTo(imageView.snp.bottom).offset(4)
- make.centerX.equalToSuperview()
- }
- }
-
- }
|