Coder Social home page Coder Social logo

Comments (7)

178inaba avatar 178inaba commented on May 23, 2024 1

OK!
I think that we can start this issue within this week.

from go-mastodon.

mattn avatar mattn commented on May 23, 2024

Yes, This is big deal which bother me. I wonder that somesone want to get whole records for all of APIs you mentioned. I prefer 2 and not return Pagination with updating pg it self.

from go-mastodon.

178inaba avatar 178inaba commented on May 23, 2024

I wonder that someone want to get whole records for all of APIs you mentioned.

Although not all, there are potential use cases.

  • Want to delete all the statuses posted.
    It is necessary to know the ID of all the statuses.
  • Create a GUI application using go-gtk or shiny.
    When implementing the function to display the old status by scrolling,
    Will get a timeline by using max_id when scrolling.

I prefer 2 and not return Pagination with updating pg it self.

When geting the status at the timing of scrolling, I think that max_id should be given to the user.
The user will use the saved max_id at the next get timing.

from go-mastodon.

178inaba avatar 178inaba commented on May 23, 2024

This is a simple sample I think.

func scroll() {
	var maxID *int64
	for {
		<-scrollCh // Scrolling will unblock the channel.
		tl, pg, err := c.GetTimelineHome(ctx, &Pagination{
			MaxID: maxID,
		})
		if err != nil {
			log.Fatal(err)
		}

		maxID = pg.MaxID
	}
}

from go-mastodon.

mattn avatar mattn commented on May 23, 2024

Want to delete all the statuses posted.

Ah, make sense. Okay, let's update the signature to add Pagination for the funcs which return list.

from go-mastodon.

178inaba avatar 178inaba commented on May 23, 2024

Complete!
#54

from go-mastodon.

178inaba avatar 178inaba commented on May 23, 2024

The issue was settled.
Thank you very much.

from go-mastodon.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.